Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3544
  • Joined

  • Last visited

Everything posted by Dr. McKay

  1. I have no idea what's up with the crafting event, but unless you're emitting it yourself you shouldn't be using it. You don't need to specify any appid or contextid (there is no such thing as a contextid outside of the Steam econ server). node-tf2 knows what TF2's appid is. You need to pass an array of item IDs to craft.
  2. You only need to set up your trading code to not accept overstocked items.
  3. Why are you editing the library's code? Don't do that.
  4. The documentation is pretty clear about how to add an item by assetid: https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOffer#addmyitemitem
  5. You can't try to send the offer until the callback of webSession. Please read up on asynchronous JavaScript and callbacks.
  6. There are some examples in the examples directory that may help: https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/tree/master/examples
  7. I don't provide Steam support. I suggest that you take some JavaScript lessons, as I'm only here to help with library integration questions, not with JavaScript basics. You may want to look at Array.prototype.map perhaps.
  8. That's up to you. Look at the contents of backpack and find what you're looking for.
  9. The assetids are available in your backpack.
  10. The order of your inventory and err arguments is wrong. Order matters. Also, you might try printing the error if one occurs for more insight.
  11. This may help: https://sporto.github.io/blog/2012/12/09/callbacks-listeners-promises/
  12. Have you added a phone number to your account?
  13. Yes, that looks correct enough, minus the secrets.
  14. var client1 = new SteamUser(); var client2 = new SteamUser();
  15. https://github.com/DoctorMcKay/node-steam-user#chatmessagerecipient-message-type
  16. You'd need two of whatever you're using to login too.
  17. No, I mean you need to do new TradeOfferManager twice.
  18. No, you'd need to create two separate TradeOfferManager objects.
  19. offer.getUserDetails(function(err, me, them) { if (err) { throw err; } if (them.escrowDays > 0) { offer.decline(); } });
  20. https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOffer#getuserdetailscallback
  21. In the callback, provided it was successful, the offer's data will be updated and you can just run your logic there. But no, it won't arrive in newOffer again once it's emitted once.
×
×
  • Create New...