Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3058
  • Joined

  • Last visited

Contact Methods

  • Website URL
    https://www.doctormckay.com

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

8218 profile views
  1. As far as I'm aware, there's no limit of accounts per IP, but there is a rate limit for logon attempts per IP. As long as you don't get rate limited, you should be good.
  2. That's just the GC being slow. It's a complete mess in CS:GO. CM stands for connection manager.
  3. True, though I wouldn't worry too much about it personally. I don't have any plans at the moment for steam-user v5. Be aware that refresh tokens expire after 200 days and I've yet to see a way to refresh them, so you will need to re-auth with your password after that time.
  4. I don't see that anything changed on how the request is made to Steam, so probably a temporary Steam issue. How long has it been going on?
  5. I also commented this on your issue: The first argument to loggedOn is a CMsgClientLogonResponse object, not a login key. You get a login key from the loginKey event.
  6. That's not a good idea. Steam will invalidate your session if your IP changes too much.
  7. If steam-user connects with a WebSocket, it sends pings automatically every 30 seconds and disconnects (and emits the disconnected event) if Steam doesn't reply. If you want to make sure that the pings get sent, you can force the connection protocol using the protocol option. Example: let user = new SteamUser({ protocol: SteamUser.EConnectionProtocol.WebSocket });
  8. steam-gameserver hasn't been updated a ton, but it does still work. You're better off using that than hacking steam-user to login as a server.
  9. If it's possible, then yeah I'll figure out how to make it happen. As far as I'm aware, right now you can't use a sentry file with the new login system.
  10. Ah, my bad. The version with proxy support isn't published to npm yet. I'll go ahead and yolo it.
  11. let session = new LoginSession(EAuthTokenPlatformType.SteamClient, {httpProxy: 'http://127.0.0.1:8888'}); let startResult = await session.startWithCredentials({ accountName: '...', password: '...', steamGuardCode: generateAuthCode('...') }); Works fine for me. What does your proxy variable look like?
×
×
  • Create New...