Jump to content
McKay Development

Recommended Posts

Posted

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'
 
 

 

Posted

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.

Posted (edited)

Thanks. Yes I am using steam-tradeoffer-manager, but what are my options if i don't want to pay that price, can i use some other module? My goal is to send and receive trades i don't want to use market.

Edited by mouzes1
Posted

You have no options with steam-tradeoffer-manager. There might be some modules that scrape the HTML instead, but you're in for a really bad time if you try that. I don't know what it's called or if it's maintained.

  • 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...