Guest User

Untitled

a guest
Jun 4th, 2018
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 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: "EnterAccountName",
  7. password: "EnterPassword",
  8. oneFactorCode: SteamTotp.getAuthCode("")
  9. });
  10.  
  11. user.on('webSession', function() {
  12. console.log('Logged in!');
  13. user.setPersona(SteamUser.Steam.EPersonaState.Offline) // Set to offline or online - your choice.
  14. user.gamesPlayed([10]); // Enter ID of the steam game. Found in the store link (/app/10) is Counter-Strike
  15.  
  16. });
Add Comment
Please, Sign In to add comment