-
Posts
3591 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
\n
-
cannot set UI mode / no event triggered when receiving message
Dr. McKay replied to pekinese's topic in node-steam-user
You're listening for events that steam-user emits on a steamcommunity instance. -
You're pushing the data correctly, you just seem to not understand async. Calling market.getItemPrice is essentially requesting that it retrieve the item price and then let you know when it's finished. You then return immediately, without waiting for the callback.
-
Check if a offer sent by the bot was accepted
Dr. McKay replied to Nacho's topic in node-steam-tradeoffer-manager
Listen for the sentOfferChanged event and see if the new state is Accepted. -
An HTTP/S proxy over IPv6? Maybe. I don't know.
- 12 replies
-
- node.js
- node-steam-user
-
(and 1 more)
Tagged with:
-
Make sure your server is able to access api.steampowered.com.
-
Socks proxies are currently not supported. You'll need to use an HTTP proxy. I don't believe I've pushed support for HTTPS proxies (HTTP is just as secure for this case). Example: const Steam = require('steam-client'); const SteamUser = require('steam-user'); let client = new Steam.CMClient(); let user = new SteamUser(client); client.setHttpProxy("http://user:[email protected]:12345"); user.logOn(/* options go here */);
- 12 replies
-
- node.js
- node-steam-user
-
(and 1 more)
Tagged with:
-
logon when steam servers down / reconnecting
Dr. McKay replied to Biscwis's topic in node-steam-user
It will already retry connection until either it succeeds or error gets emitted. -
No.
- 3 replies
-
- node.js
- node-steamcommunity
- (and 4 more)
-
Question I asked a question on classid_instanceid
Dr. McKay replied to MICE's topic in node-steam-tradeoffer-manager
classid and instanceid can change on an item, yes. -
Yes, it's rate-limited by Steam. I can't tell you what the limit is, exactly, as I don't work for Valve.
- 3 replies
-
- node.js
- node-steamcommunity
- (and 4 more)
-
No. If the error event is emitted, it's always fatal and it will never retry on its own.
- 1 reply
-
- node.js
- node-steam-user
-
(and 1 more)
Tagged with:
-
loadInventory is deprecated and won't be updated. If Steam is reporting "Failure" then there's not really any way to know for sure if it means that the user doesn't have that particular inventory or if there was truly a failure somewhere. If the user has ever owned an item for that game and thus the inventory exists but is empty, it will return an expected empty response (no error, empty arrays).
-
the accept method is to accept an incoming offer, not to confirm an outgoing one. The documentation is clear about this. You can use node-steamcommunity to confirm trades.
-
limit to manager.getOffer
Dr. McKay replied to Gulshan Jangid's topic in node-steam-tradeoffer-manager
Not really, but don't spam it. -
offer id undefined when trade is accepted
Dr. McKay replied to Gulshan Jangid's topic in node-steamcommunity
Show your code. -
No. Steam does not support IPv6 at this time.
-
You're not meant to use steam-client on its own. You should use it alongside something like steam-user. You can still use it with WebSockets and proxies, doing something like this: const Steam = require('steam-client'); const SteamUser = require('steam-user'); let client = new Steam.CMClient(Steam.EConnectionProtocol.WebSocket); client.setHttpProxy("http://user:[email protected]:12345"); let user = new SteamUser(client); // use user normally...
- 1 reply
-
- node.js
- node-steam-user
-
(and 1 more)
Tagged with:
-
Yes, you can edit the summary.
-
No, showcases can't be edited at the moment.