Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3629
  • Joined

  • Last visited

Everything posted by Dr. McKay

  1. https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOffer#getreceiveditemsgetactions-callback or https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOffer#getexchangedetailsgetdetailsiffailed-callback
  2. Clearly the item ID doesn't exist in the inventory.
  3. Your account is most likely limited. You can't use this module with limited Steam accounts.
  4. I need to see your code.
  5. Looks like one of the items you're trying to add is undefined. Perhaps someone's inventory is empty?
  6. I don't work for Valve.
  7. If you have the mobile authenticator enabled, then logging in from a new device won't ever result in a trade cooldown. Otherwise, it will, but only for that device, meaning you can test it safely without any risk.
  8. Same problem as https://dev.doctormckay.com/topic/882-themescrowdays-does-not-work/
  9. Yes, they will work in other browsers. They expire rather quickly though (and immediately if you lose connection), so you won't get much use out of them.
  10. The problem was because you were missing a few arguments in your callback function. The names don't really matter, it's the order that matters.
  11. item.type You need to set a language in the constructor for that to be present.
  12. No. You should be able to track whatever you want yourself in the same place where you store the SteamUser object.
  13. steamID is a SteamID object. If you want the 64-bit ID, use steamID.getSteamID64() JavaScript can't precisely track numbers that are larger than 253. You need to wrap it in quotes to make it a string for comparison. Correct regarding == and !=.
  14. Are you confirming it if you're trying to take items from the bot?
  15. Whatever you stored your SteamUser instance in.
  16. bot.gamesPlayed([730])
  17. You're overwriting the value of steamID in your outer loop, which changes the context of the closure. This is confusing, I know. Just do this and it should work: bot.on('friendsList', function() { Object.keys(bot.myFriends).forEach(function(steamID) { if(bot.myFriends[steamID] === 2) { bot.getPersonas([steamID], function(getName) { var friendName = getName[steamID].player_name; //Some code }); } }); });
  18. No.
  19. https://github.com/DoctorMcKay/node-steamcommunity/blob/master/components/users.js#L345
  20. Does the bot's Steam account own CS:GO?
  21. https://github.com/DoctorMcKay/node-steamcommunity/wiki/CSteamUser#commentmessage-callback
×
×
  • Create New...