In line with the other tutorial Multiple Bot in 1 Openkore (Português / English), I have created a more easy way to run multiple bots in just a double click or enter.
What will you need:
- Windows OS
- Openkore
- Different config folder for each bot and different logs if you like
What will help you understand this more:
- Knowledge in batch file programming (*.bat)
You can download the openkore here h-t-t-p-:-/-/-c-o-l-l-e-c-t-s-k-i-n-.-c-o-m-/-o-p-e-n-k-o-r-e-/ (remove the dash, I have no privilege yet)
Okay, so we need to know where did you put the openkore folder and where did you put the config files. For my case this is my folder structure
D:\openkore
'-> config
'->first
'->second
'->third
'->Kore (this is where all the openkore functionality is located)
'->logs
'->first
'->second
'->third
If you are running your openkore in windows vista or higher:
create a new text file inside the kore folder, and change its extension to .bat in my case I named it batch_one.bat
inside the batch_one.bat, add this lines:
start D:\openkore\Kore\start.exe --control="D:\openkore\config\first"
start D:\openkore\Kore\start.exe --control="D:\openkore\config\second"
start D:\openkore\Kore\start.exe --control="D:\openkore\config\third"
additionally, if you want separate folder for your logs
start D:\openkore\Kore\start.exe --control="D:\openkore\config\first" --logs="D:\openkore\logs\first"
start D:\openkore\Kore\start.exe --control="D:\openkore\config\second" --logs="D:\openkore\logs\second"
start D:\openkore\Kore\start.exe --control="D:\openkore\config\third" --logs="D:\openkore\logs\third"
Then save it. This will fail if you create it anywhere because of some annoying windows security feature. You can use relative address inside the bat file if you like, but I prefer to use absolute to prevent loading wrong config (since I usually versioned my configs)
If you are running your openkore in windows xp, you can create the batch file anywhere you like.
Hope this will help other people.