diff --git a/Arma3/arma3server b/Arma3/arma3server index c140f9aa3..5a71d4642 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -42,10 +42,10 @@ parms="-netlog -ip=${ip} -port=${port} -cfg=${networkcfgfullpath} -config=${serv # ARMA 3 Modules # add mods with relative paths: -# mods/\@CBA_A3\; -# or several mods as: -# mods/\@CBA_A3\;mods/\@task_force_radio -# and chmod modules directories to 775 +# mods/@cba_a3 +# to load the "Community Base Addons v3" module found in the +# directory serverfiles/mods/@cba_a3. Load several mods as: +# mods="mods/@ace\;mods/@acex\;mods/@cba_a3" mods="" # Server-side Mods diff --git a/lgsm/functions/command_debug.sh b/lgsm/functions/command_debug.sh index 4035319e1..f6958a8be 100644 --- a/lgsm/functions/command_debug.sh +++ b/lgsm/functions/command_debug.sh @@ -94,10 +94,15 @@ trap fn_lockfile_trap INT cd "${executabledir}" if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then ${executable} ${parms} -debug +elif [ "${engine}" == "realvirtuality" ]; then + # Arma3 requires semicolons in the module list, which need to + # be escaped for regular (tmux) loading, but need to be + # stripped when loading straight from the console. + ${executable} ${parms//\\;/;} else ${executable} ${parms} fi # remove trap. trap - INT -core_exit.sh \ No newline at end of file +core_exit.sh