killingfloor2_linux64
steamcmd
Killing Floor 2
KFGameSteamServer.bin.x86_64
%MAP%%GAMEMODE%%DIFFICULTY%%GAMELENGTH%%PLAYERS% %PORT% %IP% %WEB_ADMIN_PORT% %QUERY_PORT%
10
19238
12783
maplist.txt
Binaries/Win64
12
none
232130
anonymous
ns
Difficulty
This sets the server difficulty. Leave empty to configure this parameter in the config files or webadmin
ns
Game Length
This sets the game length. Leave empty to configure this parameter in the config files or webadmin
Game Mode
Leave empty to run the normal game mode.<br>To run your server with official Versus Survival mode use this:<br><br>KFGameContent.KFGameInfo_VersusSurvival<br><br>You can use any other gametype if you installed any other mod from Steam Workshop
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 KF-Airship > maplist.txt
echo KF-BioticsLab >> maplist.txt
echo KF-BlackForest >> maplist.txt
echo KF-BurningParis >> maplist.txt
echo KF-Catacombs >> maplist.txt
echo KF-ContainmentStation >> maplist.txt
echo KF-EvacuationPoint >> maplist.txt
echo KF-Farmhouse >> maplist.txt
echo KF-HostileGrounds >> maplist.txt
echo KF-InfernalRealm >> maplist.txt
echo KF-KrampusLair >> maplist.txt
echo KF-Lockdown >> maplist.txt
echo KF-MonsterBall >> maplist.txt
echo KF-Nightmare >> maplist.txt
echo KF-Nuked >> maplist.txt
echo KF-Outpost >> maplist.txt
echo KF-PowerCore_Holdout >> maplist.txt
echo KF-Prison >> maplist.txt
echo KF-TheDescent >> maplist.txt
echo KF-TragicKingdom >> maplist.txt
echo KF-VolterManor >> maplist.txt
echo KF-ZedLanding >> maplist.txt
fi