Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3590
  • Joined

  • Last visited

Everything posted by Dr. McKay

  1. Yes, Node is very different from C#.
  2. This was an intentional change by Valve.
  3. https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOffer#getexchangedetailsgetdetailsiffailed-callback
  4. Garbage is only collected periodically. If you want to fetch that much data in Node, you're going to need more than 200 MB of RAM.
  5. Not possible without calling additional methods, no.
  6. https://github.com/DoctorMcKay/node-steam-user#getownedappsfilter Don't call getOwnedApps until after the ownershipCached event is emitted. Also, it doesn't take a callback argument.
  7. You can't. This is a Node.js module only.
  8. https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOfferManager#getofferid-callback
  9. You're treating the symptom, not the cause. There's no scenario where this.partner should be undefined or otherwise invalid unless you're doing something wrong.
  10. steam-session is a Node.js module, not a browser module.
  11. ?? What does this have to do with steam-session?
  12. Show how you're creating a trade offer (new TradeOffer(...))
  13. If you don't have the user's SteamID at all in any form, no.
  14. GetTradeHistory does appear to accept an access token to retrieve all trades.
  15. You need to report that you're in CS2 by calling user.gamesPlayed(730), then complete the GC handshaking process before sending any other GC messages. For CS, this is sending ClientHello (4006) with the proper version number and waiting for ClientWelcome (4004) in response. You can check node-globaloffensive for reference.
  16. Contact your proxy provider.
  17. Sounds like someone with control of your network is trying to modify traffic.
  18. I don't believe you can get non-game badges or your account's creation time via steam-user. You'll need to use the WebAPI.
  19. https://github.com/DoctorMcKay/node-steam-user?tab=readme-ov-file#error The 'error' event.
  20. https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/503
  21. If you're passing an instance of SteamUser in to the constructor, I recommend you don't poll more frequently than every 30 seconds (30000). And you shouldn't be running full updates more frequently than every 2 minutes (120000). In other words, the defaults are fine.
  22. You can't use OpenID with steam-user.
  23. I don't believe I've ever seen this happen.
×
×
  • Create New...