-
Posts
3545 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
Question Sending multiple trade instead of one
Dr. McKay replied to rQwk's topic in node-steam-tradeoffer-manager
Show your code please. -
I don't think you can get from Steam the SteamID of the server a player is on, but if you can obtain their server's IP (which I think you can't do for CS:GO) then you can ascertain the SteamID from that.
-
Sure would be nice to know what error.
-
Question How to bypass inviteToGroup restriction [2k17]
Dr. McKay replied to MaSTeR's topic in node-steam-user
Well yeah, that's how you "bypass" needing to be friends with someone to invite them to your group.... you become friends with them. That's not a bypass, that's doing it how you're supposed to do it. -
Question How to bypass inviteToGroup restriction [2k17]
Dr. McKay replied to MaSTeR's topic in node-steam-user
You don't. -
Please read the documentation, specifically the options.
-
It timed out while contacting Steam. That happens sometimes. Either Steam is having trouble or your network is having trouble.
-
Question about pollInterval and node-steam-user
Dr. McKay replied to Axle's topic in node-steam-tradeoffer-manager
No, timed polling remains enabled (unless you disable it manually). Passing a SteamUser just triggers polls more quickly after specific actions happen. -
addMyItem takes one argument, which should be an object.
-
Question Passport Steam login and steamcommunity
Dr. McKay replied to spenser_l's topic in node-steamcommunity
No, "sign in through Steam" doesn't provide any kind of access to the user's Steam account. All it does is give you a verified SteamID. -
Question Send/receive messages to/from non-friends
Dr. McKay replied to Kim's topic in node-steam-user
Yeah, that should work. -
Question Send/receive messages to/from non-friends
Dr. McKay replied to Kim's topic in node-steam-user
You should be able to send messages to non-friends if you're in a group chat with them, but that's about it I think. -
Question I need to handle some concurrency ?
Dr. McKay replied to Unsigno's topic in node-steam-tradeoffer-manager
There's no concurrency concern with sending offers, but if you send offers too frequently (or you send too many offers) then Steam will start limiting you. You're limited to 30 total active outgoing offers, and 5 active outgoing offers to the same recipient. There are also request rate-limits. -
Question I need to handle some concurrency ?
Dr. McKay replied to Unsigno's topic in node-steam-tradeoffer-manager
The createOffer method doesn't do anything on the network. It just creates a new object in memory, which you can add items to and set properties on. Nothing of value actually happens until you call offer.send(). So that means you can call createOffer as many times as you want. You could call it a million times in a second if you wanted and nothing would break. Of course, sending offers that frequently isn't gonna work. -
How to get inventory contents of a steamuser
Dr. McKay replied to HeilShuckle's topic in node-steam-user
-
Question how to get message from my trade offer
Dr. McKay replied to Mad_F12's topic in node-steam-tradeoffer-manager
Just offer.message. -
That's just one of those Steam errors that happens. Slowing down may help, and it may not.
-
How to get inventory contents of a steamuser
Dr. McKay replied to HeilShuckle's topic in node-steam-user
community = new SteamCommunity(); community.login({"accountName": "username", "password": "password", "twoFactorCode": "ABCDE"}, (err, sessionID, cookies, steamguard, oAuthToken) => { if (err) { throw err; } community.getUserInventoryContents("[U:1:46143802]", 730, 2, true, (err, inventory) => { if (err) { throw err; } console.log(inventory); }); }); -
How to get inventory contents of a steamuser
Dr. McKay replied to HeilShuckle's topic in node-steam-user
Please read the documentation. It's fairly straightforward.