-
Posts
3629 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
Sounds like you don't have a network interface set up for that IP.
-
Question How many times I can cancel offer?
Dr. McKay replied to jensej's topic in node-steam-tradeoffer-manager
You can only cancel an offer once. There's no limit on how many offers you can cancel on your account, though. If you send and cancel a million offers they might take notice. -
You aren't calling any changeEmail function, you're only listening for a (nonexistent) changeEmail event.
-
Correct.
-
Question Is it possible to combine steam-user and steamcommunity?
Dr. McKay replied to 0x737368's topic in node-steamcommunity
That's the correct way to do it. Make sure you aren't trying to do any authenticated stuff before the webSession event gets emitted. -
There isn't currently a way to get incoming friend requests using node-steamcommunity. Is this something you need? If you're also using node-steam-user then you can get invites from there.
-
Question Logging in anonymously and relogging with an account
Dr. McKay replied to lad's topic in node-steam-user
It may not have anything to do with an avatar, but I couldn't tell you why there's a discrepancy. -
That's correct. There's no way, using node-steam-user, to decrypt filenames without parsing the manifest. I don't have any plans to support this as I don't see a valid use-case for that.
- 4 replies
-
- node.js
- node-steam-user
-
(and 4 more)
Tagged with:
-
The error seems to be originating in the dota2 module, which I can't support.
-
Question 'editProfile' and Profile Showcase
Dr. McKay replied to Vanilla's topic in node-steamcommunity
Currently, profile showcases aren't really supported. -
How to make manager do something when trade succeded
Dr. McKay replied to xLeeJYx's topic in node-steam-tradeoffer-manager
manager.offer doesn't exist. You want this: manager.on('receivedOfferChanged', (offer) => { community.postUserComment(offer.partner.toString(), 'Test'); }); -
Question Logging in anonymously and relogging with an account
Dr. McKay replied to lad's topic in node-steam-user
You need to call community.setCookies inside of SteamUser's webSession event in order to get steamcommunity to use a login session. -
How to make manager do something when trade succeded
Dr. McKay replied to xLeeJYx's topic in node-steam-tradeoffer-manager
You need quotes around receivedOfferChanged. That should have just crashed without doing anything. -
Question Logging in anonymously and relogging with an account
Dr. McKay replied to lad's topic in node-steam-user
You need to wait for the disconnected event to know that you're logged off. You can't log back on using the same object until then. My suggestion is to just create a new SteamUser object for each login. -
Issue to relog for bot, especially on tuesday maintenance
Dr. McKay replied to nikoF's topic in node-steam-user
webLogOn() and wait for the webSession event. -
Version 6 is not a downgrade. It's 6.0.0, which is a couple years newer than when 0.10 first came out. Later versions of node typically aren't available in repositories. You'll need to install it yourself. If you're on Ubuntu x64, you can use this script: https://www.doctormckay.com/installnode.sh It probably works on other distros too (x64 only) but I've only tested it on Ubuntu.
-
How to make manager do something when trade succeded
Dr. McKay replied to xLeeJYx's topic in node-steam-tradeoffer-manager
If you're accepting incoming offers, listen for the receivedOfferChanged event and do something when the state is Accepted. If you're sending offers, listen for the sentOfferChanged event and do something when the state is Accepted. -
You need version 6 or later.
-
What version of node are you running?
-
It's not presently possible, but I can try to look into it soon.
- 7 replies
-
- node.js
- node-steam-user
-
(and 2 more)
Tagged with:
-
Because specifying a language makes the module fetch item descriptions, which involves extra requests.
-
Have you set a language in your constructor options?
-
It's happening in getUserInventoryContents. That means that the Steam inventory servers are busy and you'll need to try again later.