46 changed files with 284 additions and 319 deletions
@ -0,0 +1,5 @@ |
|||||
|
# Game Settings File |
||||
|
# Game Server Login Token Support |
||||
|
|
||||
|
fn_set_game_params settings "gslt" "--EMPTY--" "Required: Game Server Login Token. GSLT is required for running a public server. More info: http://gameservermanagers.com/gslt" |
||||
|
fn_set_game_params parms_plus "sv_setsteamaccount" "\${gslt}" |
@ -0,0 +1,9 @@ |
|||||
|
# Game Settings File |
||||
|
|
||||
|
# Workshop Authentication and Settings |
||||
|
fn_set_game_params parms_minus "authkey" "\${authkey}" |
||||
|
fn_set_game_params parms_plus "host_workshop_collection" "\${host_workshop_collection}" |
||||
|
fn_set_game_params parms_plus "workshop_start_map" "\${workshop_start_map}" |
||||
|
fn_set_game_params settings "authkey" "--EMPTY--" "Optional key for Workshop Content. See https://developer.valvesoftware.com/wiki/CSGO_Workshop_For_Server_Operators - To get an authkey visit - http://steamcommunity.com/dev/apikey" |
||||
|
fn_set_game_params settings "host_workshop_collection" "--EMPTY--" "Workshop Collection ID" |
||||
|
fn_set_game_params settings "workshop_start_map" "--EMPTY--" "Workshop Start Map" |
@ -1,14 +1,14 @@ |
|||||
# Game Settings File |
# Game Settings File |
||||
# Import Engine |
# Import Engine |
||||
fn_import_game_settings _source |
fn_import_game_settings _source |
||||
|
fn_import_game_settings _gslt |
||||
|
|
||||
# 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 tf -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +sv_setsteamaccount ${gslt} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" |
parms="-game tf -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +sv_setsteamaccount ${gslt} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" |
||||
} |
} |
||||
appid="232250" |
fn_set_game_params settings "appid" "232250" |
||||
gamename="Team Fortress 2" |
fn_set_game_params settings "gamename" "Team Fortress 2" |
||||
defaultmap="cp_badlands" |
fn_set_game_params settings "defaultmap" "cp_badlands" |
||||
maxplayers="16" |
fn_set_game_params settings "maxplayers" "16" |
||||
gslt="" |
fn_set_game_params settings "game" "tf" |
||||
game="tf" |
|
||||
|
Loading…
Reference in new issue