Jump to content
McKay Development

Nguyen

Member
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Nguyen's Achievements

  1. Resolve by following this https://github.com/DoctorMcKay/node-globaloffensive/issues/85
  2. It stoped working from about few hours ago. Code simpe like the sample let client = new SteamUser(); let csgo = new GlobalOffensive(client); client.on('loggedOn', () => { util.log(prefix + "Logged into Steam"); // We have to log out in order to get new data from tf2 util.log(prefix + "Logging out of games") client.gamesPlayed([]) setTimeout(() => { util.log(prefix + "Logging into games") client.gamesPlayed([730]) // logOfferItems() }, 10000); }); Package version "steam-session": "^1.7.2", "globaloffensive": "^3.0.0", "steam-tradeoffer-manager": "^2.10.6", "steam-user": "^5.0.8",
  3. We dont see any log from the package, but the event `loggedOn` just never call client.on('loggedOn', () => { ... }); Edited Oh, after update steam-sessiton to latest one, it work now, thank you "steam-session": "^1.3.3"
  4. The code to login on steam with accountName and password seem broken few hours ago, now we can not login. Could you please guide us how to make this work ? Our package information and login code. We can surely username and password is correct "globaloffensive": "^2.3.0", "steam-tradeoffer-manager": "^2.10.6", "steam-user": "^4.29.2", "steamcommunity": "^3.46.1", "steam-session": "^1.3.2" let client = new SteamUser(); let logOnOptions: LogOnOptions = { accountName: Constants.STEAM_USERNAME, password: Constants.STEAM_PASSWORD, twoFactorCode: SteamTotp.getAuthCode(Constants.SHARED_SECRET), rememberPassword: false, }; client.logOn(logOnOptions);
×
×
  • Create New...