forked from Greelan/AMPTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
call-of-dutymw3config.json
212 lines (212 loc) · 7.25 KB
/
call-of-dutymw3config.json
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
[
{
"DisplayName":"Server Name",
"Category":"Server Settings",
"Description":"Sets the name of the server",
"Keywords":"server,name",
"FieldName":"sv_hostname",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"sv_hostname",
"IncludeInCommandLine":false,
"DefaultValue":"AMP Powered Call of Duty: Modern Warfare 3 Server",
"EnumValues":{}
},
{
"DisplayName":"Make Server Public",
"Category":"Server Settings",
"Description":"If enabled, the server will be visible publicly. Otherwise it will only be accessible from the local network",
"Keywords":"public,visible",
"FieldName":"dedicated",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"dedicated",
"IncludeInCommandLine":true,
"DefaultValue":"2",
"EnumValues":{
"True":"2",
"False":"1"
}
},
{
"DisplayName":"Server Password",
"Category":"Server Settings",
"Description":"Sets the password to join the server",
"Keywords":"password",
"FieldName":"g_password",
"InputType":"password",
"IsFlagArgument":false,
"ParamFieldName":"g_password",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"RCON Password",
"Category":"Server Settings",
"Description":"Sets the RCON password to allow sending console commands in-game. Default is no password, disabling console commands",
"Keywords":"rcon,password",
"FieldName":"rcon_password",
"InputType":"password",
"IsFlagArgument":false,
"ParamFieldName":"rcon_password",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Player Limit",
"Category":"Server Settings",
"Description":"The maximum number of players allowed on the server",
"Keywords":"max,players,limit",
"FieldName":"$MaxUsers",
"InputType":"number",
"MinValue":"1",
"MaxValue":"18",
"IsFlagArgument":false,
"ParamFieldName":"sv_maxclients",
"IncludeInCommandLine":false,
"DefaultValue":"16",
"EnumValues":{}
},
{
"DisplayName":"Private Player Limit",
"Category":"Server Settings",
"Description":"The maximum number of private players allowed on the server (those that can use non-public reserved slots). Will be limited to the Player Limit",
"Keywords":"max,private,players,limit",
"FieldName":"sv_privateClients",
"InputType":"number",
"MinValue":"0",
"MaxValue":"18",
"IsFlagArgument":false,
"ParamFieldName":"sv_privateClients",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{}
},
{
"DisplayName":"Private Player Password",
"Category":"Server Settings",
"Description":"Sets the password for private players to join the server. Private players entering this password have access to all slots on the server, otherwise the players only have access to the public slots (Player Limit less Private Player Limit)",
"Keywords":"private,player,password",
"FieldName":"sv_privatePassword",
"InputType":"password",
"IsFlagArgument":false,
"ParamFieldName":"sv_privatePassword",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Map Rotation",
"Category":"Server Settings",
"Description":"Sets the dedicated server play list (DSPL) for map rotation. Valid game options are controlled via the dedicated server recipe (DSR) specified in the DSPL",
"Keywords":"map,rotation",
"FieldName":"sv_maprotation",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"sv_maprotation",
"IncludeInCommandLine":false,
"DefaultValue":"default",
"EnumValues":{}
},
{
"DisplayName":"Server Voice Chat",
"Category":"Server Settings",
"Description":"Sets the server voice chat configuration",
"Keywords":"voice,chat",
"FieldName":"sv_voice",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"sv_voice",
"IncludeInCommandLine":false,
"DefaultValue":"2",
"EnumValues":{
"0":"No Chat",
"1":"Free Chat",
"2":"Team Chat (default)"
}
},
{
"DisplayName":"Enable Voting",
"Category":"Server Settings",
"Description":"If enabled, voting is allowed for player kick, map restart and next map",
"Keywords":"vote,voting",
"FieldName":"g_allowVote",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"g_allowVote",
"IncludeInCommandLine":false,
"DefaultValue":"1",
"EnumValues":{
"True":"1",
"False":"0"
}
},
{
"DisplayName":"Enable Dead Chat",
"Category":"Server Settings",
"Description":"If enabled, dead players will be allowed to chat with living players",
"Keywords":"dead,chat",
"FieldName":"g_deadChat",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"g_deadChat",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"True":"1",
"False":"0"
}
},
{
"DisplayName":"Inactivity Kick Period",
"Category":"Server Settings",
"Description":"Time before the server will kick a player for inactivity",
"Keywords":"inactivity,afk,period",
"FieldName":"g_inactivity",
"InputType":"number",
"IsFlagArgument":false,
"MinValue":"0",
"MaxValue":"10000",
"ParamFieldName":"g_inactivity",
"IncludeInCommandLine":false,
"DefaultValue":"120",
"Suffix":"seconds",
"Placeholder":"0 - 10000",
"EnumValues":{}
},
{
"DisplayName":"Temporary Ban Period",
"Category":"Server Settings",
"Description":"Time for a player temporary ban (on kick/tempban)",
"Keywords":"ban,period,temporary",
"FieldName":"sv_kickBanTime",
"InputType":"number",
"IsFlagArgument":false,
"MinValue":"0",
"MaxValue":"3600",
"ParamFieldName":"sv_kickBanTime",
"IncludeInCommandLine":true,
"DefaultValue":"300",
"Suffix":"seconds",
"Placeholder":"0 - 3600",
"EnumValues":{}
},
{
"DisplayName":"Enable Flood Protection",
"Category":"Server Settings",
"Description":"If enabled, flood protection applies, so user commands are throttled. Should be enabled on non-password-protected public servers",
"Keywords":"flood,protection",
"FieldName":"sv_floodProtect",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"sv_floodProtect",
"IncludeInCommandLine":true,
"DefaultValue":"1",
"EnumValues":{
"True":"1",
"False":"0"
}
}
]