-
Posts
3545 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
That offset-retrieval code won't work. You need to wait for the callback before you try to do anything with that offset.
-
Question "Steam Guard App Code" when logging in frequently
Dr. McKay replied to DevDuck's topic in node-steam-user
Does it appear as online/in-game on its direct profile? -
Question GetOwnedApps & Steam Family Sharing
Dr. McKay replied to Revadike's topic in node-steam-user
Please give 3.21.0 a shot.- 17 replies
-
- node.js
- node-steam-user
- (and 5 more)
-
Question GetOwnedApps & Steam Family Sharing
Dr. McKay replied to Revadike's topic in node-steam-user
Thanks. Looks like there's an expiry time in those packages which is being ignored. Let me take a look at the code.- 17 replies
-
- node.js
- node-steam-user
- (and 5 more)
-
Question "Steam Guard App Code" when logging in frequently
Dr. McKay replied to DevDuck's topic in node-steam-user
You probably never called setPersona on the node-steam-user to set it online. -
Question GetOwnedApps & Steam Family Sharing
Dr. McKay replied to Revadike's topic in node-steam-user
Please dump your licenses property to JSON and either post it here or PM it to me.- 17 replies
-
- node.js
- node-steam-user
- (and 5 more)
-
Wrong module. This isn't node-steam-tradeoffers.
-
Question "Steam Guard App Code" when logging in frequently
Dr. McKay replied to DevDuck's topic in node-steam-user
I honestly have no idea what you're asking. The statistics in Steam groups aren't always up-to-date or correct. -
Question GetOwnedApps & Steam Family Sharing
Dr. McKay replied to Revadike's topic in node-steam-user
I don't think family sharing applies since it's per-machine. Are you sure that they aren't just free apps?- 17 replies
-
- node.js
- node-steam-user
- (and 5 more)
-
Issue to relog for bot, especially on tuesday maintenance
Dr. McKay replied to nikoF's topic in node-steam-user
If Steam is down, you can't log in. I don't understand where the confusion is. Wait for Steam to come back online, and the client will reconnect on its own and emit webSession. -
Question "Steam Guard App Code" when logging in frequently
Dr. McKay replied to DevDuck's topic in node-steam-user
If you're using node-steam-user, it will automatically reconnect when it gets disconnected. You can handle the event where you need a Steam Guard code by setting the promptSteamGuardCode option to false and handling the steamGuard event. -
You need to call webLogOn with no arguments, and call it on the same Steam client as the one that's already connected to Steam.
-
Adding Gems and Gem Sacks to trade.
Dr. McKay replied to 12Ghast's topic in node-steam-tradeoffer-manager
This is what the amount property is for. -
Issue to relog for bot, especially on tuesday maintenance
Dr. McKay replied to nikoF's topic in node-steam-user
That's the correct method to use, but you can't use it if you aren't currently connected to Steam (e.g. because Steam is down). That's what's throwing that error. -
CreateOffer if i dont know partner trade url
Dr. McKay replied to Enemtia's topic in node-steam-tradeoffer-manager
The code in your first post will absolutely work. Regarding your second post, are you passing the 64-bit SteamID as a string instead of a number? JavaScript can't handle integers that are that big. -
Issue to relog for bot, especially on tuesday maintenance
Dr. McKay replied to nikoF's topic in node-steam-user
You're trying to relog the web session while Steam is down. Don't do that, and just wait for Steam to come back. It will emit webSession automatically once it reconnects successfully. -
relog will only work if you're currently logged on (steamID is not null). If you're not logged on (steamID is null), logOn.
-
Question Logon with Sentry, requests Auth Code
Dr. McKay replied to Rellfy's topic in node-steam-user
There's no reason why that shouldn't work, besides the sentry not being valid for your account. -
It won't automatically relogin if you explicitly log off.