Jump to content
McKay Development

VenomZ75

Member
  • Posts

    2
  • Joined

VenomZ75's Achievements

  1. I managed to get it working. As you suggested, there was a typo I didn't spot in the config file (module_export instead of module_exports). Many thanks for your help!
  2. Hi there, I'm using steam-user to try to make a bot, but I cannot get it to set it's status to online. Furthermore, is there a way to check if the login was successful as the loggedOn event appears to trigger even if I try entering bogus account details. Code is as follows: const SteamUser = require ("steam-user");const SteamTotp = require ("steam-totp");const config = require("./config"); const client = new SteamUser();const details = {accountName: config.accountName,password: config.password,twoFactorCode: SteamTotp.generateAuthCode("redacted"),rememberPassword: true}; client.logOn(details); client.on("loggedOn", () => {console.log("signed in");client.setPersona(1);})
×
×
  • Create New...