Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3573
  • Joined

  • Last visited

Everything posted by Dr. McKay

  1. The API isn't going anywhere.
  2. Yeah it only happens when an HTTP request fails. If you aren't making requests then it won't be emitted.
  3. Don't install it globally.
  4. I don't know the specific number.
  5. There might be some confusion here. The expires property is Steam's expiration date, which is always 14 days from creation time and can't be changed. cancelTime works independently of it.
  6. I started working on that some time ago but I had to put it on hold. Maybe I'll get around to it soon. Pull requests are always welcome.
  7. https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOfferManager#sentofferchanged https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOfferManager#receivedofferchanged
  8. https://github.com/DoctorMcKay/node-steamcommunity/wiki/SteamCommunity#sessionexpired
  9. The limit is higher than 2 per minute.
  10. I... I don't even know what you did here. Did you copy the implementation from the code and paste it? Why??
  11. Using a bunch of sockpuppet accounts to fake votes sounds like a good way to get yourself banned.
  12. I think that's a very, very bad idea.
  13. I don't think bot-voting is a terribly great idea.
  14. Yes, it is always a bad idea. You should check the item's name to see if it's a key.
  15. https://www.google.com/search?q=node.js+screenshot&ie=utf-8&oe=utf-8
  16. All you have to do is call startConfirmationChecker first. You can do it synchronously.
  17. You don't want to use instanceid to identify a type of item. See here: https://dev.doctormckay.com/topic/332-identifying-steam-items/
  18. It does take the cookies, but calling manager.setCookies is still important as that's when it grabs the API key.
  19. I'm not sure I 100% understand. Let me clarify a couple things. SteamTrades is what you get back from require('steam-tradeoffer-manager'), yes? Are you calling manager.setCookies anywhere? What's your console output?
  20. You'll have to ask them how they do things.
  21. You can't get the new item IDs for sent items, no.
  22. It's unfortunately not possible. getUserDetails just loads the offer UI page, which is inaccessible once you're unable to act on the offer (e.g. you send it [outgoing] or you accept it [incoming]).
  23. Most people use the steamcommunity.com JSON inventory endpoint: https://steamcommunity.com/profiles/STEAMID/inventory/json/730/2/node-steamcommunity has a method for this. Example: community.getUserInventory("[U:1:46143802]", 730, 2, false, function(err, inventory) { console.log(inventory); });
×
×
  • Create New...