-
Posts
3581 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
Set the enablePicsCache option to true in the constructor, then listen for the ownershipCached event and once it's emitted, you can call ownsApp to check if you own a license for an app.
-
No, you won't get classids from the GC at all. classids are only meaningful to the Steam Econ server, which is entirely separate from the GC.
-
I wasn't ever able to find a definition for that enum.
-
Correct, that data is no longer available anywhere as far as I'm aware.
-
No. You have to hit the GC (using the globaloffensive npm package or similar) to get details like that.
-
Getting tradehold of user without getUserDetails.
Dr. McKay replied to Devx09's topic in node-steam-tradeoffer-manager
I believe in both of those cases you would need to use getUserDetails. -
examples/storehouse-steam.js isn't working
Dr. McKay replied to LSpeed's topic in node-steam-tradeoffer-manager
If you're trading CS2 items, you'll need to enable the useAccessToken option in the TradeOfferManager constructor. -
Which architecture is more suitable for keeping bots running?
Dr. McKay replied to vindisel's topic in node-steamcommunity
It wouldn't hurt to clusterize things, but either way things should generally work fine without need for much hardware. -
Just request the trade URL once and then cache it somewhere? It doesn't change after the first time you fetch it.
-
Which architecture is more suitable for keeping bots running?
Dr. McKay replied to vindisel's topic in node-steamcommunity
It depends on what you're doing and how you're doing it. If you're using node-steamcommunity for all those accounts, you're going to hit rate limits unless you're performing actions infrequently. And if you're logging in that many accounts from one IP, that'll rate limit you as well. -
Why would you need to hit the /tradeoffers/privacy endpoint ever?
-
Getting tradehold of user without getUserDetails.
Dr. McKay replied to Devx09's topic in node-steam-tradeoffer-manager
https://steamapi.xpaw.me/#IEconService/GetTradeHoldDurations -
HTTP/SOCKS proxy settings not applied - Steam sees real IP
Dr. McKay replied to ancymon's topic in node-steam-user
You've got some problem with your proxy being unable to connect to Steam, it seems.- 3 replies
-
- steam-user
- bug
-
(and 2 more)
Tagged with:
-
HTTP/SOCKS proxy settings not applied - Steam sees real IP
Dr. McKay replied to ancymon's topic in node-steam-user
The string you pass to httpProxy needs to start with http:// createConnection is not a valid option for the SteamUser constructor. To use a SOCKS proxy, you should use the socksProxy option.- 3 replies
-
- steam-user
- bug
-
(and 2 more)
Tagged with:
-
It may not be enabled on that phone, but it's enabled somewhere.
-
You clearly already have MFA enabled if it's asking for an MFA code.
-
Can't be done. You can get a web logon nonce from https://steamcommunity.com/chat/clientjstoken but that's not the same thing as a refresh token for the client; you have to send that as web_logon_nonce in the CMsgClientLogOn message.