Game Hour Boost is a simple JavaScript program designed to simulate your games being open in your account. This allows you to boost hours in the games registered in the config.json
file.
- Unlimited Accounts support
- Up to 32 Games per account
- You can choose the status between Online, Away, Invisible and Offline
- Install the LTS version of NodeJS from the official website.
- Install using
npm install
and wait until it installs all required modules. - Open the
config.json
file and fill in all the required fields. - To start the script, use:
npm run dev
Starts the project in development mode - To compile the project, use:
npm run build
Builds the project
{
"accounts": [
{
"username": "username1",
"password": "password1",
"sharedSecret": "sharedSecret1",
"games": [ 730, 440, 570 ]
"status": "Invisible"
},
{
"username": "username2",
"password": "password2",
"sharedSecret": "sharedSecret2",
"games": [ 730, 440, 570 ]
"status": "Online"
}
]
}
This project is licensed under the MIT License.