From 8899acaa04809a73f174ff9f7045e583d00e1f41 Mon Sep 17 00:00:00 2001 From: PhilPhonic Date: Tue, 5 Jan 2016 18:14:32 +0100 Subject: [PATCH] additions Added tickrate to start-params added fps_max to config --- Insurgency/cfg/lgsm-default.cfg | 4 ++++ Insurgency/insserver | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Insurgency/cfg/lgsm-default.cfg b/Insurgency/cfg/lgsm-default.cfg index dde80d728..7b56d44e5 100644 --- a/Insurgency/cfg/lgsm-default.cfg +++ b/Insurgency/cfg/lgsm-default.cfg @@ -23,6 +23,10 @@ sv_contact "email@example.com" // Default: sv_lan 0 sv_lan 0 +// Set maximum Server FPS +// Default: fps_max 300 +fps_max 300 + // ......................... Matchmaking Playlists ......................... // // info: Selecting a playlist will allow the server to show up in matchmaking. // Playlists use predefined settings and mapcycle. diff --git a/Insurgency/insserver b/Insurgency/insserver index ff37e41f8..e43d5e752 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -25,6 +25,7 @@ steampass="" # Start Variables defaultmap="ministry" maxplayers="16" +tickrate="64" port="27015" sourcetvport="27020" clientport="27005" @@ -33,7 +34,7 @@ updateonstart="off" # https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ -parms="-game insurgency -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" +parms="-game insurgency -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} -tickrate ${tickrate} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } #### Advanced Variables ####