Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3629
  • Joined

  • Last visited

Everything posted by Dr. McKay

  1. Sounds like you don't have a network interface set up for that IP.
  2. You're using node-steam-tradeoffers, which I can't support.
  3. 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.
  4. You aren't calling any changeEmail function, you're only listening for a (nonexistent) changeEmail event.
  5. You can also connect to MySQL using Node: https://www.npmjs.com/package/mysql
  6. 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.
  7. 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.
  8. It may not have anything to do with an avatar, but I couldn't tell you why there's a discrepancy.
  9. 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.
  10. The error seems to be originating in the dota2 module, which I can't support.
  11. Currently, profile showcases aren't really supported.
  12. manager.offer doesn't exist. You want this: manager.on('receivedOfferChanged', (offer) => { community.postUserComment(offer.partner.toString(), 'Test'); });
  13. You need to call community.setCookies inside of SteamUser's webSession event in order to get steamcommunity to use a login session.
  14. You need quotes around receivedOfferChanged. That should have just crashed without doing anything.
  15. 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.
  16. webLogOn() and wait for the webSession event.
  17. 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.
  18. 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.
  19. You need version 6 or later.
  20. What version of node are you running?
  21. It's not presently possible, but I can try to look into it soon.
  22. Because specifying a language makes the module fetch item descriptions, which involves extra requests.
  23. Have you set a language in your constructor options?
  24. It's happening in getUserInventoryContents. That means that the Steam inventory servers are busy and you'll need to try again later.
×
×
  • Create New...