forked from CubeCoders/AMPTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdayz-originalconfig.json
954 lines (952 loc) · 35.8 KB
/
dayz-originalconfig.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
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
[
{
"DisplayName":"Steam Query Port",
"Category":"DayZ Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$QueryPort",
"InputType":"number",
"Hidden":true,
"IsFlagArgument":false,
"ParamFieldName":"steamQueryPort",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"Server Name",
"Category":"DayZ Server Settings",
"Description":"Sets the server name visible in the game browser",
"Keywords":"server,name,hostname",
"FieldName":"hostname",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"hostname",
"IncludeInCommandLine":false,
"DefaultValue":"AMP Powered DayZ Server",
"EnumValues":{}
},
{
"DisplayName":"Server Password",
"Category":"DayZ Server Settings",
"Description":"Sets the password required to connect to the server. Default is no password",
"Keywords":"server,password",
"FieldName":"password",
"InputType":"password",
"IsFlagArgument":false,
"ParamFieldName":"password",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Admin Password",
"Category":"DayZ Server Settings",
"Description":"Sets the password required for admin access to the server. Default is no password",
"Keywords":"server,admin,passwordadmin",
"FieldName":"passwordAdmin",
"InputType":"password",
"IsFlagArgument":false,
"ParamFieldName":"passwordAdmin",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"RCON Password",
"Category":"DayZ Server Settings",
"Description":"See the Security and Privacy menu for configurable options for the server's RCON",
"Keywords":"rcon,password",
"FieldName":"RCONPassword",
"InputType":"hidden",
"IsFlagArgument":false,
"ParamFieldName":"RCONPassword",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"Message Of The Day",
"Category":"DayZ Server Settings",
"Description":"Sets the player welcome message (MOTD). Format is \"Line1\",\"Line2\"",
"Keywords":"motd,welcome,message",
"FieldName":"motd",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"motd",
"IncludeInCommandLine":false,
"DefaultValue":"\"Welcome to DayZ\",\"Hosted using AMP by CubeCoders\"",
"EnumValues":{}
},
{
"DisplayName":"MOTD Interval",
"Category":"DayZ Server Settings",
"Description":"Sets the time interval between between display of each line of the MOTD",
"Keywords":"motd,message,delay,interval,motdinterval",
"FieldName":"motdInterval",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"motdInterval",
"IncludeInCommandLine":false,
"DefaultValue":"5",
"Placeholder":"5",
"Suffix":"seconds",
"EnumValues":{}
},
{
"DisplayName":"Enable Whitelist",
"Category":"DayZ Server Settings",
"Description":"If set, enables the server whitelist. Enter Player IDs under \"Whitelisted Players\"",
"Keywords":"whitelist,userlist,allowlist,enablewhitelist",
"FieldName":"enableWhitelist",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"enableWhitelist",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Whitelisted Players",
"Category":"DayZ Server Settings",
"Description":"Sets a list of whitelisted 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: 1111111111112222222222222333333333XXXXXXAAAA //Bilbo Baggins",
"FieldName":"AdminPlayers",
"InputType":"list",
"Special":"listfile:./dayz/223350/whitelist.txt"
},
{
"DisplayName":"Banned Players",
"Category":"DayZ Server Settings",
"Description":"Sets a list of banned Player IDs, in the same format as Whitelisted Players. These bans are separate to BattlEye bans",
"FieldName":"BanPlayers",
"InputType":"list",
"Special":"listfile:./dayz/223350/ban.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",
"FieldName":"instanceId",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"instanceId",
"IncludeInCommandLine":false,
"DefaultValue":"1",
"Placeholder":"1",
"EnumValues":{}
},
{
"DisplayName":"Server Mission",
"Category":"DayZ Server Settings",
"Description":"Sets the mission to load on server startup. If Custom is selected, the \"Custom Mission Name\" must also be specified",
"Keywords":"mission,terrain,template",
"FieldName":"template",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"template",
"IncludeInCommandLine":false,
"DefaultValue":"dayzOffline.chernarusplus",
"EnumValues":{
"dayzOffline.chernarusplus":"Vanilla - Chernarus Plus (default)",
"dayzOffline.enoch":"DLC - Enoch",
"{{customTemplate}}":"Custom"
}
},
{
"DisplayName":"Custom Mission Name",
"Category":"DayZ Server Settings",
"Description":"Sets a custom mission to load on startup. Format is <MissionName>.<TerrainName>. The Custom mission type must be selected under \"Server Mission\"",
"Keywords":"mission,terrain,template,customtemplate",
"FieldName":"customTemplate",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"customTemplate",
"IncludeInCommandLine":false,
"DefaultValue":"",
"Placeholder":"Expansion.ChenarusPlus",
"EnumValues":{}
},
{
"DisplayName":"Player Limit",
"Category":"DayZ Server Settings",
"Description":"Sets the maximum number of players that may connect to the server at one time",
"Keywords":"maximum,players,clients,limit,maxplayers",
"FieldName":"$MaxUsers",
"InputType":"number",
"MinValue":"1",
"IsFlagArgument":false,
"ParamFieldName":"maxPlayers",
"IncludeInCommandLine":false,
"DefaultValue":"60",
"Placeholder":"60",
"Suffix":"players",
"EnumValues":{}
},
{
"DisplayName":"Login Queue Limit",
"Category":"DayZ Server Settings",
"Description":"Sets the maximum number of players that can wait in the server login queue",
"Keywords":"login,queue,loginqueuemaxplayers",
"FieldName":"loginQueueMaxPlayers",
"InputType":"number",
"MinValue":"1",
"IsFlagArgument":false,
"ParamFieldName":"loginQueueMaxPlayers",
"IncludeInCommandLine":false,
"DefaultValue":"500",
"Placeholder":"500",
"Suffix":"players",
"EnumValues":{}
},
{
"DisplayName":"Login Queue Concurrent Players",
"Category":"DayZ Server Settings",
"Description":"Sets the number of players concurrently processed during the login process, to prevent a performance drop when many people are connecting at the same time",
"Keywords":"login,queue,loginqueueconcurrentplayers",
"FieldName":"loginQueueConcurrentPlayers",
"InputType":"number",
"MinValue":"1",
"IsFlagArgument":false,
"ParamFieldName":"loginQueueConcurrentPlayers",
"IncludeInCommandLine":false,
"DefaultValue":"5",
"Placeholder":"5",
"Suffix":"players",
"EnumValues":{}
},
{
"DisplayName":"Load Mods",
"Category":"DayZ Server Settings",
"Description":"Semi-colon separated list (moddir1;moddir2) of mod directories to load (not server-side only mods). ONE LINE ONLY! Specify simply the mod ID for any mods downloaded under SteamCMD and Updates. Otherwise, use mod directory paths relative to the server base directory or full paths",
"Keywords":"mods,addons,modding,modification,workshop,plugins,mod",
"FieldName":"mod",
"InputType":"Textarea",
"IsFlagArgument":false,
"ParamFieldName":"mod",
"IncludeInCommandLine":true,
"SkipIfEmpty":true,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Load Server Mods",
"Category":"DayZ Server Settings",
"Description":"Semi-colon separated list (moddir1;moddir2) of server-side only mod directories to load (the mods are not broadcast to clients). ONE LINE ONLY! Specify simply the mod ID for any mods downloaded under SteamCMD and Updates. Otherwise, use mod directory paths relative to the server base directory or full paths",
"Keywords":"mods,addons,modding,modification,workshop,plugins,server,servermod",
"FieldName":"serverMod",
"InputType":"Textarea",
"IsFlagArgument":false,
"ParamFieldName":"serverMod",
"IncludeInCommandLine":true,
"SkipIfEmpty":true,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Server/RCON IP Binding",
"Category":"DayZ Server Settings",
"Description":"If required, you can change the binding of the server and BattlEye RCON by editing App.ApplicationIPBinding in GenericModule.kvp for the instance. Stop the instance (not just the server) first",
"Keywords":"ip,binding",
"FieldName":"ip",
"InputType":"hidden",
"IsFlagArgument":false,
"ParamFieldName":"ip",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"Enable Server File Patching",
"Category":"DayZ Server Settings",
"Description":"If enabled, allows loading of unpacked data",
"Keywords":"file,patching,filepatching",
"FieldName":"filePatching",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"filePatching",
"IncludeInCommandLine":false,
"DefaultValue":"-filePatching ",
"False":"",
"True":"-filePatching "
},
{
"DisplayName":"Allow Client File Patching",
"Category":"DayZ Server Settings",
"Description":"If enabled, clients with the \"-filePatching\" launch parameter enabled will be able to connect",
"Keywords":"file,patching,allowfilepatching",
"FieldName":"allowFilePatching",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"allowFilePatching",
"IncludeInCommandLine":false,
"DefaultValue":"1",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Force Same Build",
"Category":"DayZ Server Settings",
"Description":"If enabled, the server will allow connections only by clients with same the build version as the server",
"Keywords":"version,build,forcesamebuild",
"FieldName":"forceSameBuild",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"forceSameBuild",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Enable FPS Limit",
"Category":"DayZ Server Settings",
"Description":"If enabled, the server FPS will be limited to the value set under \"FPS Limit Value\". Disabling this setting can have a severe effect on server performance",
"Keywords":"enable,frames,fps,limitfps",
"FieldName":"EnableLimitFPS",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"EnableLimitFPS",
"IncludeInCommandLine":false,
"DefaultValue":"-limitFPS={{limitFPS}} ",
"EnumValues":{
"False":"",
"True":"-limitFPS={{limitFPS}} "
}
},
{
"DisplayName":"FPS Limit Value",
"Category":"DayZ Server Settings",
"Description":"Sets the limit for the server FPS, to lower CPU usage of low population servers. Requires \"Enable FPS Limit\" to be set",
"Keywords":"frames,fps,value,limitfps",
"FieldName":"limitFPS",
"InputType":"number",
"MinValue":"1",
"MaxValue":"200",
"IsFlagArgument":false,
"ParamFieldName":"limitFPS",
"IncludeInCommandLine":false,
"DefaultValue":"200",
"Placeholder":"200",
"Suffix":"fps",
"EnumValues":{}
},
{
"DisplayName":"FPS Warning Trigger Value",
"Category":"DayZ Server Settings",
"Description":"Sets the server FPS value under which the initial server FPS warning will be triggered",
"Keywords":"frames,fps,warning,trigger,serverfpswarning",
"FieldName":"serverFpsWarning",
"InputType":"number",
"MinValue":"11",
"MaxValue":"200",
"IsFlagArgument":false,
"ParamFieldName":"serverFpsWarning",
"IncludeInCommandLine":false,
"DefaultValue":"15",
"Placeholder":"15",
"Suffix":"fps",
"EnumValues":{}
},
{
"DisplayName":"Maximum Ping",
"Category":"DayZ Server Settings",
"Description":"Sets the maximum ping value for clients, above which the clients will be kicked",
"Keywords":"ping,maximum,lagging,lag,kick,maxping",
"FieldName":"maxPing",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"maxPing",
"IncludeInCommandLine":false,
"DefaultValue":"500",
"Placeholder":"500",
"Suffix":"milliseconds",
"EnumValues":{}
},
{
"DisplayName":"Ping Initial Warning Trigger Value",
"Category":"DayZ Server Settings",
"Description":"Sets the ping value that will trigger the initial yellow ping warning for clients",
"Keywords":"ping,initial,yellow,warning,trigger,pingwarning",
"FieldName":"pingWarning",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"pingWarning",
"IncludeInCommandLine":false,
"DefaultValue":"200",
"Placeholder":"200",
"Suffix":"milliseconds",
"EnumValues":{}
},
{
"DisplayName":"Ping Critical Warning Trigger Value",
"Category":"DayZ Server Settings",
"Description":"Sets the ping value that will trigger the critical red ping warning for clients",
"Keywords":"ping,critical,red,warning,trigger,pingcritical",
"FieldName":"pingCritical",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"pingCritical",
"IncludeInCommandLine":false,
"DefaultValue":"250",
"Placeholder":"250",
"Suffix":"milliseconds",
"EnumValues":{}
},
{
"DisplayName":"Additional Server Startup Parameters",
"Category":"DayZ Server Settings",
"Description":"Specifies additional startup parameters that are not otherwise set by AMP. Use with care",
"Keywords":"custom,server,arguments,parameters",
"FieldName":"CustomServerArgs",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"CustomServerArgs",
"IncludeInCommandLine":false,
"DefaultValue":"",
"Placeholder":"-cpuCount=2",
"EnumValues":{}
},
{
"DisplayName":"Disable Voice Chat",
"Category":"DayZ Gameplay Settings",
"Description":"If set, players will not be able to use in-game voice chat",
"Keywords":"voice,chat,voicechat,disablevon",
"FieldName":"disableVoN",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"disableVoN",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Voice Chat Quality",
"Category":"DayZ Gameplay Settings",
"Description":"Sets the voice chat codec quality, the higher the better",
"Keywords":"voice,chat,voicechat,codec,quality,voncodecquality",
"FieldName":"vonCodecQuality",
"InputType":"number",
"MinValue":"0",
"MaxValue":"30",
"IsFlagArgument":false,
"ParamFieldName":"vonCodecQuality",
"IncludeInCommandLine":false,
"DefaultValue":"20",
"Placeholder":"20",
"EnumValues":{}
},
{
"DisplayName":"Disable Third Person View",
"Category":"DayZ Gameplay Settings",
"Description":"If set, disables the third person view for players",
"Keywords":"view,3rd,third,person,camera,disable3rdperson",
"FieldName":"disable3rdPerson",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"disable3rdPerson",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Disable Crosshair",
"Category":"DayZ Gameplay Settings",
"Description":"If set, disables the crosshair for players",
"Keywords":"crosshair,disablecrosshair",
"FieldName":"disableCrosshair",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"disableCrosshair",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Disable Personal Light",
"Category":"DayZ Gameplay Settings",
"Description":"If set, disables personal light for all clients connected to the server",
"Keywords":"light,lighting,flashlight,torch,disablepersonallight",
"FieldName":"disablePersonalLight",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"disablePersonalLight",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Enable Darker Nights",
"Category":"DayZ Gameplay Settings",
"Description":"If enabled, nights will be darker on the server",
"Keywords":"light,lighting,dark,night,lightingconfig",
"FieldName":"lightingConfig",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"lightingConfig",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Disable Base Damage",
"Category":"DayZ Gameplay Settings",
"Description":"If set, disables the damage or destruction of fences and watchtowers",
"Keywords":"disable,base,damage,fence,watchtower,disablebasedamage",
"FieldName":"disableBaseDamage",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"disableBaseDamage",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Disable Container Damage",
"Category":"DayZ Gameplay Settings",
"Description":"If set, disables the damage or destruction of tents, barrels, wooden crates and seachests",
"Keywords":"disable,container,damage,tent,barrel,crate,seachest,disablecontainerdamage",
"FieldName":"disableContainerDamage",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"disableContainerDamage",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Enable Debug Monitor",
"Category":"DayZ Gameplay Settings",
"Description":"If enabled, the server shows information about the character using a debug window in the corner of the screen",
"Keywords":"debug,monitor,character,information,enabledebugmonitor",
"FieldName":"enableDebugMonitor",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"enableDebugMonitor",
"IncludeInCommandLine":false,
"DefaultValue":"1",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Disable Respawn Dialog",
"Category":"DayZ Gameplay Settings",
"Description":"If set, disables the respawn dialog (new characters will randomly spawn)",
"Keywords":"disable,respawn,dialog,disablerespawndialog",
"FieldName":"disableRespawnDialog",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"disableRespawnDialog",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Respawn Time",
"Category":"DayZ Gameplay Settings",
"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,respawntime",
"FieldName":"respawnTime",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"respawnTime",
"IncludeInCommandLine":false,
"DefaultValue":"5",
"Placeholder":"5",
"Suffix":"seconds",
"EnumValues":{}
},
{
"DisplayName":"Server Time",
"Category":"DayZ Gameplay Settings",
"Description":"Sets the initial in-game time of the server. \"SystemTime\" means the local time of the machine. Or set the time to some value in \"YYYY/MM/DD/HH/MM\" format, e.g \"2015/4/8/17/23\"",
"Keywords":"time,server,systemtime,servertime",
"FieldName":"serverTime",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"serverTime",
"IncludeInCommandLine":false,
"DefaultValue":"SystemTime",
"Placeholder":"SystemTime",
"EnumValues":{}
},
{
"DisplayName":"Server Time Acceleration",
"Category":"DayZ Gameplay Settings",
"Description":"Sets a multiplier (0.1-64) for server time acceleration or deceleration. For example, 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,servertime,servertimeacceleration",
"FieldName":"serverTimeAcceleration",
"InputType":"number",
"MinValue":"0",
"MaxValue":"64",
"IsFlagArgument":false,
"ParamFieldName":"serverTimeAcceleration",
"IncludeInCommandLine":false,
"DefaultValue":"1",
"Placeholder":"1",
"EnumValues":{}
},
{
"DisplayName":"Server Night Time Acceleration",
"Category":"DayZ Gameplay Settings",
"Description":"Sets a multiplier (0.1-64) for server night time acceleration or deceleration, which is combined with the \"Server Time Acceleration\" multiplier. For example, if set to 4 and Server Time Acceleration is set to 2, night time would move 8 times faster than normal",
"Keywords":"time,server,nighttime,cycle,servertime,servernighttimeacceleration",
"FieldName":"serverNightTimeAcceleration",
"InputType":"number",
"MinValue":"0",
"MaxValue":"64",
"IsFlagArgument":false,
"ParamFieldName":"serverNightTimeAcceleration",
"IncludeInCommandLine":false,
"DefaultValue":"1",
"Placeholder":"1",
"EnumValues":{}
},
{
"DisplayName":"Persistent Server Time",
"Category":"DayZ Gameplay 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,servertime,persistent,servertimepersistent",
"FieldName":"serverTimePersistent",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"serverTimePersistent",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Maximum Terrain Render Distance",
"Category":"DayZ Gameplay Settings",
"Description":"Sets the maximum terrain render distance on the server (if higher than \"viewDistance=\" in a client profile, the client side parameter applies)",
"Keywords":"maximum,terrain,render,distance,visibility,defaultVisibility",
"FieldName":"defaultVisibility",
"InputType":"number",
"MinValue":"0",
"IsFlagArgument":false,
"ParamFieldName":"defaultVisibility",
"IncludeInCommandLine":false,
"DefaultValue":"1375",
"Placeholder":"1375",
"EnumValues":{}
},
{
"DisplayName":"Maximum Object Render Distance",
"Category":"DayZ Gameplay Settings",
"Description":"Sets the maximum object render distance on the server (if higher than \"preferredObjectViewDistance=\" in a client profile, the client side parameter applies)",
"Keywords":"maximum,object,render,distance,visibility,defaultObjectViewDistance",
"FieldName":"defaultObjectViewDistance",
"InputType":"number",
"MinValue":"0",
"IsFlagArgument":false,
"ParamFieldName":"defaultObjectViewDistance",
"IncludeInCommandLine":false,
"DefaultValue":"1375",
"Placeholder":"1375",
"EnumValues":{}
},
{
"DisplayName":"Enable Gameplay Settings File",
"Category":"DayZ Gameplay Settings",
"Description":"If enabled, allows the use of cfggameplay.json to modify [gameplay settings](https://community.bistudio.com/wiki/DayZ:Gameplay_Settings)",
"Keywords":"gameplay,settings,file,cfggameplay,enablecfggameplayfile",
"FieldName":"enableCfgGameplayFile",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"enableCfgGameplayFile",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Storage Auto Fix",
"Category":"DayZ Misc Settings",
"Description":"If enabled, checks if the persistence files are corrupted and replaces corrupted ones with empty ones",
"Keywords":"storage,fix,persistence,storageautofix",
"FieldName":"storageAutoFix",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"storageAutoFix",
"IncludeInCommandLine":false,
"DefaultValue":"1",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Player Simulation Limit",
"Category":"DayZ Misc Settings",
"Description":"Sets the limit on how much players can be simulated per frame (for server performance gains)",
"Keywords":"player,simulation,limit,simulatedPlayersBatch",
"FieldName":"simulatedPlayersBatch",
"InputType":"number",
"MinValue":"0",
"IsFlagArgument":false,
"ParamFieldName":"simulatedPlayersBatch",
"IncludeInCommandLine":false,
"DefaultValue":"20",
"Placeholder":"20",
"EnumValues":{}
},
{
"DisplayName":"Enable Multi-Threaded Replication",
"Category":"DayZ Misc Settings",
"Description":"If set, enables multi-threaded processing of the server's replication system. The number of worker threads is derived by the \"maxcores\" and \"reservedcores\" parameters for jobsystem in dayzsettings.xml",
"Keywords":"multi,threaded,replication,multithreadedreplication",
"FieldName":"multithreadedReplication",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"multithreadedReplication",
"IncludeInCommandLine":false,
"DefaultValue":"1",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Speed Hack Detection Level",
"Category":"DayZ Misc Settings",
"Description":"Sets the speed back detection level. 1 = strict, 10 = benevolent",
"Keywords":"speed,hack,detection,level,speedhackdetection",
"FieldName":"speedhackDetection",
"InputType":"number",
"MinValue":"1",
"MaxValue":"10",
"IsFlagArgument":false,
"ParamFieldName":"speedhackDetection",
"IncludeInCommandLine":false,
"DefaultValue":"1",
"Placeholder":"1",
"EnumValues":{}
},
{
"DisplayName":"Close Object Spawn Distance",
"Category":"DayZ Misc Settings",
"Description":"Sets the network bubble distance for spawn of close objects with items in them (such as backpacks)",
"Keywords":"network,bubble,distance,spawn,close,objects,networkrangeclose",
"FieldName":"networkRangeClose",
"InputType":"number",
"MinValue":"0",
"IsFlagArgument":false,
"ParamFieldName":"networkRangeClose",
"IncludeInCommandLine":false,
"DefaultValue":"20",
"Placeholder":"20",
"Suffix":"metres",
"EnumValues":{}
},
{
"DisplayName":"Near Object Spawn Distance",
"Category":"DayZ Misc Settings",
"Description":"Sets the network bubble distance for spawn (despawn +10%) of near inventory item objects",
"Keywords":"network,bubble,distance,spawn,near,inventory,objects,networkrangenear",
"FieldName":"networkRangeNear",
"InputType":"number",
"MinValue":"0",
"IsFlagArgument":false,
"ParamFieldName":"networkRangeNear",
"IncludeInCommandLine":false,
"DefaultValue":"150",
"Placeholder":"150",
"Suffix":"metres",
"EnumValues":{}
},
{
"DisplayName":"Far Object Spawn Distance",
"Category":"DayZ Misc Settings",
"Description":"Sets the network bubble distance for spawn (despawn +10%) of far objects (other than inventory items)",
"Keywords":"network,bubble,distance,spawn,far,objects,networkrangefar",
"FieldName":"networkRangeFar",
"InputType":"number",
"MinValue":"0",
"IsFlagArgument":false,
"ParamFieldName":"networkRangeFar",
"IncludeInCommandLine":false,
"DefaultValue":"1000",
"Placeholder":"1000",
"Suffix":"metres",
"EnumValues":{}
},
{
"DisplayName":"Effects Spawn Distance",
"Category":"DayZ Misc Settings",
"Description":"Sets the network bubble distance for spawn of effects (curently only sound effects)",
"Keywords":"network,bubble,distance,spawn,effects,networkrangedistanteffect",
"FieldName":"networkRangeDistantEffect",
"InputType":"number",
"MinValue":"0",
"IsFlagArgument":false,
"ParamFieldName":"networkRangeDistantEffect",
"IncludeInCommandLine":false,
"DefaultValue":"4000",
"Placeholder":"4000",
"Suffix":"metres",
"EnumValues":{}
},
{
"DisplayName":"Log Time Stamp Format",
"Category":"DayZ Misc Settings",
"Description":"Sets the format of the time stamps used in the .RPT log file",
"Keywords":"log,time,stamp,format,timestampformat",
"FieldName":"timeStampFormat",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"timeStampFormat",
"IncludeInCommandLine":false,
"DefaultValue":"Short",
"EnumValues":{
"Short":"Short (default)",
"Full":"Full"
}
},
{
"DisplayName":"Log Server FPS",
"Category":"DayZ Misc Settings",
"Description":"If enabled, the server logs the average server FPS",
"Keywords":"log,average,fps,logaveragefps",
"FieldName":"logAverageFps",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"logAverageFps",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Log Server Memory",
"Category":"DayZ Misc Settings",
"Description":"If enabled, the server logs the server memory usage",
"Keywords":"log,memory,usage,logmemory",
"FieldName":"logMemory",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"logMemory",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Log Player Count",
"Category":"DayZ Misc Settings",
"Description":"If enabled, the server logs the count of currently connected players",
"Keywords":"log,connected,players,logplayers",
"FieldName":"logPlayers",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"logPlayers",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Log Player Hits Only",
"Category":"DayZ Misc Settings",
"Description":"If enabled, the server logs player hits only, instead of all hits, in the admin log",
"Keywords":"log,player,hits,only,adminlogplayerhitsonly",
"FieldName":"adminLogPlayerHitsOnly",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"adminLogPlayerHitsOnly",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Log Placement Actions",
"Category":"DayZ Misc Settings",
"Description":"If enabled, the server logs placement actions such as traps and tents, in the admin log",
"Keywords":"log,placement,action,adminlogplacement",
"FieldName":"adminLogPlacement",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"adminLogPlacement",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Log Basebuilding Actions",
"Category":"DayZ Misc Settings",
"Description":"If enabled, the server logs basebuilding actions (build, dismantle, destroy), in the admin log",
"Keywords":"log,basebuilding,building,action,adminlogbuildactions",
"FieldName":"adminLogBuildActions",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"adminLogBuildActions",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
},
{
"DisplayName":"Log Player Position List",
"Category":"DayZ Misc Settings",
"Description":"If enabled, the server logs the position of players every 5 minutes, in the admin log",
"Keywords":"log,adminlogplayerlist",
"FieldName":"adminLogPlayerList",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"adminLogPlayerList",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"False":"0",
"True":"1"
}
}
]