Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3629
  • Joined

  • Last visited

Everything posted by Dr. McKay

  1. Pass the community instance in to the constructor of TradeOfferManager, as per the docs.
  2. That's not possible since in generally all circumstances, you should have an offer object already. If you really need to accept an offer by its ID, you'll need to first retrieve the offer object.
  3. You need to send a GET request to fetch confirmations.
  4. You don't need to be logged in to load inventories, only your own (if private) or friends' (if friends-only).
  5. Append the icon_url to this URL: https://steamcommunity-a.akamaihd.net/economy/image/ It's best to use the WebAPI to get profile data.
  6. I guarantee the module is not faulty. I'm using it with over 1000 bots and it works just fine. Make sure you're up to date.
  7. All TradeOffer objects created by TradeOfferManager have a partner field, which is a SteamID object. You can retrieve the account ID (aka partner ID) using id.accountid, or you can convert it to any of the 3 basic formats using id.getSteam2RenderedID(), id.getSteam3RenderedID(), and id.getSteamID64(). getSteamID64 will give you the 76561.... 64-bit ID. You can access the state enum using TradeOfferManager.ETradeOfferState (assuming TradeOfferManager is the result of require('steam-tradeoffer-manager'). You can see it here. An offer's ID is its trade offer ID. Trade offers and trades are distinct things. Not all trade offers result in a trade. A trade is the actual physical exchange of items. A trade offer is.. an offer to trade. Trade offers can be declined, canceled, expired, etc which will result in no trade taking place. If an exchange happens, a trade is created and its 64-bit ID is associated with the trade offer. With TradeOfferManager, you will need to get a TradeOffer object before you can accept it. You can use manager.getOffer to get a TradeOffer. You can use manager.getOffers to see all available offers on your account, or you can just use the newOffer event.
  8. Yes, client.webLogOn is the correct way to do it. I suspect that you're getting a new web session successfully (add some logging to the webSession event to make sure), and you're just doing something else wrong.
  9. There isn't anything in the trade offer that gives you the new item IDs. You need to pull the inventory and make your best guess.
  10. It takes a long time because it has to load multiple pages, since that user has over 100,000 Steam items. Your request implementation works quickly, but is only retrieving around 75 items (or maybe 2000, I'm not sure what the default is).
  11. Some people are working on maintaining a list of rate-limits here: https://www.reddit.com/r/SteamBot/wiki/rate-limits
  12. You can get persona data for users (including names) using getPersonas. The only way to get a group name from its SteamID (the 64-bit ID) is to parse XML, unfortunately: http://steamcommunity.com/gid/103582791429521412/memberslistxml/?xml=1
  13. You're logging in anonymously, because you're using account_name instead of accountName.
  14. You can't use the same 2FA code twice. That means that effectively you can't login twice within 30 seconds. That said, you don't have to. SteamUser will give you login cookies you can use with SteamCommunity. client.on('webSession', function(sessionID, cookies) { community.setCookies(cookies); });
  15. https://lab.xpaw.me/steam_api_documentation.html#IPlayerService_GetBadges_v1
  16. https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOfferManager#getoffersfilterhistoricalcutoff-callback
  17. Try specifying followAllRedirects = true. Request won't follow redirects for non-GET methods otherwise.
  18. I don't believe that's presently available.
  19. I don't know. I haven't looked into this.
×
×
  • Create New...