-
Posts
3629 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
sent Offer remains in state 2
Dr. McKay replied to RavenX86's topic in node-steam-tradeoffer-manager
I'm not sure I 100% understand. Let me clarify a couple things. SteamTrades is what you get back from require('steam-tradeoffer-manager'), yes? Are you calling manager.setCookies anywhere? What's your console output? -
There isn't.
-
You'll have to ask them how they do things.
-
getReceivedItems for sent offers
Dr. McKay replied to adammo's topic in node-steam-tradeoffer-manager
You can't get the new item IDs for sent items, no. -
getUserDetails(callback) - suggestion
Dr. McKay replied to Gilroy's topic in node-steam-tradeoffer-manager
It's unfortunately not possible. getUserDetails just loads the offer UI page, which is inaccessible once you're unable to act on the offer (e.g. you send it [outgoing] or you accept it [incoming]). -
Most people use the steamcommunity.com JSON inventory endpoint: https://steamcommunity.com/profiles/STEAMID/inventory/json/730/2/node-steamcommunity has a method for this. Example: community.getUserInventory("[U:1:46143802]", 730, 2, false, function(err, inventory) { console.log(inventory); });
-
I believe this is caused by your calling checkConfirmations without having started the confirmation checker first. This isn't supported behavior. Do you want it to be?
-
It's the "region code" assigned to you by Steam. Changing it is useless.
-
How can I use node-csgo with node-steam-user?
Dr. McKay replied to timgfx's topic in node-steam-user
I want to know what you're using node-csgo for. -
Please update to steam-user v3.10.0 and this should be fixed.
-
getUserDetails(callback) - suggestion
Dr. McKay replied to Gilroy's topic in node-steam-tradeoffer-manager
Sure thing. -
That looks fine to me.
-
Getting error when executing getEscrowDuration method
Dr. McKay replied to kaikash's topic in node-steam-tradeoffer-manager
It was, he's probably still on v1 for whatever reason. -
Question about sending a trade offer
Dr. McKay replied to AbrarK's topic in node-steam-tradeoffer-manager
Sounds like it's neither failing nor going into status "sent". As you're sending items, the offer requires confirmation and so the status will be "pending". -
How can I use node-csgo with node-steam-user?
Dr. McKay replied to timgfx's topic in node-steam-user
Can I ask what you're trying to do with it? -
Getting error when executing getEscrowDuration method
Dr. McKay replied to kaikash's topic in node-steam-tradeoffer-manager
Yes, it's because you're friends. The trade URL is wrong. -
getReceivedItems(Empty) how to recheck ?
Dr. McKay replied to MAKC's topic in node-steam-tradeoffer-manager
You need to do it yourself. -
You're treating the symptom and not the problem if you do that. The problem, as given by the HTTP status code, is that you're making too many requests. Slow down.
-
I'm pretty sure it means that you've made too many requests in a short time, and consequently your IP has been temporarily blocked.
-
getReceivedItems(Empty) how to recheck ?
Dr. McKay replied to MAKC's topic in node-steam-tradeoffer-manager
You... recheck it again later. -
Question throw Error vs emit Error in steam-user
Dr. McKay replied to Camelia's topic in node-steam-user
I throw Errors in steam-user when you do something that you just shouldn't. For example, there are no cases where you should be trying to log on when you're already logged on. An Error being thrown basically means that you failed a precondition. For example, in the case quoted here, you need to check if you're already logged on before you attempt to log on again. -
Client = new CMClient(), GC = new SteamGC(client, 730); See a problem in the capitalization here?
- 6 replies
-
- node.js
- node-steam-user
-
(and 2 more)
Tagged with:
-
My mistake, update to v1.1.1 and this is fixed.
-
Are you getting some kind of error?