All Activity
- Today
-
After cs2 trade hold update my bot stopped receiving "newOffer" event for counteroffers
-
uft joined the community
-
Internal behavior changes when logging on with EAuthTokenPlatFormType.MobileApp Updated reported app version from 3.0.0 to 3.10.3 Updated reported device name from Galaxy S22 to Galaxy S25 Added origin=SteamMobile query string parameter to match official app behavior Full Changelog: v1.9.3...v1.9.4 View on GitHub
-
'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.
-
Added acknowledgeTradeProtection() method Full Changelog: v3.48.8...v3.49.0 View on GitHub
- Last week
-
No way to see actual CS2 Inventory count anymore?
xago replied to xago's topic in node-steamcommunity
Thanks, I wasnt aware there was a different contextid for trade protected items. -
Zreex joined the community
-
Yes is a bit difficult to use GetTradeHistory, but for the moment this is the only solution, until steam will solve the endpoint. I just implemented GetTradeHistory to track also the rolled back trades (state == 12) and is working. You just have to get the trade history and find that one with your trade id, and you will get the state and the items also.
-
J442k2 joined the community
-
I checked also that API endpoint you mention and still same state id, 3 (Completed). Now I thing that is something from steam, they didnt update properly the system, or they didnt update this endpoint. I think that node-steam-tradeoffer-manager module is also using this endpoint, so may not be a problem from module, but from steam. As a conclusion, the trade state is updated only on trade history API: https://api.steampowered.com/IEconService/GetTradeHistory/v1
-
DieterB reacted to a post in a topic: Problem enabling 2FA via steam-user – result code 2
-
Probably a GC limitation. You should wait until the item modified event is emitted after adding or removing an item before moving on to the next one.
-
Problem enabling 2FA via steam-user – result code 2
Dr. McKay replied to DieterB's topic in node-steam-user
This is not unexpected. It was always just happenstance that this method worked via steam-user; it uses a method not used by any official Steam app. You should use node-steamcommunity instead, which uses the official method. -
I'm trying to set up two-factor authentication using steam-user, but I keep running into an issue where the enableTwoFactor function consistently fails with result code 2. As a result, I'm not receiving any Activation code via email. I'm logging in with a username and password using steam-user, and once the webSession event is emitted, I start the two-factor setup process. There is currently no Steam Guard enabled on the account, and Steam Mail Guard is also disabled. I assume that if Steam Mail Guard were enabled, it would make sense that the process doesn't work—since Mail Guard is a form of Steam Guard. Is that correct? Interestingly, when I follow the same steps using Steam Desktop Authenticator, everything works as expected. As some other users have already pointed out, could there be an issue with the enableTwoFactor function itself? Or is the problem possibly on my end, in my code? Thanks!
-
DieterB joined the community
-
After the new steam update with the ability to reverse trades, I tested the revert system on a trade, but by calling manager.getOffer(), I am getting the same state id 3 (Completed), instead 12 (Rolled Back). This is the history of my trades using https://api.steampowered.com/IEconService/GetTradeHistory/v1 API. You can see how the original trade has been rolled back with status 12, and the other one is the rollback trade, which gave me back the item. And this is the response from manager.getOffer(). The state didnt change and is still 3. Any solutions for this problem? Is there comming a fix for this steam update for node-steam-tradeoffer-manager module?
-
Nguyen reacted to a post in a topic: community.getConfirmations failed because new popup from Steam on today
-
No way to see actual CS2 Inventory count anymore?
k1osha replied to xago's topic in node-steamcommunity
You're probably trying to search items by context "2" (as all items for CS2 before), but new trade-protected items are in context "16" -
k1osha joined the community
-
nevermind, I am just dumb: after the first request I do update to body but I don't update content-len header
- 1 reply
-
- confirmation
- request
-
(and 2 more)
Tagged with:
-
igor started following buy confirmation
-
Since last nights update using getInventoryContents on your own inventory will only return your inventory without any of the trade protected items. I have 58 items in my inventory but 2 of them are trade protected so calling getInventoryContents with only return a count of 56 items, not 58. Is there any way to see how many CS2 items are in your inventory including trade protected items?
-
Pip started following community.getConfirmations failed because new popup from Steam on today
-
community.getConfirmations failed because new popup from Steam on today
xago replied to Nguyen's topic in node-steamcommunity
Thanks for the code, this works for now, hopefully we can get something similar added to the offical steamcommunity node