Jump to content
McKay Development

72juju

Member
  • Posts

    14
  • Joined

  • Last visited

Posts posted by 72juju

  1. console.log(inventory);
                var pool = inventory.filter(function (item){
                   if (item.name == 'Munitions Mann Co.'),
      };
      });
                // Filter out the series
                var re = new RegExp('N°' + series, ''); // ex: #82
                pool = pool.filter(function (item) {
                    return item.name.match(re);
                });
    

    i've done this i'm not rlly sure it works

     

    I want to filter Munition crates.

  2. I've done this:

     

    client.on("steamGuard", function(domain, callback, lastCodeWrong){
    if(lastCodeWrong){
    console.log("Last secret code was wrong.");
    }
    callback(SteamTotp.generateAuthCode(shared_secret, 0));
    console.log("Connected with mobile auth. With secret code: " + SteamTotp.generateAuthCode(shared_secret, 0));
    });
     
    Can I use the code after a certain time to log me in with the real steam client ??
×
×
  • Create New...