Advertisement
Guest User

Untitled

a guest
Feb 11th, 2017
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. var SteamUser = require('steam-user');
  2. var SteamTotp = require('steam-totp');
  3. var user = new SteamUser();
  4.  
  5. user.logOn({
  6. accountName: "asdasd",
  7. password: "",
  8. twoFactorCode: SteamTotp.getAuthCode("")
  9. });
  10.  
  11. user.on('webSession', function() {
  12. console.log('Logged in!');
  13. user.setPersona(SteamUser.Steam.EPersonaState.Online) // Set to offline or online - your choice.
  14. user.gamesPlayed([10, 730, 347630, 361630, 250420, 354200, 346900, 247830, 223630, 206500, 630, 373330, 41300, 293500, 13140, 203290, 34172, 266430, 17020, 206210, 293540, 342480, 271290, 246280, 227940, 283880, 342570, 30, 40, 70, 130, 50, 434250, 60, 20]); // Enter ID of the steam game. Found in the store link (/app/10) is Counter-Strike
  15.  
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement