Jump to content
McKay Development

kaikash

Member
  • Posts

    22
  • Joined

  • Last visited

kaikash's Achievements

  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. As I know you are connected to opskins. And opskins pays to steam analyst for api. So, if it is not a secret, how much does it cost?
  3. As I understood analyst price is taken directly from steamanalyst.com.
  4. Hello! Is it possible to get analyst price from https://opskins.com/?loc=price_lookup&app=730_2 as API? Or how can I calculate analyst price from https://api.opskins.com/IPricing/GetPriceList/v1/?appid=730 Best wishes, Gleb
  5. 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.
  6. Yeah, as I know if I don't pass steamcommunity instance in tradeofferManager constructor, it will create own and the event won't be emitted.
  7. Will I get steamcommunity sessionExpired event in tradeoffer-manager when tradeoffer fails if I pass my steamcommunity instance in constructor of tradeoffer-manager?
  8. 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!
  9. Is this method only returns confirmations? Will it confirm them automatically?
  10. Hello, Bot did send trades, but steam was down and bot didn't confirm them Later, when steam cames back, how to confirm all that trades?
  11. I need to call isGlitched method when tradeoffer's already accepted Do you think duplicate method will work?
  12. Hello, There is a method isGlitched(). If this method return true how to "reload" the offer to make it "not glitched"? Best wishes, Gleb
×
×
  • Create New...