-
Posts
3591 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
Trade Handling Request or Wait for Trade?
Dr. McKay replied to xNiceEinz's topic in node-steam-tradeoffer-manager
I'm not sure what you're asking here. Limits I can recall off the top of my head are max 30 active sent offers at one time, max 5 active sent offers to one user at one time, and various IP rate-limits which should only affect offer.send() and offer.getReceivedItems(). -
getReceivedItems only with tradeid
Dr. McKay replied to trzyrazyzero's topic in node-steam-tradeoffer-manager
You really aren't meant to do it that way. That said, this is really, really bad and really, really horrible, but will work: var offer = manager.createOffer("[U:1:1]"); offer.id = 1; offer.state = 3; offer.tradeID = your_trade_id; offer.getReceivedItems((err, items) => { // as I said, horrible. }); -
There isn't any way besides just using a bunch of IP addresses.
-
https://github.com/SteamRE/SteamKit/blob/master/Resources/SteamLanguage/enums.steamd#L14-L32
-
Just to clarify, the callback is firing and err and status are both undefined, not null? What's offer.id? What version are you on?
-
Yes, that's your best bet. You can ignore typing events in node-steam by checking the chatEntryType.
-
You're already using node-steam and its handlers. Use those instead. Don't try to use them alongside node-steam-user.
-
Question Error: HTTP error 401
Dr. McKay replied to Botters's topic in node-steam-tradeoffer-manager
1. Why are you logging in twice? 2. You can't send the offer until you're logged in. Please research how asynchronous JavaScript works if you don't understand this. -
Trade Handling Request or Wait for Trade?
Dr. McKay replied to xNiceEinz's topic in node-steam-tradeoffer-manager
I don't know if it matters which party is accepting the trade for whether or not the API will start failing while accepting. -
There's no such thing as an "ignored friend request". Once you ignore a friend request, the friend request is fully deleted from Steam. If you want a record of people who have added you that you've ignored, you'll need to keep it yourself. You could use nicknames for this perhaps (although I don't think nicknames are implemented in steam-user yet).
-
Trade Handling Request or Wait for Trade?
Dr. McKay replied to xNiceEinz's topic in node-steam-tradeoffer-manager
When the callback to accept fires, all items have been exchanged. -
Check each SteamID in the myFriends property. If the value is EFriendRelationship.RequestRecipient, then they're a pending friend request.
-
not confirm trade after running a while
Dr. McKay replied to speicher's topic in node-steamcommunity
It is reconnecting. It just hasn't yet when you try to log onto the website, which doesn't work if it isn't connected. -
not confirm trade after running a while
Dr. McKay replied to speicher's topic in node-steamcommunity
You aren't connected to Steam. Today is Tuesday. Steam goes down every Tuesday. -
This is the kind of thing you need to be posting in the GitHub issue tracker, but don't bother as I'm fixing this. I'll push out 3.19.10 shortly with a fix for this.
-
DuplicateRequest You can't enable 2FA if you already have 2FA enabled.
-
Question Send offer get HTTP error 401
Dr. McKay replied to adammo's topic in node-steam-tradeoffer-manager
You can't use this module with a limited account. -
getReceivedItems only with tradeid
Dr. McKay replied to trzyrazyzero's topic in node-steam-tradeoffer-manager
What's your use-case? -
err being null means that it was successful.
-
[Help] error 15 (access denied)
Dr. McKay replied to razvancb's topic in node-steam-tradeoffer-manager
https://steamerrors.com/15 -
[Help] Sometimes doesnt return array items
Dr. McKay replied to razvancb's topic in node-steam-tradeoffer-manager
As much time as it takes. Could take 10 minutes or more, could take less. -
[Help] Sometimes doesnt return array items
Dr. McKay replied to razvancb's topic in node-steam-tradeoffer-manager
Steam has issues like this not infrequently. You'll just need to try again later. -
As I said previously, GetPlayerItems comes directly from the item server and bypasses the econ server, so it has no concept of classids. You need to use the appropriate GetSchema call to get display information.