LukeTheNeko / SteamHourBoost

🚀・Boost hours played on Steam games

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction

Game Hour Boost is a simple JavaScript program designed to simulate your games being open in your account. This allows you to farm hours in the games registered in the config.json file.

Features

  • Unlimited Accounts support
  • Up to 32 Games per account
  • You can choose the status between Online, Away, Invisible and Offline

Getting Started

  1. Install the LTS version of NodeJS from the official website.
  2. Install using npm install and wait until it installs all required modules.
  3. Open the config.json file and fill in all the required fields.
  4. To start the script, use: npm run dev Starts the project in development mode
  5. To compile the project, use: npm run build Builds the project

Configuration (config.json)


{
    "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"
      }
    ]
  }

License

This project is licensed under the MIT License.

About

🚀・Boost hours played on Steam games

License:MIT License


Languages

Language:TypeScript 100.0%