ソースを参照

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)
Phil 10 年 前
コミット
c9e56d4ee8
1 ファイル変更2 行追加1 行削除
  1. 2 1
      Arma3/arma3server

+ 2 - 1
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 ####