-
Posts
3591 -
Joined
-
Last visited
Everything posted by Dr. McKay
-
Yes.
-
No, but there's no reason not to.
-
Question getProductChanges will not return all changes
Dr. McKay replied to trixy's topic in node-steam-user
Yes, Steam changed it some time ago so that you can't get more than I think 5000 or so changenumbers behind. I suppose I should update that documentation. -
Use update. That will update the offer from the API. offer.update(function(err) { if (err) { console.log(err); } else { // now the offer is fresh from the WebAPI } });
-
readFile gives you a Buffer, not a string. You need to stringify it using toString('utf8').
-
That's normal. As of version 3 (if I remember correctly), npm flattens dependencies by putting them all in the first-level node_modules where possible. This both helps to avoid duplicate installations, and prevents issues where paths get too long.
-
I don't believe you could do that without editing the module's code directly. If you run the bot and send an offer manually, it'll trigger unknownOfferSent.
-
Question 'TypeError: listener must be a function' on SteamUser.logOff()
Dr. McKay replied to elixir's topic in node-steam-user
It might be a better idea to throw a more descriptive error, but the behavior is pretty much undefined for calling any method (except for offline ones like settings and logon) while logged off. -
You should use the API to get details about trade offers. Scraping the sent offers page is asking for trouble. Also, there's a getOffersContainingItems method in the latest version anyway.
-
Why are you scraping your sent offers page?
-
If you're getting a "Not Logged In" error, then you're not logged in and you should relog.
-
Question 'TypeError: listener must be a function' on SteamUser.logOff()
Dr. McKay replied to elixir's topic in node-steam-user
The only way I was able to reproduce this was by trying to log off without first being logged on. Please make sure you aren't doing that. -
Yes.
-
You can either use steam-totp with your shared_secret to provide the code to logOn as twoFactorCode, or you can use a loginKey. Both of these are documented on the readme.
-
Sure, add a bad item to the offer.
-
Send and receive offers using what? steam-tradeoffer-manager?
-
You can use steam-totp along with your shared_secret.
-
Yes.
-
Yes.
-
"Modules" are self-contained bits of code. Each module (generally) performs a specific task. In essence, "modules" are Node's version of "libraries". They're pretty much the cornerstone of Node so yes, they're rather important. You can't make a bot without using at least the built-in modules (like net which provides network communication). You could definitely make a bot using only the built in modules, but only if you're insane. You'd have a lot of work ahead of you if you decided to make a bot without using any third-party modules. For example, the steam-user module exposes an interface with which you can log into and interact with Steam. You could do that yourself, but then you'd need to implement the crypto, protobuf, protocol, and more yourself. Not a small task by any measure.
-
Yes.