Jump to content
McKay Development

Multiple clients (bots)


mouzes1

Recommended Posts

I am wondering what is the bast way to manage multiple bots. Currently I am creating multiple instances for example: 

 

var client1= new SteamUser();
// Sign into Steam
client1.logOn({
    accountName: config.client1.username,
    password: config.client1.password,
    twoFactorCode: SteamTotp.generateAuthCode(config.client1.secret)
});
 
var client2= new SteamUser();
// Sign into Steam
client2.logOn({
    accountName: config.client2.username,
    password: config.client2.password,
    twoFactorCode: SteamTotp.generateAuthCode(config.client1.secret)
});
 
Is this the best way to do that? 
 
Also do i need apy key for each bot? To retrieve the api key from steam i have to make purchase for 5$, but if I have 100 bots, have to pay 500$. 
Steam -> "You will be granted access to Steam Web API keys when you have games in your Steam account."
 
 
If i try to login and add cookies i have this error: 'error: Unable to set trade offer cookies: Error: Access Denied'
 
 

 

Link to comment
Share on other sites

Yes, that's the best (and only) way to do it.

 

You need an API key if you want to use the WebAPI. Based on your error message I assume that you're using steam-tradeoffer-manager, which does need an API key and consequently won't work with limited accounts. So yes, you'll need to spend $5 per bot.

Link to comment
Share on other sites

  • 1 month later...
  • 6 months later...

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...