-
Posts
3543 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
Data temporarily unavailable
Dr. McKay replied to mantelis123's topic in node-steam-tradeoffer-manager
Lower your poll interval if it takes too long. Please understand that this is Steam. Slow responses will happen from time to time. -
Data temporarily unavailable
Dr. McKay replied to mantelis123's topic in node-steam-tradeoffer-manager
Yes, if the offer was actually accepted then it will be emitted on the next poll. -
Data temporarily unavailable
Dr. McKay replied to mantelis123's topic in node-steam-tradeoffer-manager
You should be using the receivedOfferChanged event as a backup, as Steam can give errors when you accept even when it goes through. -
It depends on why you were disconnected. If the error event was emitted then it was an unrecoverable disconnection and you need to reconnect yourself. If the disconnected event was emitted instead, then steam-user will automatically reconnect. Basically, you just shouldn't webLogOn if you aren't currently connected.
-
You got disconnected from Steam, and that's why the session expired.
-
http://cwbuecheler.com/web/tutorials/2013/javascript-callbacks/
-
You're calling webLogOn while you aren't logged onto Steam.
-
Cant login to SteamCommunity, [Error: SteamGuardMobile]
Dr. McKay replied to spazhead's topic in node-steamcommunity
Why are you logging in twice within 30 seconds anyway? -
Cant login to SteamCommunity, [Error: SteamGuardMobile]
Dr. McKay replied to spazhead's topic in node-steamcommunity
Your clock is wrong, your secret is wrong, or you're trying to reuse a code. I see that you're trying to get the time offset, but what you're doing won't work as you aren't waiting for the callback. Please read a bit about how asynchronous JavaScript works. If you want the time offset check to work, then you need to put everything inside the callback of getTimeOffset. -
You either aren't using steam-tradeoffer-manager, or you aren't setting it up properly. TradeOfferManager#setup() doesn't exist.
-
items now unavailable for trade
Dr. McKay replied to mantelis123's topic in node-steam-tradeoffer-manager
You can use getOffersContainingItems to see if there are any offers containing a particular item, and if yes, then move on to the next one. Or just store the asset IDs yourself so you don't reuse them. -
Either your secret is wrong, or your clock is wrong.
-
You need to wait until the loggedOn event is emitted.
-
Are you up to date?
-
Yeah, there shouldn't be any compatibility issues.
-
If you want your own profile name, just use the accountInfo property (and the accountInfo event).
-
The names are the player_name property in each object in the array provided in the callback.
-
client.on('friendRelationship', function(steamID, relationship) { if (relationship == SteamUser.Steam.EFriendRelationship.RequestRecipient) { client.addFriend(steamID); } }); You can use getPersonas to get names and other profile data.
-
https://github.com/DoctorMcKay/node-steam-user#friendrelationship
-
What is "this" that you downloaded?
-
Steam Trade Confirmations Suddenly Stoped Working?
Dr. McKay replied to Luca's topic in node-steamcommunity
Not really. -
Gonna need some more information than that.
-
Steam Trade Confirmations Suddenly Stoped Working?
Dr. McKay replied to Luca's topic in node-steamcommunity
Using a bot and a real phone to handle confirmations at the same time is asking for trouble.