-
Posts
3575 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
Question GetOwnedApps & Steam Family Sharing
Dr. McKay replied to Revadike's topic in node-steam-user
You really, really shouldn't be getting family shared games. I'll have to look into this when I get a chance.- 17 replies
-
- node.js
- node-steam-user
- (and 5 more)
-
It works the same way as for trade confirmations.
-
Question GetOwnedApps & Steam Family Sharing
Dr. McKay replied to Revadike's topic in node-steam-user
Did you copy the sentry file from your Steam installation to use with node-steam-user?- 17 replies
-
- node.js
- node-steam-user
- (and 5 more)
-
Question Sending the items one by one, and loops
Dr. McKay replied to IdiotScriptieKid's topic in node-steam-tradeoffer-manager
addMyItems will only work with an array of multiple items (which is what inventory is). You need to use addMyItem to add a single item (e.g. a single element from inventory). The inventory[1] syntax retrieves element #1 from the inventory array (an array is essentially a list). Note that since numbering starts at 0, element #1 is the second ordinal element. -
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.