Idling Hours on Steam with LOW CPU USAGE!

Posts 1–10 of 10 · Page 1 of 1
Idling Hours on Steam with LOW CPU USAGE!
Step 1 - Install Node.js

https://nodejs.org/ⓘ -Download link.

Step 2 - Install Node-Steam.
Open Node.js command promt and type following.
Code:
npm install steam@v0.6.8
Step 3 - Make a script.
Now you need to make a script you can create a new or this script. Just open notepad copy script in notepad and save it as javascript. (.js) (YOU NEED TO ADD YOU ACC INFO LIKE ACCOUNT USERNAME, PASSWORD ETC)
Code:
var Steam = require('steam');
var fs = require('fs');
var bot = new Steam.SteamClient();
 
if (fs.existsSync('sentryfile'))
{
    var sentry = fs.readFileSync('sentryfile');
    console.log('[STEAM] logging in with sentry ');
    bot.logOn({
      accountName: '',
      password: '',
      shaSentryfile: sentry
    });
}
else
{
    console.log('[STEAM] logging in without sentry');
    bot.logOn({
      accountName: '',
      password: '',
      authCode: ''
    });
}
bot.on('loggedOn', function() {
    console.log('[STEAM] Logged in.');
    bot.setPersonaState(Steam.EPersonaState.Online);
    //Tell steam we are playing games.
    //440=tf2
    //550=l4d2 
    //730=csgo
    //570=dota2
    bot.gamesPlayed([440, 550, 730, 570]);
});
 
bot.on('sentry', function(sentryHash)
{//A sentry file is a file that is sent once you have
//passed steamguard verification.
    console.log('[STEAM] Received sentry file.');
    fs.writeFile('sentryfile',sentryHash,function(err) {
    if(err){
      console.log(err);
    } else {
      console.log('[FS] Saved sentry file to disk.');
    }});
});
 
//Handle logon errors
bot.on('error', function(e) {
console.log('[STEAM] ERROR - Logon failed');
    if (e.eresult == Steam.EResult.InvalidPassword)
    {
    console.log('Reason: invalid password');
    }
    else if (e.eresult == Steam.EResult.AlreadyLoggedInElsewhere)
    {
    console.log('Reason: already logged in elsewhere');
    }
    else if (e.eresult == Steam.EResult.AccountLogonDenied)
    {
    console.log('Reason: logon denied - steam guard needed');
    }
})
Step 4 - Copy javascript.
Now you need to copy your script into users, folder should look like this C:\Users\YOURNAME\HERE WILL BE SCRIPT

Step 5 - Start script
Now you need to start script, just open Node.js Command Promt and type
Code:
node NAMEOFYOURSCRIPT
Credits -
dirtyspah - Script
Lol COPY and paste from UC
Nope.. i didnt c/p anything i am from UC just with different name.
Or you could just use SAM
No.. With this you can Idle multiple games on multiple accounts (AT THE SAME TIME)
Since I am a big trader I dont want to get the 7 day ban.
Quote Originally Posted by legit_player View Post
Why would you get a ban?
When u login from a new pc u get a 7 day trade ban.
You will be still able to trade.
Nvm. foundt out



How do you idle multiple accounts though? I know my autism level is beyond 9000 but cba.
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?