-
Posts
3543 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
https://github.com/DoctorMcKay/node-globaloffensive#itemacquired
-
At the moment, I'm not aware of any public code for creating a new Steam account. At a minimum, you'd need to implement recaptcha solving.
-
FriendsList.GetFriendsList#1 only retrieves your friends list, as in the list of SteamIDs that you're friends with. It doesn't include any persona or profile data.
-
It's possible now. https://github.com/DoctorMcKay/node-steam-session/releases/tag/v1.2.0
-
The messages behind getPersonas and the user event are how Steam chat listens for user updates. Make sure your persona state is set to online.
-
It's not presently possible to use a refresh token to issue a new access token, but it's on my to-do list.
-
They're running the CS:GO client. In order to bot-join a CS:GO server, you'd need to implement VAC flawlessly, and good luck with that.
-
node-steam-user: status code 2 on enableTwoFactor
Dr. McKay replied to Emur's topic in node-steamcommunity
Dunno, that's pretty vague. Do you have a phone number on your account? -
You might be able to use an access token generated by steam-session for those APIs.
-
You can't.
-
No. It sounds like you're misunderstanding what steam-user actually does. When you use user.gamesPlayed(730), you're only telling the Steam servers that you're playing CS:GO. The actual game doesn't get launched. If you want to automate launching CS:GO and connecting it to a server, you can do so by calling steam.exe with the -applaunch argument, like so: "C:\Program Files (x86)\Steam\Steam.exe" -applaunch 730 +connect 1.2.3.4:27015
-
What is an IPv6 proxy? Steam doesn't support IPv6.
-
The inventory endpoint doesn't fall under the Steam Web API, and the 100k request limit doesn't apply to it. Check the headers that your browser is sending, and make sure you send as many of them as you can in your own requests.
-
send a message in a steam group comments page
Dr. McKay replied to duskyzao's topic in node-steam-user
No, that's called spam. -
How to get info from removed games ?
Dr. McKay replied to 4049_1572836826's topic in node-steam-user
I'm not aware of any way to determine from the client if a game is delisted on the store. You'd pretty much just have to check to see if https://store.steampowered.com/app/AppIdHere redirects to / or not. getProductInfo will give you all the same stuff that app_info_print does. Also, you don't need to use SteamCMD to use app_info_print; just hit Win+R and type steam://nav/console (or click that link) to open the console in the regular Steam client. -
The timeout is now 5 seconds in v1.1.1.
-
Getting user's Rich Presence without Steamworks SDK
Dr. McKay replied to Arty's topic in node-steam-user
Yes, you can request rich presence for a user using requestRichPresence. You can also listen for the user event, which is emitted in real-time for accounts on your friends list when things change. -
https://nodejs.org/api/events.html#emitteronceeventname-listener I dunno what to tell you; it seems like you've got some kind of concurrency problem or something.
-
A better way to accomplish this would be to watch for the disconnected event: client.logOff(); client.once('disconnected', () => { // logged off; now safe to log on again });
-
You have to use node-steamcommunity for that: https://github.com/DoctorMcKay/node-steamcommunity/wiki/SteamCommunity#editprofilesettings-callback