Absolutely possible, my friend.
I use multiple accounts on the same VM (not concurrently, of course) so I can switch between them. Here is a way to use BS with different google accounts on the same machine. It can easily be done programmatically, too.
Instructions:
Note: you need to use a separate bot installation for each account so you can have separate configs, just create several copies of whatever dir that you placed your bot files into.
I use multiple accounts on the same VM (not concurrently, of course) so I can switch between them. Here is a way to use BS with different google accounts on the same machine. It can easily be done programmatically, too.
Instructions:
- Stop BS (right-click on taskbar's icon for BS, Quit.
- In Explorer, open c:\ProgramData\BlueStacks\Android\
- Rename the directory called Data.sparsefs to Data1.sparsefs
- Copy that new directory, and rename that copy Data2.sparsefs (more if you have additional accounts
- In notepad, create a new batch file called StartBS.cmd with the following contents:
* Make sure you have the appropriate Program Files path for your system (x86, or plain).Code:@ECHO OFF
SET num=1
IF NOT "%1"=="" (
SET num=%1
)
"C:\Program Files (x86)\BlueStacks\HD-Quit.exe"
rd c:\ProgramData\BlueStacks\Android\Data.sparsefs
mklink /J c:\ProgramData\BlueStacks\Android\Data.sparsefs c:\ProgramData\BlueStacks\Android\Data%num%.sparsefs
"C:\Program Files (x86)\BlueStacks\HD-RunApp.exe" -p com.supercell.clashofclans -a com.supercell.clashofclans.GameApp
- Save the batch file in the C:\ProgramData\BlueStacks\Android\ directory.
- On your Desktop, create a shortcut to that batch file, and in the Properties for the shortcut, put:
C:\ProgramData\BlueStacks\Android\StartBS.cmd 1
- Name the shortcut whatever you want - "CoC-myaccountname".
- Rinse and repeat with another shortcut to the same batch file:
C:\ProgramData\BlueStacks\Android\StartBS.cmd 2
- Name it whatever you want - "CoC-myauntsdogsaccountname", for instance.
- Profit!
Note: you need to use a separate bot installation for each account so you can have separate configs, just create several copies of whatever dir that you placed your bot files into.