Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. var shared_secret ='edithere'; // "Edit here"
  2.  
  3.  
  4. var SteamTotp = require('steam-totp');
  5. var SteamConfirm = require('steamcommunity-mobile-confirmations');
  6. var pooling_interval = 5000; // Period of time between each confirmations checking - 1000 = 1 second. Edit here if you want to.
  7.  
  8. var twoFactorCode: SteamTotp.generateAuthCode(shared_secret) };
  9. var GameTime = 120; // Edit here - the time of your games.
  10.  
  11. setInterval(function () {
  12. console.log(twoFactorCode);
  13. }, 5000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement