-
Posts
3629 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
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.
-
TypeError: Cannot read property 'appid' of undefined
Dr. McKay replied to yoba's topic in node-steam-tradeoffer-manager
https://steamerrors.com/15 -
TypeError: Cannot read property 'appid' of undefined
Dr. McKay replied to yoba's topic in node-steam-tradeoffer-manager
Looks like one of the items you're trying to add is undefined. Perhaps someone's inventory is empty? -
Question them.escrowDays does not work?
Dr. McKay replied to jafix's topic in node-steam-tradeoffer-manager
The first argument is me. -
I don't work for Valve.
-
Question Question about the cookies
Dr. McKay replied to Mr Game and Watch's topic in node-steam-user
If you have the mobile authenticator enabled, then logging in from a new device won't ever result in a trade cooldown. Otherwise, it will, but only for that device, meaning you can test it safely without any risk. -
Same problem as https://dev.doctormckay.com/topic/882-themescrowdays-does-not-work/
-
Question Question about the cookies
Dr. McKay replied to Mr Game and Watch's topic in node-steam-user
Yes, they will work in other browsers. They expire rather quickly though (and immediately if you lose connection), so you won't get much use out of them. -
Question them.escrowDays does not work?
Dr. McKay replied to jafix's topic in node-steam-tradeoffer-manager
The problem was because you were missing a few arguments in your callback function. The names don't really matter, it's the order that matters. -
bot
-
item.type You need to set a language in the constructor for that to be present.
-
Possible to retrieve logonID after loggedOn emitted?
Dr. McKay replied to rektbot's topic in node-steam-user
No. You should be able to track whatever you want yourself in the same place where you store the SteamUser object. -
steamID is a SteamID object. If you want the 64-bit ID, use steamID.getSteamID64() JavaScript can't precisely track numbers that are larger than 253. You need to wrap it in quotes to make it a string for comparison. Correct regarding == and !=.
-
Are you confirming it if you're trying to take items from the bot?
-
Whatever you stored your SteamUser instance in.
-
bot.gamesPlayed([730])
-
Cannot read property 'player_name' of undefined
Dr. McKay replied to T1MOXA's topic in node-steam-user
You're overwriting the value of steamID in your outer loop, which changes the context of the closure. This is confusing, I know. Just do this and it should work: bot.on('friendsList', function() { Object.keys(bot.myFriends).forEach(function(steamID) { if(bot.myFriends[steamID] === 2) { bot.getPersonas([steamID], function(getName) { var friendName = getName[steamID].player_name; //Some code }); } }); }); -
ReferenceError: offer is not defined
Dr. McKay replied to jafix's topic in node-steam-tradeoffer-manager
Switch steamID, respond for offer -
https://github.com/DoctorMcKay/node-steamcommunity/blob/master/components/users.js#L345
-
Does the bot's Steam account own CS:GO?
-
https://github.com/DoctorMcKay/node-steamcommunity/wiki/CSteamUser#commentmessage-callback