├── .gitignore ├── LICENSE ├── README.md ├── bot.js ├── config.json ├── install.bat └── start.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikxd/hourbooster/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikxd/hourbooster/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikxd/hourbooster/HEAD/README.md -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikxd/hourbooster/HEAD/bot.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikxd/hourbooster/HEAD/config.json -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikxd/hourbooster/HEAD/install.bat -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | title Steam Bot 3 | node bot.js 4 | --------------------------------------------------------------------------------