-
Posts
3545 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
Check what the actual error message is in the err.
-
Handling getUserInventoryContents
Dr. McKay replied to Duodecim's topic in node-steam-tradeoffer-manager
You can use the array filter function to filter an inventory to a specific set of items. -
It's definitely a good idea for busy bots to prune their polldata once in a while. It should probably be done automatically by the module, but for the moment it needs to be done manually. I have a new major version in the works; I'll see about adding auto-pruning to it.
-
I misread your code the first time. Looks like your problem is actually that addAccount doesn't return anything.
-
Yes, promotional free licenses are not the same as free-on-demand licenses. Those have to be added through the store site. You can use steamstore's addFreeLicense method to acquire a promotional free license.
-
accounts is always going to be empty when your /log listener executes, so no accounts will get added and nothing will be returned. I misread the code.
-
Use the game's appid with requestFreeLicense, not the packageid you want. Steam will figure out which package to give you.
-
How to make a comment on a forum topic?
Dr. McKay replied to Jack Nolddor's topic in node-steamcommunity
Not at the moment, and it's unlikely to be supported in the future due to the potential for spam. -
Mistake in performSearch function?
Dr. McKay replied to What Comes Around's topic in node-steamcommunity
marketSearch({appid: 730}, (err, results) => { ... }); -
Mistake in performSearch function?
Dr. McKay replied to What Comes Around's topic in node-steamcommunity
The mistake is in your code. marketSearch only takes two arguments, options and callback. Remove the 730 and false. -
I don't believe there's a limit.
-
shoppingCartGID doesn't get issued until you actually add something to your cart.
-
You misspelled accountName
-
Is it possible to get game information? (Hours, Last Played etc..)
Dr. McKay replied to Dev's topic in node-steam-user
Not at the moment, but I can look into it. -
In the next release (expected in the next day or so), it will be possible to easily filter your owned apps to include or exclude shared licenses, but I'm not sure what you mean by "including ones excluded from sharing". Are you saying that licenses from a shared library are included, even if that particular app is excluded from game sharing?
-
It's far more trouble than it would be worth.
-
Not as far as I'm aware. They both accomplish the same task so Valve doesn't have a need to return both.
-
You can't.
-
Either your secret is wrong or your clock is wrong.
-
No, there isn't any native support in the library for that. It would probably be easier for you to just manually send the request and parse the JSON yourself.
-
Yeah, time_historical_cutoff is used to include non-active offers that have updated since the provided time, when you pass active_only.
-
Native support for what, filtering by item name? No.
-
You can use the count URL parameter to filter how many items are returned, like this: https://steamcommunity.com/inventory/76561198006409530/753/6?count=1
-
All active offers should always be returned when you pass active_only, regardless of your other query parameters.
-
Sharing the same steamcommunity across multiple workers
Dr. McKay replied to Tayhayy's topic in node-steamcommunity
When you pass data through IPC like that, it gets serialized and then unserialized on the other end. The nature of a SteamCommunity object actually being a SteamCommunity object doesn't survive that serialization.