05-05-2012, 11:47 AM
One problm with this code :
Process MyProcess = new Process();
MyProcess.StartInfo.FileName = "Server\\GameServer\\Gameserver.exe";
MyProcess.StartInfo.WorkingDirectory = "Server\\GameServer\\";
MyProcess.Start();
It cant find the GameServer^^
i tried to set workingDir to this "Server\\GameServer\\Gameserver.exe" and then it started the gs but it not loading the stuff^^
With this Start the GS but again Loading errors:
Process MyProcess = new Process();
MyProcess.StartInfo.FileName = "Server\\GameServer\\Gameserver.exe";
MyProcess.StartInfo.WorkingDirectory = "Restart\\Server\\GameServer\\Data\\";
MyProcess.Start();
[/Code]

