Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3408
  • Joined

  • Last visited

Everything posted by Dr. McKay

  1. 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.
  2. Dunno, that's pretty vague. Do you have a phone number on your account?
  3. You might be able to use an access token generated by steam-session for those APIs.
  4. 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
  5. What is an IPv6 proxy? Steam doesn't support IPv6.
  6. 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.
  7. 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.
  8. The timeout is now 5 seconds in v1.1.1.
  9. You'll need to take that up with your proxy provider; the proxy is rejecting your forwarding request. Maybe you need to supply a username or password, or you need to tell the provider which IP you're going to connect from.
  10. 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.
  11. 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.
  12. 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 });
  13. You have to use node-steamcommunity for that: https://github.com/DoctorMcKay/node-steamcommunity/wiki/SteamCommunity#editprofilesettings-callback
  14. No, it's stored encrypted and the way to decrypt it hasn't been published by anyone.
  15. You need to use the current time, not the time from when you first added the authenticator.
  16. That's definitely a proxy issue. Your proxy isn't responding fast enough.
  17. You exceeded Steam's login rate limit.
  18. There isn't such an event. I think you might be able to check if confirmationMethod is set on an active incoming offer to see if it was accepted and awaiting confirmation, although I'm not certain.
  19. If you use steam-session and log into steam-user using a refresh token, you won't need to enter a code every time. Refresh tokens are valid for 200 days.
  20. No, web cookies are shorter-lived than that. But you can always get new cookies if you still have a valid refresh token. For example: let session = new LoginSession(EAuthTokenPlatformType.WebBrowser); session.refreshToken = getMyRefreshTokenFromDatabaseOrWhatever(); let cookies = await session.getWebCookies();
  21. I don't have any plans to directly add automatic sentry file importing to steam-session.
  22. Steam is no longer issuing login keys. steam-user 4.28.0 adds a hack that makes login key code work without any changes, but using login keys is now officially deprecated.
×
×
  • Create New...