insurgencysandstorm_linux64 steamcmd Insurgency: Sandstorm InsurgencyServer-Linux-Shipping %MAP%%SCENARIO%%PLAYERS%%PASSWORD% %PORT% %QUERY_PORT% %SERVERNAME% %MAPCYCLE% %CONTROL_PASSWORD% %RCON_PORT% 19238 10 [] maplist.txt Insurgency/Binaries/Linux/ 32 none 581330 anonymous Game Server Login Token Manage your tokens <a href=https://steamcommunity.com/dev/managegameservers target=_blank>here</a> Game Stats Enable Game Stats OfficialRules Mutators Mutators to be used on the server, separate multiple mutators with a comma and no space Server name The desired server name Password The password used to join the server ns Scenario This is the scenario to be used with the map. Needs to be a valid scenario for the selected map ns Map cycle This is the map cycle, <b>Default</b> will cycle through all PVP scenarios available, <b>Custom</b> will use the file <b>Insurgency/Config/Server/MapCycleCustom.txt</b> RCON Enable RCON protocol (on server port + 10). Use tools like <a href=https://sourceforge.net/projects/mcrcon/ target=_blank>McRCON</a> to administer your server. RCON commands can be found <a href=http://wiki.iaregamer.com/lib/exe/fetch.php?media=sandstorm-server-admin-guide-1.4.pdf>here</a> Cheats Enable the cheats to be used from the ingame Admin menu maplist="maplist.txt" if [ -s "$maplist" ] then echo "File $maplist found. OK!" else echo "File $maplist not found" echo "Generating new maplist file in $maplist" touch maplist.txt echo Canyon > $maplist echo Farmhouse >> $maplist echo Town >> $maplist echo Precinct >> $maplist echo Oilfield >> $maplist echo Mountain >> $maplist fi cyclecustom="Insurgency/Config/Server/MapCycleCustom.txt" if [ -s "$cyclecustom" ] then echo "File $cyclecustom found. OK!" else echo "File $cyclecustom not found" echo "Generating new map cycle file in $cyclecustom" mkdir -p Insurgency/Config/Server/ touch Insurgency/Config/Server/MapCycleCustom.txt fi admins="Insurgency/Config/Server/Admins.txt" if [ -s "$admins" ] then echo "File $admins found. OK!" else echo "File $admins not found" echo "Generating new admins list in $admins" touch Insurgency/Config/Server/Admins.txt fi configs="Insurgency/Saved/Config/LinuxServer/Game.ini" if [ -s "$configs" ] then echo "File $configs found. OK!" else echo "File $configs not found" echo "Generating new default config file in $configs" mkdir -p Insurgency/Saved/Config/LinuxServer/ touch Insurgency/Saved/Config/LinuxServer/Game.ini fi Insurgency/Saved/Config/LinuxServer/Game.ini Insurgency/Config/Server/MapCycleCustom.txt Insurgency/Config/Server/Admins.txt