Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3591
  • Joined

  • Last visited

Everything posted by Dr. McKay

  1. The documentation is pretty clear about how to add an item by assetid: https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOffer#addmyitemitem
  2. You can't try to send the offer until the callback of webSession. Please read up on asynchronous JavaScript and callbacks.
  3. There are some examples in the examples directory that may help: https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/tree/master/examples
  4. 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.
  5. That's up to you. Look at the contents of backpack and find what you're looking for.
  6. The assetids are available in your backpack.
  7. 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.
  8. This may help: https://sporto.github.io/blog/2012/12/09/callbacks-listeners-promises/
  9. Have you added a phone number to your account?
  10. Yes, that looks correct enough, minus the secrets.
  11. var client1 = new SteamUser(); var client2 = new SteamUser();
  12. https://github.com/DoctorMcKay/node-steam-user#chatmessagerecipient-message-type
  13. You'd need two of whatever you're using to login too.
  14. No, I mean you need to do new TradeOfferManager twice.
  15. No, you'd need to create two separate TradeOfferManager objects.
  16. offer.getUserDetails(function(err, me, them) { if (err) { throw err; } if (them.escrowDays > 0) { offer.decline(); } });
  17. https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOffer#getuserdetailscallback
  18. 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.
  19. You also realize that in order to join a VAC-secured server, you'll need to implement VAC? And that you'd be fully insane to try to implement VAC.
  20. You realize that you'll need to implement the game server's protocol yourself, correct?
  21. That is currently not supported. What do you need it for?
  22. https://github.com/DoctorMcKay/node-tf2#backpack
×
×
  • Create New...