Overview
Bat file for your IdleMaster that will make you Idle all your games (or what your computer can handle).
What will you need?
- Computer with steam instaled and you logged in (24/7 – can’t be put in sleep mode)
- Idle master [www.steamidlemaster.com]
Preparation
Extract the Idlemaster if you want to make it simple, put it in root of your disk. Like C:/idle/
Create empty text file on you desktop or anywhere you want. Just somewhere where you can find it.
Now you will have to change file extension of text file from txt to bat.
Batch file
Now we will edit our batch file (text file with .bat extension). You can edit it in notepad.
Syntax for this is simple and yes. You will need empty quotation marks.
START “” “[path to idle master]” -
Path to idle master should be c:idle.
Game id you can find in steam store URL
START “” “c:idlesteam-idle.exe” 730
For every other game add other line just change game id. If you have too many games (100+), add TIMEOUT 1 between every game I have experinced crashes if i started 800+ games at the same time.
Silence (optional):
First line of script can be
@ECHO OFF
If you don’t want to see each command we are going to send. (Number of commands depends on number of games you have/want to idle)
Counter (optional):
If you have a lot of games and you want to see how many games are active you can add this to beginning ouf your script after @ECHO OFF
@set /A x=0
@set /A y=1
And this after every game
@set /A “x=%x%+%y%”
echo %x%
GL HF
Yuno Gasai