Jump to content
McKay Development

kaikash

Member
  • Posts

    22
  • Joined

  • Last visited

Posts posted by kaikash

  1. Hello, DoctorMcKay!

     

    I'm interested in the best practice for high load with steam.

     

    For example, I need to load 20 inventories at the same time. I've tried to use Tor as Socks5 proxy, but inventory loading through tor is quite slow.

    What proxy do you use in OPskins and what can you advise?

     

    Thanks!

  2. You should make function and call it again when it fails.

     

    manager.on('sentOfferChanged', function(offer, oldState) {

      if(offer.state == 3) {

        handleNewItems(offer);

      }

    });

     

    var handleNewItems = function(offer) {

      offer.getReceivedItems(function(err, items) {

        if(err) return handleNewItems(offer);

       // code

      });

    };

     

     

    Also, there could be a problem because cookies expires.

  3. Hello!

     

    I keep getting an error when I'm doing:

     

    manager.getEscrowDuration('76561198016511109', 'EMv1iKH8', function(err, daysTheirEscrow, daysYourEscrow) {

    if(err) console.log(err);

    });

     

    And getting: Error: This Trade URL is no longer valid for sending a trade offer to noname.

    But the funny thing is that https://steamcommunity.com/tradeoffer/new/?partner=324417112&token=EMv1iKH8 tradeurl works fine

     

    What am I suppose to do?

     

    Thanks!

     

×
×
  • Create New...