Jump to content
McKay Development

Kokoman111

Member
  • Posts

    9
  • Joined

  • Last visited

Kokoman111's Achievements

  1. This somehow flipped the entire situation around -> Now Bot #1 takes ~10s to confirm while Bot #2 takes much longer https://gyazo.com/61811969190c631b9d2898897657731a This is super weird, but I guess there's something I'm still missing I did however made sure that Both Bots confirm outgoing offers
  2. Hey, so I have 2 bots trading items back to back Bot #1 takes 30 seconds to confirm a trade while Bot #2 takes 5 seconds What I want to happen is to minimize the time it takes to accept trades on Bot #1 Here's my constructor let client = new SteamUser(), manager = new TradeOfferManager({ "language": 'en', "steam": client, "pollInterval": "5000", "cancelTime": "1800000" }), community = new SteamCommunity(); // Bot #2 let client2 = new SteamUser(), manager2 = new TradeOfferManager({ "language": 'en', "steam": client2, "pollInterval": "5000", "cancelTime": "1800000" }), community2 = new SteamCommunity(); Any Ideas why the difference is so high between these 2 bots? They're pretty much using the same code across the script Also pollInterval is 5s in both.. Also for question #2: Is it okay to use this event for confirmations? community.on("newConfirmation", (CONF) => { community.acceptConfirmationForObject(CONFIG.Bot1.IDENTITYSECRET, CONF.id, (ERR) => { if (ERR) { console.log("## An error occurred while accepting confirmation: " + ERR); } }); });
  3. Hey, is it possible to retrieve these values using the npm's on this forum? or will I need an API? Does any1 knows of any? thank you!
  4. It's a level bot, and when the inventory gets too big the bot will crash I came up with a solution to simply scan the entire inventory & compare assetid's & then retrieve the name but that's gonna be quite a heavy task, so I was wondering if there's another way
  5. Hey, I'm trying to retrieve the items im getting in trades, but problem is I can't do that when my language is removed from my client constructor let client = new SteamUser(), manager = new TradeOfferManager({ "steam": client, "pollInterval": "10000", "cancelTime": "1800000" }), Is there a work around? I had to remove language, and adding it back isn't an option
×
×
  • Create New...