From 8dd0c34a56c5e24f6fca1b7cf558f62a9329f244 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Wed, 14 May 2014 13:42:23 +0200 Subject: [PATCH] document the launch scripts --- launch-dedicated.sh | 1 + launch-editor.sh | 1 + launch-game.sh | 1 + launch-replay.sh | 1 + 4 files changed, 4 insertions(+) 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