-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdayzconfig.json
509 lines (509 loc) · 17.2 KB
/
dayzconfig.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
[
{
"DisplayName": "Steam Query Port",
"Category": "Hidden Settings",
"Description": "",
"Keywords": "",
"FieldName": "$QueryPort",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "steamQueryPort",
"IncludeInCommandLine": false,
"EnumValues": {},
"Hidden": true
},
{
"DisplayName": "File Patching",
"Category": "DayZ - Miscellaneous",
"Description": "If enabled, ensures that only PBOs are loaded and NO unpacked data.",
"Keywords": "patch,patching,files,misc,pbo,data",
"FieldName": "filePatching",
"InputType": "checkbox",
"IsFlagArgument": true,
"ParamFieldName": "filePatching",
"IncludeInCommandLine": true,
"DefaultValue": "-filePatching"
},
{
"DisplayName": "FPS Limit",
"Category": "DayZ - Miscellaneous",
"Description": "Limits server FPS to specified value (max 200) to lower CPU usage of low population servers.",
"Keywords": "frames,fps,seconds,misc,frames per second,performance",
"FieldName": "fpsLimit",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "limitFPS",
"IncludeInCommandLine": true,
"DefaultValue": "200",
"Paceholder": "200",
"MinValue": "1",
"MaxValue": "200",
"Suffix": "fps",
"EnumValues": {}
},
{
"DisplayName": "Hostname",
"Category": "DayZ - Server Settings",
"Description": "Sets the name of your server.",
"Keywords": "server,name,hostname,list",
"FieldName": "hostname",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "hostname",
"IncludeInCommandLine": false,
"DefaultValue": "AMP Powered DayZ Server",
"Placeholder": "AMP Powered DayZ Server",
"EnumValues": {}
},
{
"DisplayName": "Password",
"Category": "DayZ - Server Settings",
"Description": "Sets the password required to connect to the server.",
"Keywords": "server,password,joining,join,security,protect,protection",
"FieldName": "password",
"InputType": "password",
"IsFlagArgument": false,
"ParamFieldName": "password",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "Admin Password",
"Category": "DayZ - Server Settings",
"Description": "Sets the password required to become a server admin.",
"Keywords": "server,admin,password,security,protect,protection,elevated,permissions,ban,kick",
"FieldName": "passwordAdmin",
"InputType": "RandomPassword",
"IsFlagArgument": false,
"ParamFieldName": "passwordAdmin",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "Enable Whitelist",
"Category": "DayZ - Server Settings",
"Description": "Enables the whitelist. Enter Player IDs in the \"Whitelisted Players\" input.",
"Keywords": "server,protect,protection,whitelist,userlist,allowlist,list",
"FieldName": "enableWhitelist",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "enableWhitelist",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {
"False": "0",
"True": "1"
}
},
{
"DisplayName": "Whitelisted Players",
"Description": "A list of Player IDs (44 characters long ID), which can be found in the admin log file (.ADM). Comments can be added after two forward slashes. Example entry - 1111111111112222222222222333333333XXXXXXAAAA //Bilbo Baggins.",
"FieldName": "AdminPlayers",
"Category": "DayZ - Server Settings",
"InputType": "list",
"Special": "listfile:./dayz/server/Whitelist.txt"
},
{
"DisplayName": "Instance ID",
"Category": "DayZ - Server Settings",
"Description": "Sets the DayZ server instance ID, to identify the number of instances per box and their storage folders with persistence files.",
"Keywords": "instance,id,instanceid,persistence",
"FieldName": "instanceId",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "instanceId",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"Placeholder": "1",
"EnumValues": {}
},
{
"DisplayName": "Server Mission",
"Category": "DayZ - Server Settings",
"Description": "Mission to load on server startup.",
"Keywords": "server,mission,terrain,template",
"FieldName": "template",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "template",
"IncludeInCommandLine": false,
"DefaultValue": "dayzOffline.chernarusplus",
"EnumValues": {
"": "Custom",
"dayzOffline.chernarusplus": "Vanilla - Chernarus Plus",
"dayzOffline.enoch": "DLC - Enoch"
}
},
{
"DisplayName": "Custom Mission",
"Category": "DayZ - Server Settings",
"Description": "Modded mission to load on startup. Manually enter the value for Mission and Map after selecting Custom from the \"Server Mission\" drop-down.",
"Keywords": "server,mission,terrain,template",
"FieldName": "customTemplate",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "customTemplate",
"IncludeInCommandLine": false,
"DefaultValue": "",
"Placeholder": "MissionName.TerrainName",
"EnumValues": {}
},
{
"DisplayName": "Force Same Build",
"Category": "DayZ - Miscellaneous",
"Description": "If enabled, the server will allow connection only by clients with same the .exe version as the server.",
"Keywords": "misc,join,version,revision,build,buildnumber",
"FieldName": "forceSameBuild",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "forceSameBuild",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {
"False": "0",
"True": "1"
}
},
{
"DisplayName": "Enable Voicechat",
"Category": "DayZ - Miscellaneous",
"Description": "Enables voice over network.",
"Keywords": "misc,voice,sound,chat,voicechat,teamchat",
"FieldName": "disableVoN",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "disableVoN",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {
"True": "0",
"False": "1"
}
},
{
"DisplayName": "Voice Over Network Quality",
"Category": "DayZ - Miscellaneous",
"Description": "Sets the voice over network codec quality, the higher the better (0-30).",
"Keywords": "misc,voice,sound,chat,voicechat,teamchat",
"FieldName": "vonCodecQuality",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "vonCodecQuality",
"IncludeInCommandLine": false,
"DefaultValue": "20",
"Placeholder": "20",
"MinValue": "0",
"MaxValue": "30",
"EnumValues": {}
},
{
"DisplayName": "Disable 3rd Person",
"Category": "DayZ - Miscellaneous",
"Description": "If set, disables the 3rd person view for players.",
"Keywords": "misc,view,3rd,person,camera",
"FieldName": "disable3rdPerson",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "disable3rdPerson",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {
"True": "1",
"False": "0"
}
},
{
"DisplayName": "Disable Crosshair",
"Category": "DayZ - Miscellaneous",
"Description": "If set, disables the cross-hair for players.",
"Keywords": "misc,view,cross,cross-hair",
"FieldName": "disableCrosshair",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "disableCrosshair",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {
"True": "1",
"False": "0"
}
},
{
"DisplayName": "Disable Personal Light",
"Category": "DayZ - Miscellaneous",
"Description": "If set, disables personal light for all clients connected to the server.",
"Keywords": "misc,light,lighting,flashlight,torch",
"FieldName": "disablePersonalLight",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "disablePersonalLight",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {
"True": "1",
"False": "0"
}
},
{
"DisplayName": "Server Time",
"Category": "DayZ - Time Settings",
"Description": "Initial in-game time of the server. \"SystemTime\" means the local time of the machine. Another possibility is to set the time to some value in \"YYYY/MM/DD/HH/MM\" format, e.g \"2015/4/8/17/23\".",
"Keywords": "time,server,daytime,cycle,systemtime,servertime",
"FieldName": "serverTime",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "serverTime",
"IncludeInCommandLine": false,
"DefaultValue": "SystemTime",
"Placeholder": "SystemTime",
"EnumValues": {}
},
{
"DisplayName": "Server Time Acceleration",
"Category": "DayZ - Time Settings",
"Description": "Sets a multiplier (0.1-64) for server time acceleration or deceleration. Thus, if set to 24, time would move 24 times faster than normal, and an entire day would pass in one hour.",
"Keywords": "time,server,daytime,cycle,systemtime,servertime",
"FieldName": "serverTimeAcceleration",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "serverTimeAcceleration",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"Placeholder": "1",
"MinValue": "0",
"MaxValue": "64",
"EnumValues": {}
},
{
"DisplayName": "Server Night Time Acceleration",
"Category": "DayZ - Time Settings",
"Description": "Sets a multiplier (0.1-64) for server night time acceleration or deceleration, which is combined with the \"Server Time Acceleration\" multiplier. Thus, if set to 4 and Server Time Acceleration is set to 2, night time would move 8 times faster than normal.",
"Keywords": "time,server,daytime,cycle,systemtime,servertime",
"FieldName": "serverNightTimeAcceleration",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "serverNightTimeAcceleration",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"Placeholder": "1",
"MinValue": "0",
"MaxValue": "64",
"EnumValues": {}
},
{
"DisplayName": "Lighting Config",
"Category": "DayZ - Miscellaneous",
"Description": "Enable this for darker nights.",
"Keywords": "misc,light,lighting,dark,night,nights",
"FieldName": "lightingConfig",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "lightingConfig",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {
"False": "0",
"True": "1"
}
},
{
"DisplayName": "Server Time Persistent",
"Category": "DayZ - Time Settings",
"Description": "If enabled, the actual server time is saved to storage, so the next server start will use the saved time value.",
"Keywords": "time,server,daytime,cycle,systemtime,servertime",
"FieldName": "serverTimePersistent",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "serverTimePersistent",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {
"False": "0",
"True": "1"
}
},
{
"DisplayName": "Login Queue Concurrent Players",
"Category": "DayZ - Server Settings",
"Description": "The number of players concurrently processed during the login process. Should prevent massive performance drop during connection when a lot of people are connecting at the same time.",
"Keywords": "server,join,joining,concurrent,que,queue,performance",
"FieldName": "loginQueueConcurrentPlayers",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "loginQueueConcurrentPlayers",
"IncludeInCommandLine": false,
"DefaultValue": "5",
"Placeholder": "5",
"Suffix": "players",
"EnumValues": {}
},
{
"DisplayName": "Maximum Players",
"Category": "DayZ - Server Settings",
"Description": "The maximum number of players that can join.",
"Keywords": "server,join,joining,concurrent,que,queue,performance",
"FieldName": "$MaxUsers",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "maxPlayers",
"IncludeInCommandLine": false,
"DefaultValue": "10",
"Placeholder": "10",
"Suffix": "players",
"EnumValues": {}
},
{
"DisplayName": "Login Queue Max Players",
"Category": "DayZ - Server Settings",
"Description": "The maximum number of players that can wait in login queue.",
"Keywords": "server,join,joining,concurrent,que,queue,performance",
"FieldName": "loginQueueMaxPlayers",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "loginQueueMaxPlayers",
"IncludeInCommandLine": false,
"DefaultValue": "500",
"Placeholder": "500",
"Suffix": "players",
"EnumValues": {}
},
{
"DisplayName": "Disable Houses/Doors Persistence",
"Category": "DayZ - Miscellaneous",
"Description": "Disable houses/doors persistence, usable in case of problems with persistence.",
"Keywords": "misc,house,door,persistence",
"FieldName": "storeHouseStateDisabled",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "storeHouseStateDisabled",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Storage Auto Fix",
"Category": "DayZ - Miscellaneous",
"Description": "Checks if the persistence files are corrupted and replaces corrupted ones with empty ones.",
"Keywords": "misc,storage,fix,persistence",
"FieldName": "storageAutoFix",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "storageAutoFix",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"EnumValues": {
"False": "0",
"True": "1"
}
},
{
"DisplayName": "Restrict RCon",
"Category": "DayZ - Server Settings",
"Description": "If enabled, all RCon connections will be restricted, preventing certain actions such as kicking, banning or shutting the server down.",
"Keywords": "server,rcon,remote,console,battleye,admin,kick,ban",
"FieldName": "RestrictRCon",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "RestrictRCon",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"EnumValues": {
"False": "0",
"True": "1"
}
},
{
"DisplayName": "Respawn Time",
"Category": "DayZ - Miscellaneous",
"Description": "Sets the respawn delay before a player is able to get a new character on the server, when the previous one is dead.",
"Keywords": "spawn,respawn,time,death",
"FieldName": "respawnTime",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "respawnTime",
"IncludeInCommandLine": false,
"DefaultValue": "5",
"Placeholder": "5",
"Suffix": "seconds",
"EnumValues": {}
},
{
"DisplayName": "Message of The Day",
"Category": "DayZ - Miscellaneous",
"Description": "Message of the day displayed in the in-game chat. Format is \"line1\",\"line2\".",
"Keywords": "motd,chat,message,text",
"FieldName": "motd",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "motd",
"IncludeInCommandLine": false,
"DefaultValue": "\"Server hosted with AMP\"",
"Placeholder": "\"Server hosted with AMP\"",
"EnumValues": {}
},
{
"DisplayName": "MOTD Interval",
"Category": "DayZ - Miscellaneous",
"Description": "Time interval between each MOTD message.",
"Keywords": "motd,message,chat,interval",
"FieldName": "motdInterval",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "motdInterval",
"IncludeInCommandLine": false,
"DefaultValue": "600",
"Placeholder": "600",
"Suffix": "seconds",
"EnumValues": {}
},
{
"DisplayName": "Max Ping",
"Category": "DayZ - Miscellaneous",
"Description": "Sets the max ping value for clients, above which the clients will be kicked.",
"Keywords": "ping,maximal,lagging,lag,kick,maxPing",
"FieldName": "maxPing",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "maxPing",
"IncludeInCommandLine": false,
"DefaultValue": "500",
"Placeholder": "500",
"Suffix": "milliseconds",
"EnumValues": {}
},
{
"DisplayName": "Mods",
"Category": "DayZ - Server Settings",
"Description": "Specifies the list of mod names to be started on the server. Format on Windows is mod1;mod2;mod3 and on Linux is mod1\\;mod2\\;mod3.",
"Keywords": "mods,addons,modding,modification,workshop,plugins",
"FieldName": "mod",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "mod",
"IncludeInCommandLine": true,
"SkipIfEmpty": true,
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "Version",
"Category": "SteamCMD and Updates",
"Description": "Which version of the server to download. Only applies to Windows, as Linux is only supported for the Experimental version. Ensure users download a matching version in Steam.",
"Keywords": "version",
"FieldName": "version",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "version",
"IncludeInCommandLine": false,
"DefaultValue": "221100",
"EnumValues": {
"1024020": "Experimental",
"221100": "Original"
}
}
]