-
Posts
3629 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
10 seconds is not long enough.
-
https://httpstatuses.com/429 You need to stop hitting Valve's servers so hard.
-
That's a known Steam problem, and there is nothing that can be done about it. https://steamerrors.com/16
-
Yes, most certainly. You need to wait for the callback of send(). I have no idea why it worked before v2. My guess is that it didn't. The code you just posted would never work.
-
Code please.
-
Can't send Trade Offers - 403 Error
Dr. McKay replied to rezzex's topic in node-steam-tradeoffer-manager
Hm, there's a bit of a chicken-egg problem here in the module. I'll work on a fix, but for the moment I can only suggest that you disable family view. -
Callback Error on Sent Function
Dr. McKay replied to pumble's topic in node-steam-tradeoffer-manager
https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/releases/tag/v2.0.0 -
https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/releases/tag/v2.0.0
-
Update to v2.
-
You would probably want to set a timer to re-check it.
-
autoRetry was removed in v2.
-
You'll miss out on things like stickers and custom names if you use market_hash_name as your unique field.
-
You should update to v2, which removed the autoRetry option.
-
Question [Error: Could not act on confirmation]
Dr. McKay replied to Inkognitoo's topic in node-steamcommunity
The tag for accepting needs to be allow, not accept. -
Can't send Trade Offers - 403 Error
Dr. McKay replied to rezzex's topic in node-steam-tradeoffer-manager
Don't call parentalUnlock until the callback of setCookies fires Don't try to send an offer until the callback of parentalUnlock fires -
Not presently, no. If you want your own name and stuff, you can use the GetPlayerSummaries WebAPI method.
-
That's just how Valve does it. The classid/instanceid can also include some hidden data that isn't displayed in the actual item data, so you'll just have to live with whatever duplicates you get.
-
Question Get New Cookies After They Expire?
Dr. McKay replied to 16austin16's topic in node-steam-user
You can't just call webLogOn(), you need to call it as a method of a SteamUser object. -
Question Get New Cookies After They Expire?
Dr. McKay replied to 16austin16's topic in node-steam-user
Show your code please. -
Question Manipulate item amount after adding it?
Dr. McKay replied to pumble's topic in node-steam-tradeoffer-manager
You can't increase the "amount" of a non-stacked item. If you want to add multiple cases, you need to call addItem for each individual case object.