-
Posts
3629 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
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.
-
There is an example on the node.js doc page. It has to be the same function, not a copy of the function.
-
As per the documentation, you need to pass the actual function that you want to remove as a listener to removeListener.
-
https://nodejs.org/api/events.html#events_emitter_removelistener_eventname_listener
-
Question Is any option to get the list of friends.?
Dr. McKay replied to jensej's topic in node-steamcommunity
^ You need to either use node-steam-user or call the GetFriendList WebAPI method. -
https://nodejs.org/api/events.html
-
user.logOn, not client.logOn
-
var CMClient = require('steam-client').CMClient; var SteamUser = require('steam-user'); var client = new CMClient(); client.bind('192.168.0.2'); var user = new SteamUser(client);