Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3662
  • Joined

  • Last visited

Everything posted by Dr. McKay

  1. I published globaloffensive v3.3.0 last night, which makes inspectItem() work with the new masked inspect links.
  2. 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.
  3. 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.
  4. 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.
  5. It's possible that the request is no longer supported by Steam.
  6. 740 is not the right AppID, use 730.
  7. 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.
  8. There's no reason to think you'd be banned for using this endpoint. It's already there: TradeOffer#loadPartnerInventory
  9. 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
  10. Yes, use getAppBetaDecryptionKeys.
  11. I don't know why you'd get DuplicateRequest when logging in if you're doing everything correctly. Maybe the code was already used?
  12. You're getting DuplicateRequest in the login callback?
  13. Basically just do exactly what the login-with-password example shows, and once you have webCookies then you can call community.setCookies(webCookies)
  14. Dr. McKay

    Nethook

    In admin command prompt: rundll32.exe NetHook2.dll,Inject
  15. Either event should be fine to determine if using a backpack expander succeeded, although personally I'd probably use itemRemoved.
  16. Not really. The best you could do is check whether either party is not tradable.
  17. 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.
  18. Yeah, no reason that shouldn't work.
  19. You can't mobile confirm a trade offer without having your account's identity_secret, which is present in the mafile.
  20. You're far more than one step away. Joining a community server is not supported and never will be, as you'd have to implement VAC which nobody has been insane enough to try.
  21. Where are you getting a 'ready' event from? No such event exists in globaloffensive. It's connectedToGC.
  22. It wouldn't show as in-game on the profile unless you set your persona state to Online with the setPersona() method, although that wouldn't affect connecting to the GC. Are you still using your modifications to global offensive? Try getting rid of those, as those weren't your problem.
×
×
  • Create New...