Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3398
  • Joined

  • Last visited

Everything posted by Dr. McKay

  1. It works the same way as for trade confirmations.
  2. Did you copy the sentry file from your Steam installation to use with node-steam-user?
  3. addMyItems will only work with an array of multiple items (which is what inventory is). You need to use addMyItem to add a single item (e.g. a single element from inventory). The inventory[1] syntax retrieves element #1 from the inventory array (an array is essentially a list). Note that since numbering starts at 0, element #1 is the second ordinal element.
  4. That offset-retrieval code won't work. You need to wait for the callback before you try to do anything with that offset.
  5. Thanks. Looks like there's an expiry time in those packages which is being ignored. Let me take a look at the code.
  6. You probably never called setPersona on the node-steam-user to set it online.
  7. You can never accept an offer you create. Accepting is an action that can only be done by the trade recipient. If this happens when accepting incoming trades, that means they aren't active. They've already been accepted or declined or canceled.
  8. I'd avoid outright saying it. Just say that you have a lot of confirmations on your device for trades that no longer exist, and give that error message that you see in the title.
  9. Please dump your licenses property to JSON and either post it here or PM it to me.
  10. I honestly have no idea what you're asking. The statistics in Steam groups aren't always up-to-date or correct.
  11. I don't think family sharing applies since it's per-machine. Are you sure that they aren't just free apps?
  12. Dr. McKay

    access denied

    I'm not available for work.
  13. If Steam is down, you can't log in. I don't understand where the confusion is. Wait for Steam to come back online, and the client will reconnect on its own and emit webSession.
  14. If you're using node-steam-user, it will automatically reconnect when it gets disconnected. You can handle the event where you need a Steam Guard code by setting the promptSteamGuardCode option to false and handling the steamGuard event.
  15. Dr. McKay

    access denied

    You need to call webLogOn with no arguments, and call it on the same Steam client as the one that's already connected to Steam.
  16. Dr. McKay

    access denied

    Read the second half of this.
  17. That's the correct method to use, but you can't use it if you aren't currently connected to Steam (e.g. because Steam is down). That's what's throwing that error.
  18. The code in your first post will absolutely work. Regarding your second post, are you passing the 64-bit SteamID as a string instead of a number? JavaScript can't handle integers that are that big.
  19. You're trying to relog the web session while Steam is down. Don't do that, and just wait for Steam to come back. It will emit webSession automatically once it reconnects successfully.
  20. Dr. McKay

    access denied

    Has your web session expired?
×
×
  • Create New...