├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bot.js ├── lib ├── index.js └── utils │ └── AccountRotation.js ├── options.example.json └── package.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/CSGOScoreBot/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /options.json 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/CSGOScoreBot/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/CSGOScoreBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/CSGOScoreBot/HEAD/README.md -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/CSGOScoreBot/HEAD/bot.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/CSGOScoreBot/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/utils/AccountRotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/CSGOScoreBot/HEAD/lib/utils/AccountRotation.js -------------------------------------------------------------------------------- /options.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/CSGOScoreBot/HEAD/options.example.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewda/CSGOScoreBot/HEAD/package.json --------------------------------------------------------------------------------