lgsm local mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
712 B

# Game Settings File
# _goldsource
# Gold Source Engine
# Import default settings
fn_import_game_settings _halflife_shared
# And the settings for defaults
fn_set_game_setting settings "appid" "90"
fn_set_game_setting settings "map" "dm_lockdown"
fn_set_game_setting settings "engine" "goldsource"
fn_set_game_setting settings "executable" "./hlds_run"
# Game Parameters
fn_set_game_setting parms_plus "ip" "\${ip}"
fn_set_game_setting parms_plus "clientport" "\${clientport}"
# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2
fn_parms(){
parms="-game ${game} -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${map} -maxplayers ${maxplayers}"
}