-
Posts
3631 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
My mistake, update to v1.1.1 and this is fixed.
-
Are you getting some kind of error?
-
Whoops. That should be fixed in 3.9.1.
-
Trade offer manager cant set cookies
Dr. McKay replied to inner_psycho's topic in node-steam-tradeoffer-manager
There's nothing in there that would spam requests. Note that it's an IP limit. It can be anything on your IP that is spamming requests.- 6 replies
-
- node.js
- node-steam-tradeoffer-manager
-
(and 1 more)
Tagged with:
-
Trade offer ID? Yes, it's possible. You'd just need to request your confirmation list then get details for each individual one until you found the matching offer ID.
-
1. If you want to get all active offers and that's it, you'd use this: { "get_sent_offers": 1, "active_only": 1, "time_historical_cutoff": 2147483647 } 2. You'd check the trade_offer_state. If they accepted it then they received the item you sent them. 3. If you want all offers from a time period you'll need to just leave out both active_only and historical_only and filter the result.
-
Because you're adding a new listener every single time you request item info. Just use the callback and you won't need to worry about it.
-
Question Can't recieve incoming trade offers
Dr. McKay replied to Kiska's topic in node-steam-tradeoffer-manager
Because that's how it works. -
Trade offer manager cant set cookies
Dr. McKay replied to inner_psycho's topic in node-steam-tradeoffer-manager
setCookies makes exactly one request (two if you supply a Family View PIN). It isn't setCookies' fault. You're making requests elsewhere too quickly.- 6 replies
-
- node.js
- node-steam-tradeoffer-manager
-
(and 1 more)
Tagged with:
-
Trade offer manager cant set cookies
Dr. McKay replied to inner_psycho's topic in node-steam-tradeoffer-manager
429 means that you've sent too many requests to Steam in a short time and you need to slow down.- 6 replies
-
- node.js
- node-steam-tradeoffer-manager
-
(and 1 more)
Tagged with:
-
Question Can't recieve incoming trade offers
Dr. McKay replied to Kiska's topic in node-steam-tradeoffer-manager
There's a reason why you can't supply your own API key. The key it uses must be associated with the Steam account you're using. You can't use another account's key. If your account is limited, you'll just have to pay $5. -
node-globaloffensive is using an option where instead of underscores, you should provide protobuf fields in camelCase. Basically, just remove the underscores and capitalize the next letter. However, I've added that functionality in v1.1.0.
-
Your crash log gist 404s.
-
WebStorm sometimes has trouble resolving Node dependencies. Do you have the Node.js plugin installed in WebStorm?
-
Sounds right.
-
WebStorm is giving you an error because csgo doesn't exist when you're trying to listen for an event on it. Create your GlobalOffensive object at the same time as when you create your SteamUser object.
-
You can just create a SteamGameCoordinator handler and pass the steam-client to it.
- 6 replies
-
- node.js
- node-steam-user
-
(and 2 more)
Tagged with:
-
Yes, it will set cookies on the SteamCommunity instance.
- 3 replies
-
- node.js
- node-steam-tradeoffer-manager
-
(and 1 more)
Tagged with:
-
Where did you get that persona object from?
-
I have no idea whatsoever what you're asking.