Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3601
  • Joined

  • Last visited

Everything posted by Dr. McKay

  1. SteamCommunity doesn't save anything to disk on its own. One of the examples might, but you can change it easily.
  2. Check the appid property of all the items in the offer.
  3. It really depends on what all you'll be doing and how much traffic you'll be generating. Maybe 30 bots per gig of RAM would be a decent estimate. Somewhere around 10 per IP.
  4. I have no idea what you're asking in your first question. I don't believe that I've added anything to steamcommunity currently to check outstanding friend requests. You'd need to use steam-user or similar for that. I'm not here to be your personal one-on-one teacher. I'm providing my code for free and I'd appreciate it if you were patient and didn't private message me if I don't look at your thread immediately on a Sunday.
  5. Either your identity_secret is wrong or your clock is wrong.
  6. Yes, it will if it changes after unknownOfferSent is emitted.
  7. HTTP 403 is probably indicating that Steam is rate-limiting your IP. Slow down your requests a little and don't spam them all at once. You get "Access Denied" when trying to get an API key if your account is limited.
  8. Codes can only be used once. If you try to login again within a 30-second interval then Steam will reject the already-used code since it hasn't changed yet. If you need to login that frequently, you're doing something wrong anyway.
  9. Need a lot more information. What are the specs of your machines? How many IPs do they each have? What will your bots be doing specifically?
  10. If you're using the mobile authenticator then logging in from a new device doesn't have any trade cooldowns.
  11. If you want some debug logging, then add: community.on('debug', console.log);
  12. Always post the code. Nobody can help you with just that output.
  13. Set a language and the objects in the arrays of items (itemsToGive and itemsToReceive) will have names in them.
  14. Please post your code.
  15. Probably, but I don't see what the use of that is.
  16. You can confirm them automatically with https://github.com/DoctorMcKay/node-steamcommunity/wiki/Steam-Confirmation-Polling
  17. Are you terminating the script between when you get the captcha URL and when you enter the solution? You can't do that, you need to prompt for the solution and then log on with the same SteamCommunity instance.
  18. https://github.com/DoctorMcKay/node-steamcommunity/wiki/SteamCommunity#getconfirmationstime-key-callback
  19. You can get the assetid of the item pre-trade from just the trade offer's data (the itemsToGive and itemsToReceive arrays). That data doesn't change ever. You can get the assetid of the item post-trade from getReceivedItems. There isn't any way to link specific items together between these arrays. You could use the market_name but if you for example have two items with identical names in a trade, there's no way to know which is which and so they can potentially get mixed up.
  20. steam-tradeoffer-manager doesn't login to Steam, so consequently it doesn't have a sentry file. How are you logging into Steam?
  21. You're absolutely sure that sentOfferChanged isn't being emitted? Is pollFailure being emitted every time debug is?
  22. Just make a simple script that does console.log(SteamTotp.getAuthCode(shared_secret)); or something.
  23. Polling is automatic, yes. It polls every 30 seconds. Can you add this and see what the output is? offers.on('debug', console.log);
×
×
  • Create New...