diff --git a/launch-dedicated.sh b/launch-dedicated.sh index 780770d769..51285222df 100755 --- a/launch-dedicated.sh +++ b/launch-dedicated.sh @@ -1,4 +1,5 @@ #!/bin/bash +# example launch script, see https://github.com/OpenRA/OpenRA/wiki/Dedicated for details Name="Dedicated-Server" Mod="ra" Dedicated="True" diff --git a/launch-editor.sh b/launch-editor.sh index f700b0ff9c..c390cb1ae0 100755 --- a/launch-editor.sh +++ b/launch-editor.sh @@ -1,2 +1,3 @@ #!/bin/sh +# launch script (executed by Desura) exec mono OpenRA.Editor.exe "$@" \ No newline at end of file diff --git a/launch-game.sh b/launch-game.sh index ae207f3f9b..090f030f69 100755 --- a/launch-game.sh +++ b/launch-game.sh @@ -1,2 +1,3 @@ #!/bin/sh +# launch script (executed by Desura) exec mono OpenRA.Game.exe Server.Dedicated=False Server.DedicatedLoop=False "$@" \ No newline at end of file diff --git a/launch-replay.sh b/launch-replay.sh index 2190b61bb6..6c1af06098 100755 --- a/launch-replay.sh +++ b/launch-replay.sh @@ -1,3 +1,4 @@ #!/bin/bash +# TODO choose the correct Game.Mod instead of crashing cd ${0%/*} exec mono OpenRA.Game.exe Launch.Replay="$@" \ No newline at end of file