├── .gitignore ├── .idea ├── .name ├── deployment.xml ├── dictionaries │ └── Samer.xml ├── encodings.xml ├── misc.xml ├── modules.xml ├── node-steam-bot-manager.iml ├── node_steam_bot.iml └── vcs.xml ├── LICENSE ├── README.md ├── classes ├── Auth.js ├── Bot.js ├── Community.js ├── Friends.js ├── Profile.js ├── Request.js └── Trade.js ├── docs ├── Auth.html ├── Bot.html ├── BotAccount.html ├── BotManager.html ├── Community.html ├── Friends.html ├── GUI_Handler.html ├── Profile.html ├── Request.html ├── Trade.html ├── classes_Auth.js.html ├── classes_AuthManager.js.html ├── classes_Bot.js.html ├── classes_BotAccount.js.html ├── classes_Community.js.html ├── classes_Friends.js.html ├── classes_Profile.js.html ├── classes_Request.js.html ├── classes_Trade.js.html ├── classes_TradeManager.js.html ├── examples_APITradeBot.js.html ├── examples_FavouriteBot.js.html ├── examples_FollowBot.js.html ├── examples_GUIOnly.js.html ├── examples_InventoryBot.js.html ├── examples_JoinBot.js.html ├── examples_VoteBot.js.html ├── fonts │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold-webfont.svg │ ├── OpenSans-Bold-webfont.woff │ ├── OpenSans-BoldItalic-webfont.eot │ ├── OpenSans-BoldItalic-webfont.svg │ ├── OpenSans-BoldItalic-webfont.woff │ ├── OpenSans-Italic-webfont.eot │ ├── OpenSans-Italic-webfont.svg │ ├── OpenSans-Italic-webfont.woff │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-LightItalic-webfont.eot │ ├── OpenSans-LightItalic-webfont.svg │ ├── OpenSans-LightItalic-webfont.woff │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ └── OpenSans-Regular-webfont.woff ├── global.html ├── global.html#BotManager ├── gui_GUI_Handler.js.html ├── index.html ├── lib_AccountsManager.js.html ├── lib_ConfigManager.js.html ├── lib_TaskManager.js.html ├── lib_index.js.html ├── lib_webserver.js.html ├── scripts │ ├── linenumber.js │ └── prettify │ │ ├── Apache-License-2.0.txt │ │ ├── lang-css.js │ │ └── prettify.js └── styles │ ├── jsdoc-default.css │ ├── prettify-jsdoc.css │ └── prettify-tomorrow.css ├── enums └── EResult.js ├── examples ├── APITradeBot.js ├── FavouriteBot.js ├── FollowBot.js ├── GUIOnly.js ├── InventoryBot.js ├── JoinBot.js └── VoteBot.js ├── gui └── GUI_Handler.js ├── jsdocConf.json ├── lib ├── AccountsManager.js ├── ConfigManager.js ├── FileManager.js ├── SDA_Importer.js ├── TaskManager.js ├── index.js └── webserver.js ├── package.json └── tests └── BotAccountSpec.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | node-steam-bot-manager -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/dictionaries/Samer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/.idea/dictionaries/Samer.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/node-steam-bot-manager.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/.idea/node-steam-bot-manager.iml -------------------------------------------------------------------------------- /.idea/node_steam_bot.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/.idea/node_steam_bot.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/README.md -------------------------------------------------------------------------------- /classes/Auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/classes/Auth.js -------------------------------------------------------------------------------- /classes/Bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/classes/Bot.js -------------------------------------------------------------------------------- /classes/Community.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/classes/Community.js -------------------------------------------------------------------------------- /classes/Friends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/classes/Friends.js -------------------------------------------------------------------------------- /classes/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/classes/Profile.js -------------------------------------------------------------------------------- /classes/Request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/classes/Request.js -------------------------------------------------------------------------------- /classes/Trade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/classes/Trade.js -------------------------------------------------------------------------------- /docs/Auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/Auth.html -------------------------------------------------------------------------------- /docs/Bot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/Bot.html -------------------------------------------------------------------------------- /docs/BotAccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/BotAccount.html -------------------------------------------------------------------------------- /docs/BotManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/BotManager.html -------------------------------------------------------------------------------- /docs/Community.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/Community.html -------------------------------------------------------------------------------- /docs/Friends.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/Friends.html -------------------------------------------------------------------------------- /docs/GUI_Handler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/GUI_Handler.html -------------------------------------------------------------------------------- /docs/Profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/Profile.html -------------------------------------------------------------------------------- /docs/Request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/Request.html -------------------------------------------------------------------------------- /docs/Trade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/Trade.html -------------------------------------------------------------------------------- /docs/classes_Auth.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/classes_Auth.js.html -------------------------------------------------------------------------------- /docs/classes_AuthManager.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/classes_AuthManager.js.html -------------------------------------------------------------------------------- /docs/classes_Bot.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/classes_Bot.js.html -------------------------------------------------------------------------------- /docs/classes_BotAccount.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/classes_BotAccount.js.html -------------------------------------------------------------------------------- /docs/classes_Community.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/classes_Community.js.html -------------------------------------------------------------------------------- /docs/classes_Friends.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/classes_Friends.js.html -------------------------------------------------------------------------------- /docs/classes_Profile.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/classes_Profile.js.html -------------------------------------------------------------------------------- /docs/classes_Request.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/classes_Request.js.html -------------------------------------------------------------------------------- /docs/classes_Trade.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/classes_Trade.js.html -------------------------------------------------------------------------------- /docs/classes_TradeManager.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/classes_TradeManager.js.html -------------------------------------------------------------------------------- /docs/examples_APITradeBot.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/examples_APITradeBot.js.html -------------------------------------------------------------------------------- /docs/examples_FavouriteBot.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/examples_FavouriteBot.js.html -------------------------------------------------------------------------------- /docs/examples_FollowBot.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/examples_FollowBot.js.html -------------------------------------------------------------------------------- /docs/examples_GUIOnly.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/examples_GUIOnly.js.html -------------------------------------------------------------------------------- /docs/examples_InventoryBot.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/examples_InventoryBot.js.html -------------------------------------------------------------------------------- /docs/examples_JoinBot.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/examples_JoinBot.js.html -------------------------------------------------------------------------------- /docs/examples_VoteBot.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/examples_VoteBot.js.html -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-LightItalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /docs/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/global.html -------------------------------------------------------------------------------- /docs/global.html#BotManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/global.html#BotManager -------------------------------------------------------------------------------- /docs/gui_GUI_Handler.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/gui_GUI_Handler.js.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/lib_AccountsManager.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/lib_AccountsManager.js.html -------------------------------------------------------------------------------- /docs/lib_ConfigManager.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/lib_ConfigManager.js.html -------------------------------------------------------------------------------- /docs/lib_TaskManager.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/lib_TaskManager.js.html -------------------------------------------------------------------------------- /docs/lib_index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/lib_index.js.html -------------------------------------------------------------------------------- /docs/lib_webserver.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/lib_webserver.js.html -------------------------------------------------------------------------------- /docs/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/scripts/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/scripts/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /docs/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /docs/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /docs/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/styles/jsdoc-default.css -------------------------------------------------------------------------------- /docs/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /docs/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/docs/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /enums/EResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/enums/EResult.js -------------------------------------------------------------------------------- /examples/APITradeBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/examples/APITradeBot.js -------------------------------------------------------------------------------- /examples/FavouriteBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/examples/FavouriteBot.js -------------------------------------------------------------------------------- /examples/FollowBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/examples/FollowBot.js -------------------------------------------------------------------------------- /examples/GUIOnly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/examples/GUIOnly.js -------------------------------------------------------------------------------- /examples/InventoryBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/examples/InventoryBot.js -------------------------------------------------------------------------------- /examples/JoinBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/examples/JoinBot.js -------------------------------------------------------------------------------- /examples/VoteBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/examples/VoteBot.js -------------------------------------------------------------------------------- /gui/GUI_Handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/gui/GUI_Handler.js -------------------------------------------------------------------------------- /jsdocConf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/jsdocConf.json -------------------------------------------------------------------------------- /lib/AccountsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/lib/AccountsManager.js -------------------------------------------------------------------------------- /lib/ConfigManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/lib/ConfigManager.js -------------------------------------------------------------------------------- /lib/FileManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/lib/FileManager.js -------------------------------------------------------------------------------- /lib/SDA_Importer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/lib/SDA_Importer.js -------------------------------------------------------------------------------- /lib/TaskManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/lib/TaskManager.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/webserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/lib/webserver.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/package.json -------------------------------------------------------------------------------- /tests/BotAccountSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamerAlsayegh/node-steam-bot-manager/HEAD/tests/BotAccountSpec.js --------------------------------------------------------------------------------