-
Posts
3545 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
not confirm trade after running a while
Dr. McKay replied to speicher's topic in node-steamcommunity
No, you need to be connected to use relog. -
In my experience, no.
-
Question Error: Could not act on confirmation
Dr. McKay replied to cthuluhoop123's topic in node-steamcommunity
Steam just does things. -
Question What is `version` in `json_tradeoffer`
Dr. McKay replied to MrPandeu's topic in node-steam-tradeoffer-manager
It means nothing. It's a remnant from real-time trades where every time the trade updates, that's a new "version". -
The first argument to the callback is (as always) err. The AppID it wants is not the item's AppID but the AppID of the game, which is generally available as market_fee_app.
-
You have to use getGemValue first because turnItemIntoGems needs the expected value.
-
Sounds like it's not finding a matching item in their inventory.
-
If you're only adding items to their side of the trade, of course you wouldn't be offering any of your items.
-
Need to see more than that. Specifically how you're adding items to it. Also, !offer.state == 11 won't do what you think it does. It translates into (!offer.state) == 11 or false == 11.
-
We'd need to see code to tell you anything useful.
-
I don't believe there is one, but be aware that for each item you add to the trade, it takes longer to confirm the trade.
-
What exactly does this have to do with steam-tradeoffer-manager?
-
Getting which game a coupon is?
Dr. McKay replied to QuestionRealQuick1's topic in node-steam-tradeoffer-manager
list_of_subs is the list of package IDs it can be applied to. Packages contain apps. You can get package data from steam-user. -
Question receivedOfferChanged dont receive offer.id
Dr. McKay replied to live4net's topic in node-steam-tradeoffer-manager
I cannot help you with node-steam-bot-manager. -
No, it needs to be the sale ID.
-
You can list items in your OPSkins inventory for sale. Look into the ISales/EditPrice API method.
-
Question receivedOfferChanged dont receive offer.id
Dr. McKay replied to live4net's topic in node-steam-tradeoffer-manager
You must have a problem in BotManager somewhere. -
You must be sending the wrong ID to OPSkins then.
-
That was originally in there, dunno where it went.
-
Marketability isn't the same as tradability.
-
That error happens when you're trying to list something that isn't in your Steam inventory (or isn't tradable).
-
How would you get the name of the game someone is playing if they're not in-game?
-
You should use GetPlayerSummaries to get what game someone is playing.
-
There's nothing in the steamcommunity module to get a user's games. Generally it doesn't include stuff for things you can do with the WebAPI.