From c9e56d4ee8a14f6477ef25650ef5bd9d8fceac80 Mon Sep 17 00:00:00 2001 From: Phil Date: Mon, 21 Dec 2015 18:53:08 +0100 Subject: [PATCH] added "-bepath"-parameter This is needed for @Epoch. It does not crash my @Exile server when left empty (@Exile does not need this to be specified, I think it uses the standard path) --- Arma3/arma3server | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Arma3/arma3server b/Arma3/arma3server index e39534122..bd56afd7e 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -28,7 +28,7 @@ ip="0.0.0.0" updateonstart="off" fn_parms(){ -parms="-netlog -ip=${ip} -cfg=${networkcfgfullpath} -config=${servercfgfullpath} -mod=${mods} -servermod=${servermods} -autoinit -loadmissiontomemory" +parms="-netlog -ip=${ip} -cfg=${networkcfgfullpath} -config=${servercfgfullpath} -mod=${mods} -servermod=${servermods} -bepath=${bepath} -autoinit -loadmissiontomemory" } # ARMA 3 Modules @@ -39,6 +39,7 @@ parms="-netlog -ip=${ip} -cfg=${networkcfgfullpath} -config=${servercfgfullpath} # and chmod modules directories to 775 mods="" servermods="" +bepath="" #### Advanced Variables ####