forked from CubeCoders/AMPTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project-zomboidconfig.json
executable file
·964 lines (964 loc) · 34 KB
/
project-zomboidconfig.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
955
956
957
958
959
960
961
962
963
964
[
{
"DisplayName":"Steam Port",
"Category":"PZ Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$ApplicationPort1",
"InputType":"number",
"IsFlagArgument":false,
"Hidden":true,
"ParamFieldName":"DefaultPort",
"IncludeInCommandLine":false,
"DefaultValue":"16261",
"EnumValues":{}
},
{
"DisplayName":"Direct Port",
"Category":"PZ Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$ApplicationPort2",
"InputType":"number",
"IsFlagArgument":false,
"Hidden":true,
"ParamFieldName":"UDPPort",
"IncludeInCommandLine":false,
"DefaultValue":"16262",
"EnumValues":{}
},
{
"DisplayName":"RCON Port",
"Category":"PZ Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$RemoteAdminPort",
"InputType":"number",
"IsFlagArgument":false,
"Hidden":true,
"ParamFieldName":"RCONPort",
"IncludeInCommandLine":false,
"DefaultValue":"27015",
"EnumValues":{}
},
{
"DisplayName":"Server Public Name",
"Category":"PZ Server Settings",
"Description":"Server name as shown in the in-game and/or Steam browsers",
"Keywords":"public,name",
"FieldName":"PublicName",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"PublicName",
"IncludeInCommandLine":false,
"DefaultValue":"My PZ Server",
"EnumValues":{}
},
{
"DisplayName":"Make Server Public",
"Category":"PZ Server Settings",
"Description":"If enabled, the server will be visible in the in-game browser (Steam-enabled servers are always visible in the Steam server browser)",
"Keywords":"public,steam",
"FieldName":"Public",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"Public",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Server Public Description",
"Category":"PZ Server Settings",
"Description":"Description displayed in the in-game browser. Use \"\\n\" to create a new line in the description",
"Keywords":"public,description",
"FieldName":"PublicDescription",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"PublicDescription",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Server Password",
"Category":"PZ Server Settings",
"Description":"Password to connect to the server. Default is no password",
"Keywords":"password",
"FieldName":"Password",
"InputType":"password",
"IsFlagArgument":false,
"ParamFieldName":"Password",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Admin Password",
"Category":"PZ Server Settings",
"Description":"In-game \"admin\" user password (not the server password). Set before first running the server, or you will be prompted to do so in the console",
"Keywords":"admin,password",
"FieldName":"adminpassword",
"InputType":"RandomPassword",
"IsFlagArgument":false,
"ParamFieldName":"adminpassword",
"IncludeInCommandLine":true,
"DefaultValue":"",
"SkipIfEmpty":true,
"EnumValues":{}
},
{
"DisplayName":"RCON Password",
"Category":"PZ Server Settings",
"Description":"Password to connect to RCON. NOTE: You should change this after first installing the server",
"Keywords":"rcon,password",
"FieldName":"RCONPassword",
"InputType":"RandomPassword",
"IsFlagArgument":false,
"ParamFieldName":"RCONPassword",
"IncludeInCommandLine":false,
"DefaultValue":"Password123",
"EnumValues":{}
},
{
"DisplayName":"Welcome Message",
"Category":"PZ Server Settings",
"Description":"Welcome message when players join the server",
"Keywords":"welcome,message,motd",
"FieldName":"ServerWelcomeMessage",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"ServerWelcomeMessage",
"IncludeInCommandLine":false,
"DefaultValue":"Welcome to Project Zomboid Multiplayer! <LINE> <LINE> To interact with the Chat panel: press Tab, T, or Enter. <LINE> <LINE> The Tab key will change the target stream of the message. <LINE> <LINE> Global Streams: /all <LINE> Local Streams: /say, /yell <LINE> Special Streams: /whisper, /safehouse, /faction. <LINE> <LINE> Press the Up arrow to cycle through your message history. Click the Gear icon to customize chat. <LINE> <LINE> Happy surviving!",
"EnumValues":{}
},
{
"DisplayName":"Player Limit",
"Category":"PZ Server Settings",
"Description":"Maximum number of players that may be on the server at one time (excluding admins). Player counts above 32 may affect performance",
"Keywords":"maximum,players",
"FieldName":"$MaxUsers",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"MaxPlayers",
"IncludeInCommandLine":false,
"DefaultValue":"32",
"Suffix":"players",
"EnumValues":{}
},
{
"DisplayName":"Enable Open Server",
"Category":"PZ Server Settings",
"Description":"If enabled, players may join the server without already being included in the whitelist",
"Keywords":"whitelist,open",
"FieldName":"Open",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"Open",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Automatically Whitelist Players",
"Category":"PZ Server Settings",
"Description":"Automatically add players to the whitelist (for open servers)",
"Keywords":"whitelist,add,automatic",
"FieldName":"AutoCreateUserInWhiteList",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"AutoCreateUserInWhiteList",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Memory Limit",
"Category":"PZ Server Settings",
"Description":"Java's maximum heap size",
"Keywords":"maximum,memory,limit",
"FieldName":"MaxMemory",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"MaxMemory",
"IncludeInCommandLine":false,
"DefaultValue":"4096",
"Suffix":"MB",
"EnumValues":{}
},
{
"DisplayName":"Java Garbage Collection Algorithm (Windows)",
"Category":"PZ Server Settings",
"Description":"Default Java garbage collection algorithm is ZGC, but G1GC can be selected for older Windows versions that cannot use ZGC",
"Keywords":"garbage,collection,algorithm",
"FieldName":"JavaGCAlgo",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"JavaGCAlgo",
"IncludeInCommandLine":false,
"DefaultValue":"-XX:+UseZGC",
"EnumValues":{
"-XX:+UseZGC":"ZGC Algorithm (default)",
"-XX:+UseG1GC":"G1GC Algorithm"
}
},
{
"DisplayName":"Enable Valve Anti-cheat (Steam VAC)",
"Category":"PZ Server Settings",
"Description":"",
"Keywords":"VAC,cheat",
"FieldName":"SteamVAC",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"SteamVAC",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Steam Integration",
"Category":"PZ Server Settings",
"Description":"Enable Steam integration",
"Keywords":"steam,integration",
"FieldName":"SteamInt",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"SteamInt",
"IncludeInCommandLine":false,
"DefaultValue":"1",
"EnumValues":{
"True":"1",
"False":"0"
}
},
{
"DisplayName":"Maps",
"Category":"PZ Server Settings",
"Description":"Semi-colon separated list of maps to load on the server. \"Muldraugh, KY\" should be last in the list",
"Keywords":"map",
"FieldName":"Map",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"Map",
"IncludeInCommandLine":false,
"DefaultValue":"Muldraugh, KY",
"Placeholder":"RavenCreek;BedfordFalls;Muldraugh, KY",
"EnumValues":{}
},
{
"DisplayName":"Mods",
"Category":"PZ Server Settings",
"Description":"Semi-colon separated list of mod IDs to install on the server. The workshop IDs for the mods also need to be added to Workshop Items",
"Keywords":"mods",
"FieldName":"Mods",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"Mods",
"IncludeInCommandLine":false,
"DefaultValue":"",
"Placeholder":"67commando;86oshkoshP19A;92amgeneralM998",
"EnumValues":{}
},
{
"DisplayName":"Workshop Items",
"Category":"PZ Server Settings",
"Description":"Semi-colon separated list of IDs of workshop items to install on the server. Mod IDs also need to be added to Mods. NOTE: Don't use \"Steam workshop items\" under SteamCMD and Updates",
"Keywords":"workshop,items",
"FieldName":"WorkshopItems",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"WorkshopItems",
"IncludeInCommandLine":false,
"DefaultValue":"",
"Placeholder":"2478247379;2566953935",
"EnumValues":{}
},
{
"DisplayName":"Display Player Usernames",
"Category":"PZ Server Settings",
"Description":"If enabled, display players' usernames above their heads in-game",
"Keywords":"display,name",
"FieldName":"DisplayUserName",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"DisplayUserName",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Display Player Character Names",
"Category":"PZ Server Settings",
"Description":"If enabled, display players' first and last names above their heads in-game instead of usernames",
"Keywords":"display,character,name",
"FieldName":"ShowFirstAndLastName",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"ShowFirstAndLastName",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Steam Scoreboard",
"Category":"PZ Server Settings",
"Description":"Sets whether steam usernames and avatars are shown in the player list",
"Keywords":"steam,scoreboard",
"FieldName":"SteamScoreboard",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"SteamScoreboard",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"true":"Shown to everyone",
"false":"Shown to no-one",
"admins":"Shown to admins only"
}
},
{
"DisplayName":"Pause When Empty",
"Category":"PZ Server Settings",
"Description":"If enabled, game time stops when there are no players online",
"Keywords":"pause,empty",
"FieldName":"PauseEmpty",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"PauseEmpty",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Auto World Save Interval",
"Category":"PZ Server Settings",
"Description":"Time between each automatic save of loaded parts of the map (0 = never)",
"Keywords":"save,interval",
"FieldName":"SaveWorldEveryMinutes",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"SaveWorldEveryMinutes",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"Suffix":"minutes",
"EnumValues":{}
},
{
"DisplayName":"Enable UPnP",
"Category":"PZ Server Settings",
"Description":"If enabled, the server will attempt to configure automatic port forwarding on a compatible router",
"Keywords":"upnp",
"FieldName":"UPnP",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"UPnP",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Additional Java Startup Parameters",
"Category":"PZ Server Settings",
"Description":"Additional Java arguments (not server arguments) as startup parameters that are not otherwise set by AMP. Use with care",
"Keywords":"custom,java,arguments,parameters",
"FieldName":"CustomJavaArgs",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"CustomJavaArgs",
"IncludeInCommandLine":false,
"DefaultValue":"",
"Placeholder":"-Ddebug",
"EnumValues":{}
},
{
"DisplayName":"Server Local Name",
"Category":"PZ Server Settings",
"Description":"Server name as stored locally. WARNING: Do not change unless you know what you are doing! Also update the server if this is changed",
"Keywords":"server,name",
"FieldName":"servername",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"servername",
"IncludeInCommandLine":true,
"DefaultValue":"servertest",
"EnumValues":{}
},
{
"DisplayName":"Additional Server Startup Parameters",
"Category":"PZ Server Settings",
"Description":"Additional server arguments (not Java arguments) as 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":"-ip 192.168.1.10",
"EnumValues":{}
},
{
"DisplayName":"Set Spawn Point",
"Category":"PZ Gameplay Settings",
"Description":"Sets the spawn point for every new player. Default is 0,0,0. [Find desired coordinates](https://map.projectzomboid.com/)",
"Keywords":"spawnpoint,map",
"FieldName":"SpawnPoint",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"SpawnPoint",
"IncludeInCommandLine":false,
"DefaultValue":"0,0,0",
"EnumValues":{}
},
{
"DisplayName":"Spawn Items",
"Category":"PZ Gameplay Settings",
"Description":"Comma separated list of item types that new players spawn with",
"Keywords":"spawn,items",
"FieldName":"SpawnItems",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"SpawnItems",
"IncludeInCommandLine":false,
"DefaultValue":"",
"Placeholder":"Base.BaseballBat,Base.WaterBottleFull",
"EnumValues":{}
},
{
"DisplayName":"Allow PvP",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, players can hurt and kill other players",
"Keywords":"pvp",
"FieldName":"PVP",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"PVP",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Enable PvP Toggle (Safety System)",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, allows players to enter and leave PvP mode on an individual basis. Requires \"Allow PvP\" to be enabled",
"Keywords":"safetysystem,pvp",
"FieldName":"SafetySystem",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"SafetySystem",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Show Player PvP Status",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, displays a skull icon above the heads of players in PvP mode",
"Keywords":"pvp,status,safety",
"FieldName":"ShowSafety",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"ShowSafety",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"PvP Toggle Timer",
"Category":"PZ Gameplay Settings",
"Description":"Time taken for a player to enter and leave PvP mode",
"Keywords":"safetysystem,pvp,timer",
"FieldName":"SafetyToggleTimer",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"SafetyToggleTimer",
"IncludeInCommandLine":false,
"DefaultValue":"2",
"Suffix":"seconds",
"EnumValues":{}
},
{
"DisplayName":"PvP Cooldown Timer",
"Category":"PZ Gameplay Settings",
"Description":"Delay before a player can enter or leave PvP mode again",
"Keywords":"safetysystem,pvp,timer,cooldown",
"FieldName":"SafetyCooldownTimer",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"SafetyCooldownTimer",
"IncludeInCommandLine":false,
"DefaultValue":"3",
"Suffix":"seconds",
"EnumValues":{}
},
{
"DisplayName":"Enable Factions",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, factions can be created and used",
"Keywords":"factions",
"FieldName":"Faction",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"Faction",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Game Days For Factions",
"Category":"PZ Gameplay Settings",
"Description":"Number of in-game days that a player must survive for before they can create a faction",
"Keywords":"factions",
"FieldName":"FactionDaySurvivedToCreate",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"FactionDaySurvivedToCreate",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"Suffix":"days",
"EnumValues":{}
},
{
"DisplayName":"Enable Global Chat",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, players can communicate with everyone (using the /all command in chat)",
"Keywords":"chat,global",
"FieldName":"GlobalChat",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"GlobalChat",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Nighttime Length",
"Category":"PZ Gameplay Settings",
"Description":"Sets how long nighttime lasts depending on daytime: 0.5 means twice as long, 2 means half the normal time",
"Keywords":"nighttime,night",
"FieldName":"nightlengthmodifier",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"nightlengthmodifier",
"IncludeInCommandLine":false,
"DefaultValue":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Don't Allow Fire",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, fires are not allowed (except campfires). Enable if fires cause problems for your server",
"Keywords":"fire",
"FieldName":"NoFire",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"NoFire",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Announce Player Death",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, a global message is displayed in the chat when a player dies",
"Keywords":"announce,death",
"FieldName":"AnnounceDeath",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"AnnounceDeath",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Minutes Per Book Page",
"Category":"PZ Gameplay Settings",
"Description":"Sets the number of in-game minutes it takes to read one page of a book",
"Keywords":"minutes,book,page",
"FieldName":"MinutesPerPage",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"MinutesPerPage",
"IncludeInCommandLine":false,
"DefaultValue":"1.0",
"Suffix":"minutes",
"EnumValues":{}
},
{
"DisplayName":"Minimum Period for Loot Respawn",
"Category":"PZ Gameplay Settings",
"Description":"Sets the in-game hours after which all containers that have been looted once will respawn loot (0 = never)",
"Keywords":"loot,respawn",
"FieldName":"HoursForLootRespawn",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"HoursForLootRespawn",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"Suffix":"hours",
"EnumValues":{}
},
{
"DisplayName":"Maximum Items for Loot Respawn",
"Category":"PZ Gameplay Settings",
"Description":"Sets the maximum number of items that containers can hold to be allowed to respawn. If the number of items is less than or equal to the number set, loot will respawn",
"Keywords":"loot,respawn,maximum",
"FieldName":"MaxItemsForLootRespawn",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"MaxItemsForLootRespawn",
"IncludeInCommandLine":false,
"DefaultValue":"4",
"Suffix":"items",
"EnumValues":{}
},
{
"DisplayName":"Construction Prevents Respawn",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, items will not respawn in buildings that players have barricaded or built in",
"Keywords":"loot,respawn,construction",
"FieldName":"ConstructionPreventsLootRespawn",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"ConstructionPreventsLootRespawn",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Allow Player Safehouses",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, both admins and players can claim safehouses",
"Keywords":"safehouse",
"FieldName":"PlayerSafehouse",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"PlayerSafehouse",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Allow Admin Safehouses",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, only admins can claim safehouses",
"Keywords":"safehouse",
"FieldName":"AdminSafehouse",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"AdminSafehouse",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Allow Safehouse Trespass",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, non-members can enter a safehouse without being invited",
"Keywords":"safehouse,trespass",
"FieldName":"SafehouseAllowTrepass",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"SafehouseAllowTrepass",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Allow Safehouse Trespass",
"Category":"PZ Gameplay Settings",
"Description":"[Backup setting given typo in config key, to future proof for correction]",
"Keywords":"",
"FieldName":"SafehouseAllowTrepass",
"InputType":"text",
"IsFlagArgument":false,
"Hidden":true,
"ParamFieldName":"SafehouseAllowTrespass",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"Allow Safehouse Fire",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, safehouses can be damaged by fire",
"Keywords":"safehouse,fire",
"FieldName":"SafehouseAllowFire",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"SafehouseAllowFire",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Allow Safehouse Loot",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, non-members can loot safehouses",
"Keywords":"safehouse,loot",
"FieldName":"SafehouseAllowLoot",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"SafehouseAllowLoot",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Allow Safehouse Respawn",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, players will respawn in a safehouse they were a member of before death",
"Keywords":"safehouse,respawn",
"FieldName":"SafehouseAllowRespawn",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"SafehouseAllowRespawn",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Game Days For Safehouse",
"Category":"PZ Gameplay Settings",
"Description":"Number of in-game days that a player must survive for before they can claim a safehouse",
"Keywords":"safehouse,days",
"FieldName":"SafehouseDaySurvivedToClaim",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"SafehouseDaySurvivedToClaim",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"Suffix":"days",
"EnumValues":{}
},
{
"DisplayName":"Safehouse Removal Period",
"Category":"PZ Gameplay Settings",
"Description":"Players are automatically removed from a safehouse they have not visited for this many real-time hours",
"Keywords":"safehouse,house,removal",
"FieldName":"SafeHouseRemovalTime",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"SafeHouseRemovalTime",
"IncludeInCommandLine":false,
"DefaultValue":"144",
"Suffix":"hours",
"EnumValues":{}
},
{
"DisplayName":"Allow Sledgehammer Destruction",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, players can destroy world objects with sledgehammers",
"Keywords":"sledgehammer,destruction",
"FieldName":"AllowDestructionBySledgehammer",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"AllowDestructionBySledgehammer",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Allow Only Safehouse Sledgehammers",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, players can destroy world objects with sledgehammers only in their safehouse. Requires \"Allow Sledgehammer Destruction\" to be enabled",
"Keywords":"sledgehammer,destruction",
"FieldName":"SledgehammerOnlyInSafehouse",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"SledgehammerOnlyInSafehouse",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Allow Sleep",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, players are allowed to sleep when tired, but do not need to",
"Keywords":"sleep",
"FieldName":"SleepAllowed",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"SleepAllowed",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Require Sleep",
"Category":"PZ Gameplay Settings",
"Description":"If enabled, players become tired and need to sleep. Requires \"Allow Sleep\" to be enabled",
"Keywords":"sleep",
"FieldName":"SleepNeeded",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"SleepNeeded",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Enable Discord Integration",
"Category":"PZ Discord Settings",
"Description":"If enabled, allows global text chat integration with a Discord channel. Requires a valid bot token to be set under \"Discord Token\"",
"Keywords":"discord",
"FieldName":"DiscordEnable",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"DiscordEnable",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"True":"true",
"False":"false"
}
},
{
"DisplayName":"Discord Token",
"Category":"PZ Discord Settings",
"Description":"Bot token to access the Discord servers",
"Keywords":"discord,token",
"FieldName":"DiscordToken",
"InputType":"password",
"IsFlagArgument":false,
"ParamFieldName":"DiscordToken",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Discord Channel",
"Category":"PZ Discord Settings",
"Description":"Name of the Discord channel to integrate with. Use \"Discord ID\" if this does not work",
"Keywords":"discord,channel",
"FieldName":"DiscordChannel",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"DiscordChannel",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Discord Channel ID",
"Category":"PZ Discord Settings",
"Description":"ID of the Discord channel to integrate with. Use this if \"Discord Channel\" does not work",
"Keywords":"discord,channel,id",
"FieldName":"DiscordChannelID",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"DiscordChannelID",
"IncludeInCommandLine":false,
"DefaultValue":"",
"Placeholder":"475182341782896651",
"EnumValues":{}
},
{
"DisplayName":"Enable Beta Branch",
"Category":"SteamCMD and Updates",
"Description":"If enabled, allows beta branches (branches other than \"public\") to be installed. Specify the branch under \"Selected Beta Branch\". NOTE: Update the server after switching branches!",
"Keywords":"enable,beta",
"FieldName":"EnableBeta",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Selected Beta Branch",
"Category":"SteamCMD and Updates",
"Description":"[Beta branch](https://steamdb.info/app/380870/depots/) to install. Requires \"Enable Beta Branch\" to be enabled. Set any required password under \"Beta Password\". NOTE: Update the server after switching branches!",
"Keywords":"beta,branch",
"FieldName":"BetaBranch",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"",
"IncludeInCommandLine":false,
"DefaultValue":"",
"Placeholder":"",
"EnumValues":{}
}
]