Jump to content
McKay Development

Recommended Posts

Posted (edited)

I'm writing a farm and I have about 50 steam accounts. At the moment, it looks like this: I made a store where I put each logged-in account, then I use the steamid to access the desired one and perform an action.

const BotInstance = new Bot('login', 'password', 'shared_secret', 'identity_secret', 'steamid');
const newBot = await accountsStore.add('steamId', BotInstance);
newBot.login();
 
const getBot = await accountsStore.get('steamId');
getBot.addFriend('friendSteamId');


How would it be more efficient to leave it as it is or implement it all through a cluster?
what kind of power is needed to support such a large number of accounts? and won't I have a problem if they're all on the same ip?

Edited by vindisel

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