-
Posts
3575 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
Are you logged in?
-
Please show your code.
-
Question Different receipt and real Asset ID's
Dr. McKay replied to zerga's topic in node-steam-tradeoffer-manager
Yeah. Unfortunately, that just happens sometimes because Valve sucks. You'll just have to figure out ways to deal with it. -
Question Different receipt and real Asset ID's
Dr. McKay replied to zerga's topic in node-steam-tradeoffer-manager
Wait, I might be slightly confused. Does an item with the ID in the receipt exist, or is there just no such item in the inventory with the ID given by the receipt when the issue happens? -
Is it online on Steam?
-
Question Different receipt and real Asset ID's
Dr. McKay replied to zerga's topic in node-steam-tradeoffer-manager
How do you know that specific items map to a different asset ID, if the asset ID reported by the receipt exists? -
Question I can't send tradeoffer
Dr. McKay replied to Tiberian's topic in node-steam-tradeoffer-manager
Show your code. I suspect you aren't passing a function as the first argument to offer.send(). -
There is no need to call community.setCookies since you're using manager.setCookies and you passed the SteamCommunity instance to the TradeOfferManager constructor. Can you add some output to the webSession event to make sure that's getting emitted properly?
-
Simple steam incomming offer accept
Dr. McKay replied to TaiGlem's topic in node-steam-tradeoffer-manager
https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/blob/master/examples/storehouse-steam.js You should be able to relatively easily modify this example to only accept offers where you don't give any items (e.g. offer.itemsToGive == 0) -
How can I check the offer that has already been sent?
Dr. McKay replied to yoba's topic in node-steam-tradeoffer-manager
https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOfferManager#getofferscontainingitemsitems-includeinactive-callback Please read the documentation. -
https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOfferManager#getoffersfilterhistoricalcutoff-callback Please read the documentation.
-
steam-tradeoffer-manager never had anything to do with this, so there isn't anything to update.
-
See cancelTime here: https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOfferManager#constructoroptions
-
Send offers problem: Error: Access Denied
Dr. McKay replied to yoba's topic in node-steam-tradeoffer-manager
I suggest you check again. -
All the information I have is that it doesn't work. http://apistatus.steam.pm
-
A pretty easy way to invalidate your session: community.setCookies(["steamLogin=invalid", "steamLoginSecure=invalid"]);
-
You seem to be under the mistaken impression that any of us work for Valve.
-
EResult: 42 On attempted trade accept
Dr. McKay replied to Drepic's topic in node-steam-tradeoffer-manager
42 = NoMatch Did you perhaps set the apiKey property manually? -
Send offers problem: Error: Access Denied
Dr. McKay replied to yoba's topic in node-steam-tradeoffer-manager
https://support.steampowered.com/kb_article.php?ref=3330-IAGK-7663 -
Send offers problem: Error: Access Denied
Dr. McKay replied to yoba's topic in node-steam-tradeoffer-manager
Yes. -
Can you console.log(offer.partner)?
-
Question How To get new AssetId
Dr. McKay replied to maraya's topic in node-steam-tradeoffer-manager
https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOffer#getreceiveditemsgetactions-callback or https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOffer#getexchangedetailsgetdetailsiffailed-callback -
Question send and receive trade offer
Dr. McKay replied to mnx_2016's topic in node-steam-tradeoffer-manager
Clearly the item ID doesn't exist in the inventory. -
Send offers problem: Error: Access Denied
Dr. McKay replied to yoba's topic in node-steam-tradeoffer-manager
Your account is most likely limited. You can't use this module with limited Steam accounts. -
I need to see your code.