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);
}
});
});