I just explored a (new) handy way to start multiple clients without copying the entire kal folder. I haven't really tested it very well but the following trick should work both on int and pserver:
At first you've to create a new .bat-file - just let's name it "mutliclient.bat".
Then you've to edit the file and paste the following code (of course you've to adapt the Source and Destination Variables):
Code:
@echo off & setlocal
Set "Source=C:\InixSoft\KalOnline"
Set "Destination=C:\InixSoft\KalOnlin3"
IF NOT EXIST "%Destination%" MD "%Destination%"
@FOR /d %%x IN ("%Source%\*") do @(
mklink /d "%Destination%\%%~nx%%~xx" "%%x"
)
@FOR %%x IN ("%Source%\*") do @(
mklink /h "%Destination%\%%~nx%%~xx" "%%x"
)
Use it at your own risks - as mentioned I didn't really test it very well yet. I usually don't use bat scripts so it could be that the 'code' is a bit ugly. :P
For further information you should start reading about the mklink command and symbolic/hard links.
Greetings,
Mahatma






