Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3666
  • Joined

  • Last visited

Everything posted by Dr. McKay

  1. https://github.com/DoctorMcKay/node-steamcommunity/releases/tag/v3.50.0
  2. I'll get to it soon, hopefully tomorrow.
  3. That embedded inspect link simply doesn't have a wear value in it.
  4. If value_bytes is 4 bytes, it's either a 32-bit int or a float. stored_as_integer in items_game.txt will tell you whether to read it as an int or as a float. The vast majority of attributes are either ints or floats. 2013, 2014, and 2025 are all stored as floats, so you should use Buffer.readFloatLE to read them.
  5. I published globaloffensive v3.3.0 last night, which makes inspectItem() work with the new masked inspect links.
  6. Support for this new form of inspect link has been added to globaloffensive v3.3.0. While it's not actually required to connect to the GC to decode these, if you want to avoid making code changes (and support older styles of inspect links) then this will work as a drop-in upgrade.
  7. You have to use the game client code somehow, whether that's injection or hooking or whatever. The GC only sends the raw data (paint seed, paint index, wear, etc) but the code to turn that into a model or image is only inside the game client.
  8. Cursor is wrong. Passing the httpProxy option to LoginSession is unnecessary because the CMAuthTransport handles proxying already. All login communication happens through the same proxied TCP/WS connection as all other Steam client communication.
  9. It's possible that the request is no longer supported by Steam.
  10. 740 is not the right AppID, use 730.
  11. The /inventory endpoint is newer and provides more up-to-date data. But the trade offer UI does still use this endpoint, so you should be safe to use it even if it's marked as deprecated.
  12. There's no reason to think you'd be banned for using this endpoint. It's already there: TradeOffer#loadPartnerInventory
  13. Dr. McKay

    Nethook

    It's available under artifacts on SteamKit's GitHub Actions (you need to login to GitHub to download): https://github.com/SteamRE/SteamKit/actions
  14. Yes, use getAppBetaDecryptionKeys.
  15. I don't know why you'd get DuplicateRequest when logging in if you're doing everything correctly. Maybe the code was already used?
  16. You're getting DuplicateRequest in the login callback?
  17. Basically just do exactly what the login-with-password example shows, and once you have webCookies then you can call community.setCookies(webCookies)
  18. Dr. McKay

    Nethook

    In admin command prompt: rundll32.exe NetHook2.dll,Inject
  19. Either event should be fine to determine if using a backpack expander succeeded, although personally I'd probably use itemRemoved.
  20. Not really. The best you could do is check whether either party is not tradable.
  21. Trade bans can be checked with the GetPlayerBans WebAPI method. Escrow can be checked with the GetTradeHoldDurations WebAPI method. getUserDetails() works by loading the tradeoffer page (using the user's trade link) and scraping the results from the HTML.
  22. Yeah, no reason that shouldn't work.
×
×
  • Create New...