mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
Update ServerStarter.cs
This commit is contained in:
parent
f38f6320f4
commit
d5e7c97633
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
using HISP.Game.Chat;
|
||||
using HISP.Game.Chat;
|
||||
using HISP.Game.Horse;
|
||||
using HISP.Game.Items;
|
||||
using HISP.Game.Services;
|
||||
|
@ -63,7 +63,9 @@ namespace MPN00BS
|
|||
#if OS_WINDOWS
|
||||
string executable = Path.Combine(Directory.GetCurrentDirectory(), "flashplayer", "WINDOWS", "flash.exe");
|
||||
#elif OS_LINUX
|
||||
string executable = Path.Combine(Directory.GetCurrentDirectory(), "flashplayer", "LINUX", "flash.elf");
|
||||
string executable = Path.Combine(Directory.GetCurrentDirectory(), "flashplayer", "LINUX", "flash.elf");
|
||||
#elif OS_MACOS
|
||||
string executable = Path.Combine(Directory.GetCurrentDirectory(), "flashplayer", “MACOS”, "flash.app”, “Contents”, “MacOS”, “Flash Player”);
|
||||
#else
|
||||
MessageBox.Show(null,"ERROR: No path for flash projector specified on this platform", "Porting error", MessageBoxButtons.Ok);
|
||||
string executable = Path.Combine(Directory.GetCurrentDirectory(), "flashplayer", "WINDOWS", "flash.exe");
|
||||
|
@ -78,6 +80,8 @@ namespace MPN00BS
|
|||
|
||||
#if OS_LINUX
|
||||
clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle_mapfix.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
|
||||
#elif OS_MACOS
|
||||
clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle_mapfix.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
|
||||
#else
|
||||
clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue