File | GUI location | Description |
---|---|---|
settings.scr |
Create Server > Game dialog | Multiplayer server settings |
user.scr |
Options > Advanced or Options > Multiplayer > Advanced tab | User settings |
type "singleplayer_only"
line the Advanced tab will be available right in the Options menu instead of Multiplayer options.Format:
Version [float]
Options description followed by
Options defaults
Option description syntax:
"cvar" { "Prompt" { type [ type info ] } { default } }
type =
BOOL (a yes/no toggle)
STRING
NUMBER
LIST
type info:
BOOL no type info
NUMBER min max range, use -1 -1 for no limits
STRING no type info
LIST delimited list of options value pairs
default depends on type
BOOL is "0" or "1"
NUMBER is "value"
STRING is "value"
LIST is "index", where index "0" is the first element of the list
VERSION 1.0
DESCRIPTION INFO_OPTIONS
{
"hud_draw"
{
"Draw HUD"
{
LIST
"Hide HUD" "0"
"Show HUD" "1"
}
{ "1.000000" }
}
"default_fov"
{
"FOV"
{ NUMBER 10.000000 180.000000 }
{ "90.000000" }
}
}
"cl_rollangle"
{
"View rolling"
{
LIST
"Reversed" "-1"
"Disabled" "0"
"Mild" "1"
"Average" "2"
"Heavy" "4"
}
{ "1.000000" }
}
You must log in to post a comment. You can login or register a new account.