-
Posts
3545 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
Question Logging in anonymously and relogging with an account
Dr. McKay replied to lad's topic in node-steam-user
No, bot voting is not something I will support. -
Do need to also check the message if you want it to respond differently to different messages.
-
Question Checking trade url without creating offer.
Dr. McKay replied to jafix's topic in node-steam-tradeoffer-manager
Creating the offer is probably the easiest way to do it. You don't have to send the offer. -
No idea. Seems to work fine here.
-
Sounds like your Steam account is limited.
-
Discussion fastest way sentOfferChanged to be fired?
Dr. McKay replied to Blue's topic in node-steam-tradeoffer-manager
5 seconds should be reasonably safe. 10 seconds is definitely safe. -
Question getExchangeDetails
Dr. McKay replied to tchosniper's topic in node-steam-tradeoffer-manager
The first argument to the callback is status, not receivedItems. -
I'm not sure I follow. What does haven't a manifest enable that you couldn't already do?
- 4 replies
-
- node.js
- node-steam-user
-
(and 4 more)
Tagged with:
-
Discussion fastest way sentOfferChanged to be fired?
Dr. McKay replied to Blue's topic in node-steam-tradeoffer-manager
Lower your poll interval, at the expense of more requests to the Steam API. -
You'll need to Google how to add a network interface for your particular operating system.
-
Question problem with acceptConfirmationForObject()
Dr. McKay replied to Blue's topic in node-steamcommunity
https://steamerrors.com/16 No way to fix Steam timeouts. The only way to make the event faster is to lower your poll interval. -
Question Logging in anonymously and relogging with an account
Dr. McKay replied to lad's topic in node-steam-user
The undefined is coming from this line: console.log("Logged into Steam".green); because green is not a standard property of strings (it's provided by some module). You're getting Not Logged In because you're trying to do web-based stuff before webSession is emitted and subsequently setCookies is called. The earliest safe time to do web-based stuff is right below where you call setCookies. -
There is no way to represent a SteamID as a number in JavaScript, period. If you want to validate an individual SteamID from input, you can use regex: str.match(/^76561\d{12}$/)
-
JavaScript does not have integers. It only has double-precision floating-point numbers, which can only safely represent integers up to 2^53 - 1. Consequently, you can't have a SteamID as an integer, only as a string.
-
Problem with confirmations while using different devices
Dr. McKay replied to 0x737368's topic in node-steamcommunity
Are you using the same modules to confirm trades on both devices? I'd assume you are, but it can't hurt to make sure. If you're using the same modules, code, and account, then there shouldn't be a problem... -
Problem with confirmations while using different devices
Dr. McKay replied to 0x737368's topic in node-steamcommunity
It shouldn't be a problem as long as you aren't also trying to confirm stuff on a phone. -
Question Sending the items one by one, and loops
Dr. McKay replied to IdiotScriptieKid's topic in node-steam-tradeoffer-manager
This won't work because you're calling addMyItems on a single item. You should use addMyItem instead. -
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.