-
Posts
3601 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
Question Using node-steamcommunity with Openshift
Dr. McKay replied to Bheem's topic in node-steamcommunity
SteamCommunity doesn't save anything to disk on its own. One of the examples might, but you can change it easily. -
How can I accept only CSGO items
Dr. McKay replied to Turska's topic in node-steam-tradeoffer-manager
Check the appid property of all the items in the offer. -
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.
-
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.
-
Either your identity_secret is wrong or your clock is wrong.
-
Question about unknownOfferSent
Dr. McKay replied to trzyrazyzero's topic in node-steam-tradeoffer-manager
Yes, it will if it changes after unknownOfferSent is emitted. -
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.
-
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.
-
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?
-
If you want some debug logging, then add: community.on('debug', console.log);
-
Always post the code. Nobody can help you with just that output.
-
Set a language and the objects in the arrays of items (itemsToGive and itemsToReceive) will have names in them.
-
Please post your code.
-
Probably, but I don't see what the use of that is.
-
[Question] How to confirm all trades?
Dr. McKay replied to kaikash's topic in node-steam-tradeoffer-manager
You can confirm them automatically with https://github.com/DoctorMcKay/node-steamcommunity/wiki/Steam-Confirmation-Polling- 3 replies
-
- node.js
- node-steam-tradeoffer-manager
-
(and 1 more)
Tagged with:
-
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.
-
[Question] How to confirm all trades?
Dr. McKay replied to kaikash's topic in node-steam-tradeoffer-manager
https://github.com/DoctorMcKay/node-steamcommunity/wiki/SteamCommunity#getconfirmationstime-key-callback- 3 replies
-
- node.js
- node-steam-tradeoffer-manager
-
(and 1 more)
Tagged with:
-
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.
-
Question Where is the sentry file located?
Dr. McKay replied to I'm L!'s topic in node-steam-tradeoffer-manager
steam-tradeoffer-manager doesn't login to Steam, so consequently it doesn't have a sentry file. How are you logging into Steam? -
You're absolutely sure that sentOfferChanged isn't being emitted? Is pollFailure being emitted every time debug is?
-
Just make a simple script that does console.log(SteamTotp.getAuthCode(shared_secret)); or something.
-
Polling is automatic, yes. It polls every 30 seconds. Can you add this and see what the output is? offers.on('debug', console.log);
-
Are you up to date?