-
Posts
3626 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
Using IEconItems_440 instead of CEconItems
Dr. McKay replied to Crit12's topic in node-steam-tradeoffer-manager
No, you'd need to use that API yourself. IEconItems_440 is a TF2-specific API and steam-tradeoffer-manager is general for all Steam assets. -
Sounds like it.
-
Best way to check if Client is still logged in ?
Dr. McKay replied to mjavad_mllw's topic in node-steam-user
Read the docs please. You should not call logOn() inside of the disconnected event as steam-user will handle reconnecting automatically. Checking the steamID property is how you can tell whether you're currently logged in or not. -
I believe you wouldn't receive that message if there are no other playing sessions.
-
getExchangeDetails for large amount of trades
Dr. McKay replied to G35's topic in node-steam-tradeoffer-manager
Yes, getExchangeDetails makes a Steam API call (specifically, GetTradeStatus). Generally speaking, anything that has a callback makes a network request. No, there's no built-in mechanism for handling rate limiting. You'll need to do it yourself. -
Yes, this is the only way to obtain web cookies if you have a refresh token for EAuthTokenPlatformType.SteamClient. Other platform types can get cookies via steam-session.
-
Question: Using proxies with steamcommunity (v3 and later)
Dr. McKay replied to HunterX12's topic in node-steamcommunity
You can still use a proxy the same way you did before with steamcommunity, but you're correct that the login() method no longer works if you do. You need to use steam-session with your proxy and call setCookies on steamcommunity, passing your proxy to both. -
407 means your proxy is rejecting your connection. You're either using the wrong credentials or you have things configured wrong.
-
Version?
-
Undocumented error sending offer
Dr. McKay replied to Askona's topic in node-steam-tradeoffer-manager
Have you acknowledged the modal about trade protection? You need to do that or call acknowledgeTradeProtection in node-steamcommunity once per account to be able to trade. -
What is the purpose of hasWallet in the steam-user library?
Dr. McKay replied to ggforces's topic in node-steam-user
It's based on whether Steam reports if you have a wallet or not. I believe it becomes true the first time you fund your wallet (and thus set a currency for it). -
Problem enabling 2FA via steam-user – result code 2
Dr. McKay replied to DieterB's topic in node-steam-user
Just add 2FA the same way you would if you had a phone number. The code gets sent to your email instead of your phone. -
Is comment posting available in the module?
Dr. McKay replied to Kaand's topic in node-steamcommunity
https://github.com/DoctorMcKay/node-steamcommunity/wiki/CSteamUser#commentmessage-callback- 1 reply
-
- comment
- steam profile
-
(and 1 more)
Tagged with:
-
You need to update node-steamcommunity and call acknowledgeTradeProtection() on each account.
-
Question on new parameter for GET requests
Dr. McKay replied to SimsaLabim's topic in node-steam-session
Moved to correct forum - this was in an update to node-steam-session, not node-steam-user. As far as I've seen, this parameter is present for any GET request issued by the mobile app to the WebAPI. Confirmations don't go through the API so it's not present for those requests. In practice, the only request that origin=SteamMobile is added to in steam-session is the initial GetPasswordRSAPublicKey request as that's the only GET request issued when using EAuthTokenPlatformType.MobileApp. -
How to check for steam guard mobile?
Dr. McKay replied to rahimi0151's topic in node-steam-tradeoffer-manager
-
Receiving counteroffer doesn't trigger newOffer
Dr. McKay replied to JVz's topic in node-steam-tradeoffer-manager
There's no reason it wouldn't, a counter-offer is a new trade offer like any other. -
'sentOfferChanged' Missing Rollback Event — Needs Update
Dr. McKay replied to Zreex's topic in node-steam-tradeoffer-manager
Already known, see this thread: -
As you've figured out, the actual trade offer stays in the Accepted state, but the underlying trade gets rolled back. steam-tradeoffer-manager doesn't poll GetTradeHistory at all right now, so adding support for detecting these rolled back trades would incur additional requests. I'm still working on thinking of the best way to go about this, but for now I suggest you do your own GetTradeHistory polling.
-
https://github.com/DoctorMcKay/node-steamcommunity/releases/tag/v3.49.0 As far as I can tell, clicking that button in the popup (which is what acknowledgeTradeProtection() does) is all that's needed, and it only needs to be done once per account. If you've already clicked the button on the account(s) you use to trade, you shouldn't need to do anything more.