-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings_default.scr
executable file
·174 lines (153 loc) · 2.53 KB
/
settings_default.scr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
// NOTE: THIS FILE IS AUTOMATICALLY REGENERATED,
//DO NOT EDIT THIS HEADER, YOUR COMMENTS WILL BE LOST IF YOU DO
// Multiplayer options script
//
// 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
// Half-Life Server Configuration Layout Script (stores last settings chosen, too)
// File generated: Mon Jul 12 05:28:33 PM
//
//
// Cvar - Setting
VERSION 1.0
DESCRIPTION SERVER_OPTIONS
{
"hostname"
{
"#Valve_Hostname"
{ STRING }
{ "Counter-Strike Source" }
}
"maxplayers"
{
"#Valve_Max_Players"
{ NUMBER 1 32 }
{ "32" }
}
"sv_password"
{
"#Valve_Server_Password"
{ STRING }
{ "" }
}
"mp_timelimit"
{
"#Cstrike_Timelimit"
{ NUMBER 0 -1 }
{ "20" }
}
"mp_winlimit"
{
"#Cstrike_WinLimit"
{ NUMBER 0 -1 }
{ "0" }
}
"mp_maxrounds"
{
"#Cstrike_RoundLimit"
{ NUMBER 0 -1 }
{ "0" }
}
"mp_roundtime"
{
"#Cstrike_RoundTime"
{ NUMBER 0 15 }
{ "5" }
}
"mp_freezetime"
{
"#Cstrike_FreezeTime"
{ NUMBER 0 60 }
{ "6" }
}
"mp_buytime"
{
"#Cstrike_BuyTime"
{ NUMBER 0.25 -1 }
{ "1.5" }
}
"mp_startmoney"
{
"#Cstrike_StartMoney"
{ NUMBER 800 16000 }
{ "800" }
}
"mp_footsteps"
{
"#Valve_Footsteps"
{ BOOL }
{ "1" }
}
"mp_forcecamera"
{
"#Cstrike_Death_Camera_Type"
{
LIST
"#Cstrike_Spectate_Anyone" "0"
"#Cstrike_Spectate_Team_Only" "1"
"#Cstrike_Only_First_Person" "2"
}
{ "0" }
}
"mp_fadetoblack"
{
"#Cstrike_Fade_To_Black"
{ BOOL }
{ "0" }
}
"mp_friendlyfire"
{
"#Valve_Friendly_Fire"
{ BOOL }
{ "0" }
}
"mp_tkpunish"
{
"#Cstrike_TK_Punish"
{ BOOL }
{ "1" }
}
"mp_autokick"
{
"#Cstrike_AutoKick"
{ BOOL }
{ "0" }
}
"mp_hostagepenalty"
{
"#Cstrike_Hostage_Penalty"
{ NUMBER 0 -1 }
{ "5" }
}
"mp_flashlight"
{
"#Cstrike_Allow_Flashlight"
{ BOOL }
{ "0" }
}
}