-
Posts
3543 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
Get steam Offer on later stage
Dr. McKay replied to mouzes1's topic in node-steam-tradeoffer-manager
steam-tradeoffer-manager has a built-in option to automatically cancel offers if they remain active for too long. Look at the cancelTime option. There's no direct resend method, but you can call offer.duplicate() to get a copy of the offer, which you can then send (provided the items still exist). -
Can't send Trade Offers - 403 Error
Dr. McKay replied to rezzex's topic in node-steam-tradeoffer-manager
Update to 2.1.0 and provide your PIN to setCookies and it should work for you. -
Question Handling EResult 7 After Calling joinChat Method?
Dr. McKay replied to snowcrash's topic in node-steam-user
I really have no idea, sorry. -
Question Handling EResult 7 After Calling joinChat Method?
Dr. McKay replied to snowcrash's topic in node-steam-user
What kind of chat are you inviting the bot to join? -
Question Handling EResult 7 After Calling joinChat Method?
Dr. McKay replied to snowcrash's topic in node-steam-user
I can't reproduce this with group chats or multi-user chats. Make sure all your modules are up to date. -
How to get partnerid and accessToken of logged bot?
Dr. McKay replied to Max Yari's topic in node-steamcommunity
The "partnerid" is just the accountid part of your SteamID: var partnerid = community.steamID.accountid; You can use steam-tradeoffer-manager to get the token. -
I posted some ways you can work around this here: https://dev.doctormckay.com/topic/395-how-do-you-deal-with-timeout-err-16-on-tradeoffer-send/
-
Error 16 when sending trade offer
Dr. McKay replied to darkwar1234's topic in node-steam-tradeoffer-manager
https://dev.doctormckay.com/topic/409-very-important-error/ No need for multiple threads about the same thing. -
Just my own experience. I've updated the readme to reflect this fact.
-
Are you going online on chat properly with client.setPersona?
-
It performs the same validation that getEscrowDuration did. That is, you'll get an Error with the same message as before if the token is invalid.
-
You should be using getUserDetails now, which does that and more.
-
If you're currently being 429'd, you need to wait at least a couple minutes. And you need to slow down to avoid it in the future.
-
It will absolutely definitely not work.
-
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.