-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecoconfig.json
1358 lines (1358 loc) · 51.5 KB
/
ecoconfig.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
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"DisplayName":"Game Server Port",
"Category":"Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$ApplicationPort1",
"InputType":"number",
"Hidden":true,
"IsFlagArgument":false,
"ParamFieldName":"GameServerPort",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"Web Server Port",
"Category":"Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$ApplicationPort2",
"InputType":"number",
"Hidden":true,
"IsFlagArgument":false,
"ParamFieldName":"WebServerPort",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"RCON Server Port",
"Category":"Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$RemoteAdminPort",
"InputType":"number",
"Hidden":true,
"IsFlagArgument":false,
"ParamFieldName":"RconServerPort",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"RCON Password",
"Category":"Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$RemoteAdminPassword",
"InputType":"text",
"Hidden":true,
"IsFlagArgument":false,
"ParamFieldName":"RconPassword",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"Server Name",
"Category":"Server Settings",
"Description":"Name of the server as it appears in the client server browser",
"Keywords":"name",
"FieldName":"Description",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"Description",
"IncludeInCommandLine":false,
"DefaultValue":"Eco Server - Powered by AMP",
"EnumValues":{}
},
{
"DisplayName":"Server Description",
"Category":"Server Settings",
"Description":"Long form description of the server when clicked on in the client server browser",
"Keywords":"description",
"FieldName":"DetailedDescription",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"DetailedDescription",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Make Server Public",
"Category":"Server Settings",
"Description":"If enabled, server will appear in the client server browser",
"Keywords":"public",
"FieldName":"PublicServer",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"PublicServer",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Server Password",
"Category":"Server Settings",
"Description":"Password required to connect to the server (except for whitelisted players). Default is no password",
"Keywords":"password",
"FieldName":"Password",
"InputType":"password",
"IsFlagArgument":false,
"ParamFieldName":"Password",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Server Category",
"Category":"Server Settings",
"Description":"Category of the server shown when clients first select a new game",
"Keywords":"category",
"FieldName":"ServerCategory",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"ServerCategory",
"IncludeInCommandLine":false,
"DefaultValue":"Beginner",
"EnumValues":{
"None":"None",
"Beginner":"Beginner",
"Established":"Established",
"BeginnerHard":"Beginner Hard",
"Strange":"Strange"
}
},
{
"DisplayName":"Max Connections",
"Category":"Server Settings",
"Description":"Max number of connections allowed on at one time (negative is infinite)",
"Keywords":"max,connections",
"FieldName":"$MaxUsers",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"MaxConnections",
"IncludeInCommandLine":false,
"DefaultValue":"-1",
"Placeholder":"-1",
"Suffix":"players",
"EnumValues":{}
},
{
"DisplayName":"Max Active Players",
"Category":"Server Settings",
"Description":"Max active players, 0 = Unrestricted. Setting this gives your match score a boost in the server browser when you have fewer players than needed, and an extra boost if players have recently abandoned. (This affects your server score only and is not limiting amount of total users that can connect).",
"Keywords":"max,connections",
"FieldName":"MaxActivePlayers",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"MaxActivePlayers",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"Placeholder":"0",
"Suffix":"players",
"EnumValues":{}
},
{
"DisplayName":"Discord Address",
"Category":"Server Settings",
"Description":"The address of a Discord Server used for players on this world.",
"Keywords":"discord",
"FieldName":"DiscordAddress",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"DiscordAddress",
"IncludeInCommandLine":false,
"DefaultValue":"",
"Suffix":"url",
"Placeholder":"https://discord.gg/myownserver",
"EnumValues":{}
},
{
"DisplayName":"Enable UPnP",
"Category":"Server Settings",
"Description":"If enabled, UPnP will be enabled on the server. Requires a UPnP-enabled router to work",
"Keywords":"upnp",
"FieldName":"UPnPEnabled",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"UPnPEnabled",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"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/739590/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":{}
},
{
"DisplayName": "Specialty Cost Multiplier",
"Category": "Gameplay",
"Description": "Multiplier applied to the cost of learning a specialty. Values below 1 decrease speciality cost, above 1 increase speciality cost.",
"Keywords": "speciality,cost,multiplier",
"FieldName": "SpecialtyCostMultiplier",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "DifficultyModifiers.SpecialtyCostMultiplier",
"IncludeInCommandLine": false,
"DefaultValue": "1.0",
"Placeholder": "1.0",
"EnumValues": {}
},
{
"DisplayName": "Skill Gain Multiplier",
"Category": "Gameplay",
"Description": "Multiplier applied to the rate of skill points gained over time. Values below 1 decrease the rate, above 1 increase the rate.",
"Keywords": "skill,gain,multiplier",
"FieldName": "SkillGainMultiplier",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "DifficultyModifiers.SkillGainMultiplier",
"IncludeInCommandLine": false,
"DefaultValue": "1.0",
"Placeholder": "1.0",
"EnumValues": {}
},
{
"DisplayName": "Speciality Experience Per Level",
"Category": "Gameplay",
"Description": "Factors into experience per level specialties. Default is 25, higher values increase experience requirement, lower values reduce it.",
"Keywords": "speciality,experience",
"FieldName": "SpecialtyExperiencePerLevel",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "DifficultyModifiers.SpecialtyExperiencePerLevel",
"IncludeInCommandLine": false,
"DefaultValue": "25.0",
"Placeholder": "25.0",
"EnumValues": {}
},
{
"DisplayName": "Craft Resource Multiplier",
"Category": "Gameplay",
"Description": "Multiplier applied to crafting resource cost. Values below 1 decrease crafting resource cost, above 1 increase resource cost.",
"Keywords": "craft,resource,multiplier",
"FieldName": "CraftResourceModifier",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "DifficultyModifiers.CraftResourceModifier",
"IncludeInCommandLine": false,
"DefaultValue": "1.0",
"Placeholder": "1.0",
"EnumValues": {}
},
{
"DisplayName": "Craft Time Multiplier",
"Category": "Gameplay",
"Description": "Multiplier applied to crafting time. Values below 1 decrease crafting time, above 1 increase crafting time.",
"Keywords": "craft,time,multiplier",
"FieldName": "CraftTimeModifier",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "DifficultyModifiers.CraftTimeModifier",
"IncludeInCommandLine": false,
"DefaultValue": "1.0",
"Placeholder": "1.0",
"EnumValues": {}
},
{
"DisplayName": "Specialty Refund Percentage",
"Category": "Gameplay",
"Description": "Percentage to refund the player when they remove a specialty.",
"Keywords": "speciality,refund,percentage",
"FieldName": "SpecialtyRefundPercentage",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "DifficultyModifiers.SpecialtyRefundPercentage",
"IncludeInCommandLine": false,
"DefaultValue": "0.5",
"Placeholder":"0.5",
"Suffix":"%",
"EnumValues": {}
},
{
"DisplayName": "Player Experience Per Specialty",
"Category": "Gameplay",
"Description": "Percentage of speciality experience that is also gained as level experience. Not recommended for public servers. Default is 0.0",
"Keywords": "player,experience,speciality",
"FieldName": "PlayerExperiencePerSpecialtyExperience",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "DifficultyModifiers.PlayerExperiencePerSpecialtyExperience",
"IncludeInCommandLine": false,
"DefaultValue": "0.0",
"Placeholder": "0.0",
"EnumValues": {}
},
{
"DisplayName": "Item Stack Size Multiplier",
"Category": "Gameplay",
"Description": "Multiplier applied to item max stack size. Values below 1 decrease max size, above 1 increases max size. A server restart is required for correct calculation.",
"Keywords": "item,stack,size,multiplier",
"FieldName": "StackSizeModifier",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "DifficultyModifiers.StackSizeModifier",
"IncludeInCommandLine": false,
"DefaultValue": "1.0",
"Placeholder": "1.0",
"EnumValues": {}
},
{
"DisplayName": "Item Weight Multiplier",
"Category": "Gameplay",
"Description": "Multiplier applied to item weight. Values below 1 decrease item weight, above 1 increase item weight. A server restart is required for correct calculation.",
"Keywords": "item,weight,multiplier",
"FieldName": "WeightModifier",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "DifficultyModifiers.WeightModifier",
"IncludeInCommandLine": false,
"DefaultValue": "1.0",
"Placeholder": "1.0",
"EnumValues": {}
},
{
"DisplayName": "Fuel Amount Multiplier",
"Category": "Gameplay",
"Description": "Multiplier applied to fuel yield per unit. Values below 1 decrease yield, above 1 increase yield. A Server restart is required for correct calculation.",
"Keywords": "fuel,amount,multiplier",
"FieldName": "FuelModifier",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "DifficultyModifiers.FuelModifier",
"IncludeInCommandLine": false,
"DefaultValue": "1.0",
"Placeholder": "1.0",
"EnumValues": {}
},
{
"DisplayName": "Growth Rate Multiplier",
"Category": "Gameplay",
"Description": "Global scale for how quick plants mature.",
"Keywords": "growth,rate,multiplier",
"FieldName": "GrowthRateModifier",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "DifficultyModifiers.GrowthRateModifier",
"IncludeInCommandLine": false,
"DefaultValue": "1.0",
"Placeholder": "1.0",
"EnumValues": {}
},
{
"DisplayName": "Storage Range Multiplier",
"Category": "Gameplay",
"Description": "Multiplier applied to storage connection range. Values below 1 decrease range, above 1 increases range. A server restart is required for correct calculation.",
"Keywords": "storage,range,multiplier",
"FieldName": "ConnectionRangeModifier",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "DifficultyModifiers.ConnectionRangeModifier",
"IncludeInCommandLine": false,
"DefaultValue": "1.0",
"Placeholder": "1.0",
"EnumValues": {}
},
{
"DisplayName":"Endgame Craft Cost",
"Category":"Gameplay",
"Description":"Endgame crafting cost presets for Laser and Computer Lab. Does not affect work orders in progress.",
"Keywords":"endgame,craft,cost",
"FieldName":"EndgameCraftCost",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"EndgameCraftCost",
"IncludeInCommandLine":false,
"DefaultValue":"Normal",
"EnumValues":{
"Normal":"Normal",
"Expensive":"Expensive"
}
},
{
"DisplayName": "Shelf Life Multiplier",
"Category": "Gameplay",
"Description": "Adjusts the default shelf life of all foods, with higher values causing food to last longer. For example, setting to 2 double the shelf life while setting to 0.5 halves the shelf life.",
"Keywords": "shelf,life,multiplier",
"FieldName": "ShelfLifeMultiplier",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "ShelfLifeMultiplier",
"IncludeInCommandLine": false,
"DefaultValue": "1.0",
"Placeholder":"1.0",
"EnumValues": {}
},
{
"DisplayName": "Exhaustion After Hours",
"Category": "Gameplay",
"Description": "Max hours a user can play per day. After their allotted time, they can still play but not expand calories with work. 0 means no limit.",
"Keywords": "exhaustion,after,hours",
"FieldName": "ExhaustionAfterHours",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "ExhaustionAfterHours",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"Placeholder":"0",
"Suffix":"hrs",
"EnumValues": {}
},
{
"DisplayName": "Rollover Daily Playtime",
"Category": "Gameplay",
"Description": "Remaining playtime can be added to the next day.",
"Keywords": "rollover,daily,playtime",
"FieldName": "RolloverDailyPlaytime",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "RolloverDailyPlaytime",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Maximum Playtime Before Exhausted",
"Category": "Gameplay",
"Description": "If Rollover Daily Playtime is true then this is the maximum hours playtime in a day. This limits how much playtime player can save up by not playing.",
"Keywords": "playtime,before,exhausted",
"FieldName": "MaximumPlaytimeBeforeExhausted",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "MaximumPlaytimeBeforeExhausted",
"IncludeInCommandLine": false,
"DefaultValue": "15.0",
"Placeholder":"15.0",
"Suffix":"hrs",
"EnumValues": {}
},
{
"DisplayName": "Create Meteor",
"Category": "Disasters",
"Description": "Whether or not a meteor exists in the world.",
"Keywords": "create,meteor",
"FieldName": "CreateMeteor",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "CreateMeteor",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Meteor Impact Days",
"Category": "Disasters",
"Description": "Time in days when the meteor will impact. Changing this value will override impact time for current active meteor.",
"Keywords": "meteor,impact",
"FieldName": "MeteorImpactDays",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "MeteorImpactDays",
"IncludeInCommandLine": false,
"DefaultValue": "30.0",
"Placeholder":"30.0",
"Suffix":"days",
"EnumValues": {}
},
{
"DisplayName": "Rent Enabled",
"Category": "Features",
"Description": "Allows players to rent access to a given deed from another when enabled.",
"Keywords": "rent",
"FieldName": "RentEnabled",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "RentEnabled",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Voice Chat Enabled",
"Category": "Features",
"Description": "When enable, players will be able to use voice chat.",
"Keywords": "voice,chat",
"FieldName": "VoiceChatEnabled",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "VoiceChatEnabled",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Food Variety Multiplier Enabled",
"Category": "Features",
"Description": "When enabled, the variety of food you ear will provide a bonus.",
"Keywords": "food,variety,multiplier",
"FieldName": "FoodVarietyMultiplierEnabled",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "FoodVarietyMultiplierEnabled",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Food Tastiness Multiplier Enabled",
"Category": "Features",
"Description": "When enabled each player has unique preferences for each type of food that yields a bonus, and periodic 'cravings' will emerge for an additional bonus.",
"Keywords": "food,tastiness,multiplier",
"FieldName": "FoodTastinessMultiplierEnabled",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "FoodTastinessMultiplierEnabled",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Paused",
"Category": "Features",
"Description": "The World will be on Pause if this option is set.",
"Keywords": "paused",
"FieldName": "Paused",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "Paused",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Unpause At First Login",
"Category": "Features",
"Description": "The World will resume as soon as first player login to the world.",
"Keywords": "unpause,login",
"FieldName": "UnpauseAtFirstLogin",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "UnpauseAtFirstLogin",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Empty Blocks Count As Windows",
"Category": "Features",
"Description": "If set, rooms can have empty blocks serve as windows and still count as room.",
"Keywords": "empty,blocks,count,windows",
"FieldName": "EmptyBlocksCountAsWindows",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "EmptyBlocksCountAsWindows",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Room Category Diminishing Return Rate",
"Category": "Features",
"Description": "Repeated rooms earn this multiple value of the previous ones. This makes duplicate rooms less valuable in a house.",
"Keywords": "room,category,diminishing,return,rate",
"FieldName": "RoomCategoryDiminishingReturnRate",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "RoomCategoryDiminishingReturnRate",
"IncludeInCommandLine": false,
"DefaultValue": "0.5",
"Placeholder": "0.5",
"EnumValues": {}
},
{
"DisplayName": "Wall Blocks Per Window",
"Category": "Features",
"Description": "Specifies how many wall blocks are required to make one empty window or door block without penalty. It counts all wall blocks in the room, including window blocks itself.",
"Keywords": "wall,blocks,window",
"FieldName": "WallBlocksPerWindow",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "WallBlocksPerWindow",
"IncludeInCommandLine": false,
"DefaultValue": "10",
"Placeholder": "10",
"EnumValues": {}
},
{
"DisplayName": "Allow Fast Forward",
"Category": "Features",
"Description": "Can players fast forward time by sleeping in a bed? If all online players sleep, time will accelerate. (This shouldn't be enabled for public servers!).",
"Keywords": "allow,fast,forward",
"FieldName": "AllowFastForward",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "AllowFastForward",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Sleep Time Pass Multiplier",
"Category": "Features",
"Description": "The max time multiplier that will pass while sleeping. Lower this to make the simulation fast-forward more reliably.",
"Keywords": "sleep,time,pass,multiplier",
"FieldName": "SleepTimePassMultiplier",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "SleepTimePassMultiplier",
"IncludeInCommandLine": false,
"DefaultValue": "500.0",
"Placeholder": "500.0",
"EnumValues": {}
},
{
"DisplayName": "Time To Reach Maximum Time Rate",
"Category": "Features",
"Description": "How long it takes to reach the max sleep time. Makes for a smooth transition into sleeping.",
"Keywords": "maximum,time,rate",
"FieldName": "TimeToReachMaximumTimeRate",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "TimeToReachMaximumTimeRate",
"IncludeInCommandLine": false,
"DefaultValue": "20.0",
"Placeholder":"20.0",
"Suffix":"sec",
"EnumValues": {}
},
{
"DisplayName": "Allow Overthrow",
"Category": "Civics",
"Description": "Determines whether overthrowing a government is allowed or not. If set, then a constitution with higher house value than the current can be ratified. Setting this to true also makes it impossible to make laws about placing or crafting a constitution.",
"Keywords": "overthrow",
"FieldName": "AllowOverthrow",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "AllowOverthrow",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Value Addition To Overthrow",
"Category": "Civics",
"Description": "To overthrow an existing government, a constitution must be placed in a building that exceeds the previous constitution's value by this percent. 100 = 100%",
"Keywords": "overthrow",
"FieldName": "ValueAdditionToOverthrow",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "ValueAdditionToOverthrow",
"IncludeInCommandLine": false,
"DefaultValue": "50.0",
"Placeholder":"50.0",
"Suffix":"%",
"EnumValues": {}
},
{
"DisplayName": "Day Range For Active Demographic",
"Category": "Civics",
"Description": "The 'Active Players' demographic will check this many of the past days to determine the hours played by a user.",
"Keywords": "day,range,active,demographic",
"FieldName": "DayRangeForActiveDemographic",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "DayRangeForActiveDemographic",
"IncludeInCommandLine": false,
"DefaultValue": "1.5",
"Placeholder":"1.5",
"Suffix":"days",
"EnumValues": {}
},
{
"DisplayName": "Hours Played To Be Active Demographic",
"Category": "Civics",
"Description": "The 'Active Players' demographic will apply to any users who played this many hours within the past number of days specified above.",
"Keywords": "active,demographic",
"FieldName": "HoursPlayedToBeActiveDemographic",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "HoursPlayedToBeActiveDemographic",
"IncludeInCommandLine": false,
"DefaultValue": "0.5",
"Placeholder":"0.5",
"Suffix":"hrs",
"EnumValues": {}
},
{
"DisplayName": "Percent Of Days To Be Active For Long Term Demographic",
"Category": "Civics",
"Description": "Percent of days a user needs to be considered active (as determined by other property) to be in the 'Long Term demographic'. 1 = 100%",
"Keywords": "days,active,long,term,demographic",
"FieldName": "PercentOfDaysToBeActiveForLongTermDemographic",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "PercentOfDaysToBeActiveForLongTermDemographic",
"IncludeInCommandLine": false,
"DefaultValue": "0.5",
"Placeholder":"0.5",
"Suffix":"%",
"EnumValues": {}
},
{
"DisplayName": "Day Range For Abandoned Demographic",
"Category": "Civics",
"Description": "The 'Abandoned Players' demographic will check this many past days for hours played by the user.",
"Keywords": "range,abandoned,demographic",
"FieldName": "DayRangeForAbandonedDemographic",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "DayRangeForAbandonedDemographic",
"IncludeInCommandLine": false,
"DefaultValue": "7.0",
"Placeholder":"7.0",
"Suffix":"days",
"EnumValues": {}
},
{
"DisplayName": "Hours Played To Be Abandoned Demographic",
"Category": "Civics",
"Description": "The 'Abandoned Players' demographic will apply to any users who have not played more than this many hours in within the past number of days specified above.",
"Keywords": "hours,played,abandoned,demographic",
"FieldName": "HoursPlayedToBeAbandonedDemographic",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "HoursPlayedToBeAbandonedDemographic",
"IncludeInCommandLine": false,
"DefaultValue": "0.0",
"Placeholder":"0.0",
"Suffix":"days",
"EnumValues": {}
},
{
"DisplayName": "Citizen Age For Abandoned Demographic",
"Category": "Civics",
"Description": "The 'Abandoned Players' demographic will only apply to users who have a citizen age greater than this many hours.",
"Keywords": "citizen,age,abandoned,demographic",
"FieldName": "CitizenAgeForAbandonedDemographic",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "CitizenAgeForAbandonedDemographic",
"IncludeInCommandLine": false,
"DefaultValue": "24.0",
"Placeholder":"24.0",
"Suffix":"hrs",
"EnumValues": {}
},
{
"DisplayName": "Minutes Between Civics Updates",
"Category": "Civics",
"Description": "Demographics are updated after this much time has passed.",
"Keywords": "minutes,civics,updates",
"FieldName": "MinutesBetweenCivicsUpdates",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "MinutesBetweenCivicsUpdates",
"IncludeInCommandLine": false,
"DefaultValue": "5.0",
"Placeholder":"5.0",
"Suffix":"min",
"EnumValues": {}
},
{
"DisplayName": "Allow Invalid Civic Container Time In Minutes",
"Category": "Civics",
"Description": "How much time can a civics object have an invalid or missing host object before it goes invalid?",
"Keywords": "invalid,civic,container",
"FieldName": "AllowInvalidCivicContainerTimeInMinutes",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "AllowInvalidCivicContainerTimeInMinutes",
"IncludeInCommandLine": false,
"DefaultValue": "20.0",
"Placeholder":"20.0",
"Suffix":"min",
"EnumValues": {}
},
{
"DisplayName": "Recurring Transfer Frequency In Minutes",
"Category": "Civics",
"Description": "Recurring transfers like rent and wages are paid after this many minutes.",
"Keywords": "recurring,transfer,frequency",
"FieldName": "RecurringTransferFrequencyInMinutes",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "RecurringTransferFrequencyInMinutes",
"IncludeInCommandLine": false,
"DefaultValue": "30.0",
"Placeholder":"30.0",
"Suffix":"min",
"EnumValues": {}
},
{
"DisplayName": "Allow Laws To Prevent Login Or Play",
"Category": "Civics",
"Description": "Can laws prevent someone from logging in or playing? Enable with caution: users can create a law that blocks everyone from logging in if this is enabled.",
"Keywords": "laws,prevent,login,play",
"FieldName": "AllowLawsToPreventLoginOrPlay",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "AllowLawsToPreventLoginOrPlay",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Maximum Election Hours",
"Category": "Civics",
"Description": "After this many hours, the election will end with or without a winner.",
"Keywords": "election,hours",
"FieldName": "MaximumElectionHours",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "BasicElectionSettings.MaximumElectionHours",
"IncludeInCommandLine": false,
"DefaultValue": "24.0",
"Placeholder":"24.0",
"Suffix":"hrs",
"EnumValues": {}
},
{
"DisplayName": "Minimum Percent of Eligible Voters Required",
"Category": "Civics",
"Description": "The election will not produce a winner unless this percentage of eligible voters have cast their vote.",
"Keywords": "eligible,voters",
"FieldName": "MinimumPercentOfEligibleVotersRequired",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "BasicElectionSettings.MinimumPercentOfEligibleVotersRequired",
"IncludeInCommandLine": false,
"DefaultValue": "10.0",
"Placeholder":"10.0",
"Suffix":"%",
"EnumValues": {}
},
{
"DisplayName": "Minimum Days Between Elections of This Type",
"Category": "Civics",
"Description": "Once an election of this type completes, another of the same type cannot be started for this many days.",
"Keywords": "elections",
"FieldName": "MinimumDaysBetweenElectionsOfThisType",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "BasicElectionSettings.MinimumDaysBetweenElectionsOfThisType",
"IncludeInCommandLine": false,
"DefaultValue": "0.0",
"Placeholder":"0.0",
"Suffix":"days",
"EnumValues": {}
},
{
"DisplayName": "End Election Early When This Percent Have Voted",
"Category": "Civics",
"Description": "If this percentage of voters have cast their vote, then the election will end early (but not sooner than the Minimum Election Time).",
"Keywords": "election,voted",
"FieldName": "EndElectionEarlyWhenThisPercentHaveVoted",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "BasicElectionSettings.EndElectionEarlyWhenThisPercentHaveVoted",
"IncludeInCommandLine": false,
"DefaultValue": "95.0",
"Placeholder":"95.0",
"Suffix":"%",
"EnumValues": {}
},
{
"DisplayName": "Percent Of All Voters To Instant Win",
"Category": "Civics",
"Description": "If this percent of *all possible voters* votes yes, the election will instant-finish.",
"Keywords": "voters,instant,win",
"FieldName": "PercentOfAllVotersToInstantWin",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "BasicElectionSettings.PercentOfAllVotersToInstantWin",
"IncludeInCommandLine": false,
"DefaultValue": "51.0",
"Placeholder":"51.0",
"Suffix":"%",
"EnumValues": {}
},
{
"DisplayName": "Percent Of All Voters To Instant Lose",
"Category": "Civics",
"Description": "If this percent of *all possible voters* votes no, the election will instant-fail.",
"Keywords": "voters,instant,lose",
"FieldName": "PercentOfAllVotersToInstantLose",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "BasicElectionSettings.PercentOfAllVotersToInstantLose",
"IncludeInCommandLine": false,
"DefaultValue": "51.0",
"Placeholder":"51.0",
"Suffix":"%",
"EnumValues": {}
},
{
"DisplayName": "Anonymous Voting",
"Category": "Civics",
"Description": "Should the way a citizen votes be hidden?",
"Keywords": "anonymous,voting",
"FieldName": "AnonymousVoting",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "BasicElectionSettings.AnonymousVoting",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Twitch Vote Weight",
"Category": "Civics",
"Description": "The percent value a vote from a twitch viewer counts relative to vote from a player.",
"Keywords": "twitch,vote,weight",
"FieldName": "TwitchVoteWeight",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "BasicElectionSettings.TwitchVoteWeight",
"IncludeInCommandLine": false,
"DefaultValue": "0.1",
"Placeholder":"0.1",
"EnumValues": {}
},
{
"DisplayName": "Max Percent Twitch Votes",
"Category": "Civics",
"Description": "The maximum percent contribution all combined Twitch voters can have in election.",
"Keywords": "twitch,votes",
"FieldName": "MaxPercentTwitchVotes",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "BasicElectionSettings.MaxPercentTwitchVotes",
"IncludeInCommandLine": false,
"DefaultValue": "0.5",
"Placeholder":"0.5",
"Suffix":"%",
"EnumValues": {}
},
{
"DisplayName": "Save Name",
"Category": "Server Settings",
"Description": "Name of the save to load at startup.",