Browse Source

additions

Added tickrate to start-params
added fps_max to config
pull/605/head
PhilPhonic 9 years ago
parent
commit
8899acaa04
  1. 4
      Insurgency/cfg/lgsm-default.cfg
  2. 3
      Insurgency/insserver

4
Insurgency/cfg/lgsm-default.cfg

@ -23,6 +23,10 @@ sv_contact "[email protected]"
// Default: sv_lan 0 // Default: sv_lan 0
sv_lan 0 sv_lan 0
// Set maximum Server FPS
// Default: fps_max 300
fps_max 300
// ......................... Matchmaking Playlists ......................... // // ......................... Matchmaking Playlists ......................... //
// info: Selecting a playlist will allow the server to show up in matchmaking. // info: Selecting a playlist will allow the server to show up in matchmaking.
// Playlists use predefined settings and mapcycle. // Playlists use predefined settings and mapcycle.

3
Insurgency/insserver

@ -25,6 +25,7 @@ steampass=""
# Start Variables # Start Variables
defaultmap="ministry" defaultmap="ministry"
maxplayers="16" maxplayers="16"
tickrate="64"
port="27015" port="27015"
sourcetvport="27020" sourcetvport="27020"
clientport="27005" clientport="27005"
@ -33,7 +34,7 @@ updateonstart="off"
# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server # https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server
fn_parms(){ 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 #### #### Advanced Variables ####

Loading…
Cancel
Save