-
Posts
3591 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
GlobalOffensive(user).requestPlayersProfile() not working?
Dr. McKay replied to spezi's topic in node-steam-user
Are you friends with them? I believe you need to be friends and they might even need to be online.- 2 replies
-
- node.js
- node-steam-user
-
(and 1 more)
Tagged with:
-
That's a scam.
-
Question How can i use getEncryptedAppTicket?
Dr. McKay replied to crypt2r's topic in node-steam-user
It probably failed because you're trying to get an encrypted appticket for an app that doesn't have it enabled. -
Question Multiple getInventoryContents into one trade?
Dr. McKay replied to Schmaltz's topic in node-steam-tradeoffer-manager
Add another call to getInventoryContents inside the callback of the first one. -
https://github.com/DoctorMcKay/node-steam-user#gamesplayedapps-force
-
Question How to use steam web API with the Node-steam-user
Dr. McKay replied to Lonster_Monster's topic in node-steam-user
That API method doesn't do what you expect. Specifically, it doesn't return market prices nor does it work for Steam Community items. -
https://github.com/DoctorMcKay/node-steam-user#playingstate
-
https://github.com/DoctorMcKay/node-steam-user#promptsteamguardcode https://github.com/DoctorMcKay/node-steam-user#steamguard
-
Make sure that your bot account has permission to kick users. That error is coming from Steam so there isn't much else I can tell you.
-
Question Error: Malformed page: no well-formed trade data found
Dr. McKay replied to utyfua's topic in node-steamcommunity
Well done, Valve. I'm not seeing that on my own inventory history page. Possible it's just a transient issue? -
There is already an existing thread for this (and this isn't the right forum anyway).
-
Have you sent/accepted the offer already?
-
No, because having two clients logged into the same Steam account does trickery with your online status.
-
I think strictly speaking, the leading SteamID isn't part of the ticket. Some implementations just expect the SteamID to be sent preceding the actual ticket. Therefore, I don't believe I should be including that leading SteamID in the ticket I return.
-
What exactly is happening?
-
Thanks for the info. I've merged the pending pull request and published an update.
-
I don't really think this can be done with a bot. The bot would need to go online in order to receive chat messages, which would override your persona state from the proper Steam client.
-
Discussion How to use uploadAvatar function?
Dr. McKay replied to berkerm4n's topic in node-steamcommunity
You aren't logging into node-steamcommunity. -
Good info, thanks.
-
Question How to check, if someone commented on a announcement?
Dr. McKay replied to SayWhat's topic in node-steam-user
I don't have any immediate plans. -
Question Already logged on, cannot log on again
Dr. McKay replied to Frohser's topic in node-steam-user
-
Use the same bot in multiple files (app.js, router-files, etc.)
Dr. McKay replied to Verize's topic in node-steam-user
You could add a function to that app.js file which returns the bot instance. Like exports.getBot = function() { ... }