Jump to content
McKay Development

Dr. McKay

Administrator
  • Posts

    3658
  • Joined

  • Last visited

Everything posted by Dr. McKay

  1. Not at the moment, but I can look into it.
  2. In the next release (expected in the next day or so), it will be possible to easily filter your owned apps to include or exclude shared licenses, but I'm not sure what you mean by "including ones excluded from sharing". Are you saying that licenses from a shared library are included, even if that particular app is excluded from game sharing?
  3. It's far more trouble than it would be worth.
  4. Not as far as I'm aware. They both accomplish the same task so Valve doesn't have a need to return both.
  5. Either your secret is wrong or your clock is wrong.
  6. No, there isn't any native support in the library for that. It would probably be easier for you to just manually send the request and parse the JSON yourself.
  7. Yeah, time_historical_cutoff is used to include non-active offers that have updated since the provided time, when you pass active_only.
  8. Native support for what, filtering by item name? No.
  9. You can use the count URL parameter to filter how many items are returned, like this: https://steamcommunity.com/inventory/76561198006409530/753/6?count=1
  10. All active offers should always be returned when you pass active_only, regardless of your other query parameters.
  11. When you pass data through IPC like that, it gets serialized and then unserialized on the other end. The nature of a SteamCommunity object actually being a SteamCommunity object doesn't survive that serialization.
  12. Your assumption is correct. You could either use IPC to call to the master process and do your steamcommunity work there, or use IPC in the master process to the worker processes to share your login cookies.
  13. I don't know what you think appinfo is, but it's not what you're describing.
  14. The only thing that happens when a session expires is the sessionExpired event gets emitted (potentially multiple times). There isn't any other way to tell.
  15. That code all looks fine, but bear in mind that steamcommunity doesn't set the steamID property to null when the session ends like steam-user does.
  16. If what you're doing is working, then there probably isn't any actual rate-limit being imposed. But I would definitely use a short delay rather than blasting all the messages at once, since that could potentially trip some rate-limiting.
  17. Yeah, just use the GetFriendList WebAPI method.
  18. Can you verify the sessionExpired event is actually getting emitted? It can only get emitted if the module can verify with certainty that your session isn't valid anymore; getting a private inventory response isn't sufficient verification.
  19. Not really. In theory, the code to support this could be written, but I don't see what useful purpose it would serve. And you wouldn't be able to report as a VAC-secured server.
  20. About all you could do is repeatedly send the MOTD message, but that would presumably make the page reload every time.
  21. You would need to root/jailbreak.
  22. You need to filter the inventory to find the "Gems" item, and set its amount property to 1.
  23. You can't get old appinfo.
×
×
  • Create New...