Koncealed Posted June 20, 2017 Report Posted June 20, 2017 Hello, I am trying to run a program that runs currently 2 Steam Accounts. One main, and one BOT. I'm trying to make a SteamTradeFarm. Where it will BOT up the amount of trades done. So once I send the trade offer I want to control the other account and accept the trade and confirm the trade. The problem is this mainClient.on('webSession', function (sessionID, cookies) { manager.setCookies(cookies, function (err) { if (err) { console.log(err); process.exit(1); return; } console.log("Got API key: " + manager.apiKey); }); community.setCookies(cookies); community.startConfirmationChecker(30000, config.accounts.account1.identity_secret); // Checks and accepts confirmations every 30 seconds}); With this community does not specify an account. So is this okay should I just also run a botClient even for webSession and will it also be okay, because since if you are checking with community.checkConfirmations() will it check both or just 1? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.