fully qualified version string:
Linux f589 3.2.0-4-amd64 #1 SMP Debian 3.2.60-1+deb7u1 x86_64 GNU/Linux
run script:
#!/bin/bash
while true; do
modsPath="/home/steam/ArmA3/OverallMods/"
port=2312
mods="-mod="
mods="${mods}${modsPath}@XLib;"
mods="${mods}${modsPath}@CBA_A3;"
mods="${mods}${modsPath}@task_force_radio;"
mods="${mods}${modsPath}@A3MP;"
mods="${mods}${modsPath}@fallujah1_2;"
mods="${mods}${modsPath}@islandZstuff;"
mods="${mods}${modsPath}@Koplic;"
mods="${mods}${modsPath}@Nziwasogo;"
mods="${mods}${modsPath}@Thirsk;"
mods="${mods}${modsPath}@panthera;"
echo "Starting ArmA 3 server on port $port with following mods string: $mods"
./arma3server -port=$port -pid=ServerRunning -cfg=basicServer.cpp -config=server.cpp "${mods}"
echo "ArmA 3 server has stopped ..."
for (( i=20; i>0; i-- ))
do
echo "Restarting in $i"
sleep 1s
done
done