Okie, I have seen a few people asking about keeping their chat logs, screenshots, shortcuts and various other options seperate for the two servers we now have. So, I have written this little windows Batch file to give a very simple menu that will change the directory that PS saves these things in. To get it to work you must have PlaneShift installed in the default location c:\program files\planeshift steel blue\ (most will have). Just copy the text in the code box below into notepad and save it as PlaneShift.bat you can then put this file anywhere you like (Wherever you normally double click to start PlaneShift is a good idea). Double click the file and it will launch a little menu, pick the number of the server you want and it will write the files to either the default place, or to a new folder called planeshift2.
[I have only tested this on windows XP, it probably won't work on ME/9x or vista]
:: PlaneShift.bat
:: Runs PlaneShift using the prefered config files for a specific server
::
@ECHO OFF
cls
ECHO Please choose which configuration you wish to run:
ECHO For laanx.fragnetics.com configuration press 1
ECHO For planeshift.ezpcusa.com configuration press 2
ECHO To quit press 3
set /p Input=Choose an option and press ENTER:
if %Input%==3 goto exit
if %Input%==2 goto ez-ps
if %Input%==1 goto laanx
:laanx
"c:\Program Files\PlaneShift Steel Blue\psclient.exe" -cfgset=PlaneShift.UserConfigPath="%appdata%/planeshift"
GOTO END
:ez-ps
"c:\Program Files\PlaneShift Steel Blue\psclient.exe" -cfgset=PlaneShift.UserConfigPath="%appdata%/planeshift2"
GOTO END
:exit