-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecoconfig.json
More file actions
1530 lines (1529 loc) · 59 KB
/
Copy pathecoconfig.json
File metadata and controls
1530 lines (1529 loc) · 59 KB
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":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"",
"Keywords":"",
"FieldName":"$ApplicationPort1",
"InputType":"number",
"Hidden":true,
"ParamFieldName":"GameServerPort",
"EnumValues":{}
},
{
"DisplayName":"Web Server Port",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"",
"Keywords":"",
"FieldName":"$ApplicationPort2",
"InputType":"number",
"Hidden":true,
"ParamFieldName":"WebServerPort",
"EnumValues":{}
},
{
"DisplayName":"RCON Server Port",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"",
"Keywords":"",
"FieldName":"$RemoteAdminPort",
"InputType":"number",
"Hidden":true,
"ParamFieldName":"RconServerPort",
"EnumValues":{}
},
{
"DisplayName":"Server Name",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Name of the server as it appears in the client server browser",
"Keywords":"name",
"FieldName":"Description",
"InputType":"text",
"ParamFieldName":"Name",
"DefaultValue":"Eco Server - Powered by AMP",
"EnumValues":{}
},
{
"DisplayName":"Server Name",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"",
"Keywords":"",
"FieldName":"Description",
"InputType":"text",
"Hidden":true,
"ParamFieldName":"Description",
"EnumValues":{}
},
{
"DisplayName":"Server Description",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Long form description of the server when clicked on in the client server browser",
"Keywords":"description",
"FieldName":"DetailedDescription",
"InputType":"Textarea",
"ParamFieldName":"DetailedDescription",
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Strange Cloud Authentication Mode",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Sets the Strange Cloud authentication mode for the server. Configure the relevant authentication settings accordingly",
"Keywords":"strange,cloud,auth,authentication,mode",
"FieldName":"AuthMode",
"InputType":"enum",
"ParamFieldName":"AuthMode",
"DefaultValue":"",
"EnumValues":{
"":"None",
"-offline ":"Offline mode",
"-username=\"{{AuthUsername}}\" -password=\"{{AuthPassword}}\" ":"Username and password",
"-userToken=\"{{AuthUserToken}}\" ":"User token",
"-steamTicket=\"{{AuthSteamTicket}}\" ":"Steam ticket"
}
},
{
"DisplayName":"Strange Cloud Auth Username",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Sets the authentication username if 'Username and password' is selected under Strange Cloud Authentication Mode",
"Keywords":"strange,cloud,auth,authentication,username",
"FieldName":"AuthUsername",
"InputType":"text",
"ParamFieldName":"AuthUsername",
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Strange Cloud Auth Password",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Sets the authentication password if 'Username and password' is selected under Strange Cloud Authentication Mode",
"Keywords":"strange,cloud,auth,authentication,password",
"FieldName":"AuthPassword",
"InputType":"text",
"ParamFieldName":"AuthPassword",
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Strange Cloud Auth User Token",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Sets the authentication user token if 'User token' is selected under Strange Cloud Authentication Mode",
"Keywords":"strange,cloud,auth,authentication,user,token,usertoken",
"FieldName":"AuthUserToken",
"InputType":"text",
"ParamFieldName":"AuthUserToken",
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Strange Cloud Auth Steam Ticket",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Sets the authentication Steam ticket if 'Steam ticket' is selected under Strange Cloud Authentication Mode",
"Keywords":"strange,cloud,auth,authentication,steam,ticket,steamticket",
"FieldName":"AuthSteamTicket",
"InputType":"text",
"ParamFieldName":"AuthSteamTicket",
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Make Server Public",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"If enabled, server will appear in the client server browser",
"Keywords":"public",
"FieldName":"PublicServer",
"InputType":"checkbox",
"ParamFieldName":"PublicServer",
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Server Password",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Password required to connect to the server (except for whitelisted players). Default is no password",
"Keywords":"password",
"FieldName":"Password",
"InputType":"password",
"ParamFieldName":"Password",
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"RCON Password",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"See the Security and Privacy menu for configurable options for the server's RCON",
"Keywords":"rcon,password",
"FieldName":"$RemoteAdminPassword",
"InputType":"hidden",
"ParamFieldName":"RconPassword",
"EnumValues":{}
},
{
"DisplayName":"Server Category",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Category of the server shown when clients first select a new game",
"Keywords":"category",
"FieldName":"ServerCategory",
"InputType":"enum",
"ParamFieldName":"ServerCategory",
"DefaultValue":"None",
"EnumValues":{
"None":"None",
"Beginner":"Beginner",
"Established":"Established",
"BeginnerHard":"Beginner Hard",
"Strange":"Strange"
}
},
{
"DisplayName":"Player Limit",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Maximum number of players that may connect to the server. Default is no limit (-1)",
"Keywords":"players,limit",
"FieldName":"$MaxUsers",
"InputType":"number",
"MinValue":"-1",
"ParamFieldName":"DefaultSlots",
"DefaultValue":"-1",
"Placeholder":"-1",
"Suffix":"players",
"EnumValues":{}
},
{
"DisplayName":"Server IP Binding",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Internal server IP-address the server should bind to. Default is Any (all IPs on the host)",
"Keywords":"ip,binding",
"FieldName":"IPAddress",
"InputType":"text",
"ParamFieldName":"IPAddress",
"DefaultValue":"Any",
"EnumValues":{}
},
{
"DisplayName":"RCON IP Binding",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Internal server IP-address the RCON server should bind to. Default is Any (all IPs on the host)",
"Keywords":"rcon,ip,binding",
"FieldName":"RconIPAddress",
"InputType":"text",
"ParamFieldName":"RconIPAddress",
"DefaultValue":"Any",
"EnumValues":{}
},
{
"DisplayName":"Discord Address",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"ID for a Discord server (the ID after \"discord.gg/\") to provide a link to",
"Keywords":"discord",
"FieldName":"DiscordAddress",
"InputType":"text",
"ParamFieldName":"DiscordAddress",
"DefaultValue":"",
"Placeholder":"78xKTd",
"EnumValues":{}
},
{
"DisplayName":"Enable UPnP",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"If enabled, UPnP will be enabled on the server. Requires a UPnP-enabled router to work",
"Keywords":"upnp",
"FieldName":"UPnPEnabled",
"InputType":"checkbox",
"ParamFieldName":"UPnPEnabled",
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Enable Beta Branch",
"Category":"Updates",
"Subcategory":"Steam Downloads:download",
"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",
"ParamFieldName":"",
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Selected Beta Branch",
"Category":"Updates",
"Subcategory":"Steam Downloads:download",
"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",
"ParamFieldName":"",
"DefaultValue":"",
"Placeholder":"",
"EnumValues":{}
},
{
"DisplayName":"Save Name",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Name of the save to load at startup.",
"Keywords":"save,name",
"FieldName":"SaveName",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"SaveName",
"IncludeInCommandLine":false,
"DefaultValue":"Game",
"Placeholder":"Game",
"EnumValues":{}
},
{
"DisplayName":"Save Frequency",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"How often to write changed data to disk.",
"Keywords":"save,frequency",
"FieldName":"SaveFrequency",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"SaveFrequency",
"IncludeInCommandLine":false,
"DefaultValue":"61",
"Placeholder":"61",
"Suffix":"seconds",
"EnumValues":{}
},
{
"DisplayName":"Cleanup Files On Exceptions",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"When enabled, removes failed to load objects upon loading.",
"Keywords":"cleanup,files,exceptions",
"FieldName":"CleanupFilesOnExceptions",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"CleanupFilesOnExceptions",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Storage Directory",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Path for storage (leave as \"Storage\" for default settings).",
"Keywords":"storage,directory",
"FieldName":"StorageDirectory",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"StorageDirectory",
"IncludeInCommandLine":false,
"DefaultValue":"Storage",
"Placeholder":"Storage",
"EnumValues":{}
},
{
"DisplayName":"New Game Template",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Path to file to start game from for a new world, if blank (null) then the world will be generated.",
"Keywords":"new,game,template",
"FieldName":"NewGameTemplate",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"NewGameTemplate",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Auto Shutdown Hour",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Defines the announcement countdown intervalss. The second countdown is handled by the Countdown Start setting. -1 = disabled)",
"Keywords":"auto,shutdown,hour",
"FieldName":"AutoShutdownHour",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"AutoShutdownHour",
"IncludeInCommandLine":false,
"DefaultValue":"-1",
"Placeholder":"-1",
"Suffix":"minutes",
"EnumValues":{}
},
{
"DisplayName":"Auto Shutdown Reason",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Specifies the message to be sent when the automatic restart auto shutdown occurs.",
"Keywords":"auto,shutdown,reason",
"FieldName":"AutoShutdownReason",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"AutoShutdownReason",
"IncludeInCommandLine":false,
"DefaultValue":"Automatic Restart",
"Placeholder":"Automatic Restart",
"EnumValues":{}
},
{
"DisplayName":"Countdown Start",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Specifies how many seconds until the shutdown counter starts.",
"Keywords":"countdown,start",
"FieldName":"CountdownStart",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"CountdownStart",
"IncludeInCommandLine":false,
"DefaultValue":"30",
"Suffix":"seconds",
"Placeholder":"30",
"EnumValues":{}
},
{
"DisplayName":"Web Server URL",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Web server URL. If not specified then remote IP address will be used. Usually should be ignored, but may be desired to use SSL or a friendly name. Uses default http/https port if not explicit port specified. Format: http(s)://myserver.com:[port]",
"Keywords":"web,server,url",
"FieldName":"WebServerUrl",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"WebServerUrl",
"IncludeInCommandLine":false,
"DefaultValue":"",
"Placeholder":"http(s)://myserver.com:[port]",
"EnumValues":{}
},
{
"DisplayName":"SLG Account Name",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"The user account associated with the server. This will be shared with clients and will allow achievements earned by players on this server to be visible in other servers (as well as future features to come). Visit [play.eco](https://play.eco/) to link your steam account or create a new account.",
"Keywords":"slg,account,name",
"FieldName":"SLGAccountName",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"SLGAccountName",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"SLG Account Password",
"Category":"Eco:stadia_controller",
"Subcategory":"Server Settings:settings:1",
"Description":"Password for the SLG Account.",
"Keywords":"slg,account,password",
"FieldName":"SLGAccountPassword",
"InputType":"password",
"IsFlagArgument":false,
"ParamFieldName":"SLGAccountPassword",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Server Branch",
"Category":"Updates",
"Subcategory":"Steam Downloads:download",
"Description":"Sets the server branch to install. NOTE: Update the server after switching branches!",
"Keywords":"server,branch,depot",
"FieldName":"ServerBranch",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"ServerBranch",
"IncludeInCommandLine":false,
"DefaultValue":"public",
"Placeholder":"public",
"EnumValues":{}
},
{
"DisplayName":"Time of Day Scale",
"Category":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"Description":"Scales how much time of day matches real time. Higher numbers result in shorter day/night cycles (as a value of X seconds per real-world second), but will not affect simulation speed.",
"Keywords":"time,day,scale",
"FieldName":"TimeOfDayScale",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"TimeOfDayScale",
"IncludeInCommandLine":false,
"DefaultValue":"48",
"Suffix":"seconds",
"Placeholder":"48",
"EnumValues":{}
},
{
"DisplayName":"Time Multiplier",
"Category":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"Description":"Game progress time advances at this rate.",
"Keywords":"time,multiplier",
"FieldName":"TimeMult",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"TimeMult",
"IncludeInCommandLine":false,
"DefaultValue":"1",
"Placeholder":"1",
"EnumValues":{}
},
{
"DisplayName":"Specialty Cost Multiplier",
"Category":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"Description":"Multiplier applied to the cost of learning a specialty. Values below 1 decrease specialty cost, above 1 increase specialty cost.",
"Keywords":"specialty,cost,multiplier",
"FieldName":"SpecialtyCostMultiplier",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"DifficultyModifiers.SpecialtyCostMultiplier",
"IncludeInCommandLine":false,
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Base Skill Gain Rate",
"Category":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"Description":"The default experience gain for all players, regardless of their other sources of experience points and difficulty settings.",
"Keywords":"base,skill,gain,rate",
"FieldName":"BaseSkillGainRate",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"BaseSkillGainRate",
"IncludeInCommandLine":false,
"DefaultValue":"12.0",
"Placeholder":"12.0",
"EnumValues":{}
},
{
"DisplayName":"Skill Gain Multiplier",
"Category":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"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":"Skill Damage Multiplier",
"Category":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"Description":"Scales skill penalty to suffocation. 0 to disable.",
"Keywords":"skill,damage,multiplier",
"FieldName":"SkillDamageMultiplier",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"SkillDamageMultiplier",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"Placeholder":"0",
"EnumValues":{}
},
{
"DisplayName":"Specialty Experience Per Level",
"Category":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"Description":"Factors into experience per level specialties. Default is 25, higher values increase experience requirement, lower values reduce it.",
"Keywords":"specialty,experience",
"FieldName":"SpecialtyExperiencePerLevel",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"DifficultyModifiers.SpecialtyExperiencePerLevel",
"IncludeInCommandLine":false,
"DefaultValue":"25.0",
"Placeholder":"25.0",
"EnumValues":{}
},
{
"DisplayName":"Craft Resource Multiplier",
"Category":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"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":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"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":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"Description":"Percentage to refund a 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":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"Description":"Percentage of specialty 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":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"Description":"Multiplier applied to item maximum stack size. Values below 1 decrease maximum size, above 1 increases maximum 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":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"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":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"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":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"Description":"Global scale for how quickly 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":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"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":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"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 (default)",
"Expensive":"Expensive"
}
},
{
"DisplayName":"Shelf Life Multiplier",
"Category":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"Description":"Adjusts the default shelf life of all foods, with higher values causing food to last longer. For example, setting to 2 doubles 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":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"Description":"Maximum 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":"hours",
"EnumValues":{}
},
{
"DisplayName":"Rollover Daily Playtime",
"Category":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"Description":"When enabled, 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":"Eco:stadia_controller",
"Subcategory":"Gameplay:tactic:2",
"Description":"If Rollover Daily Playtime is enabled, this sets the maximum hours playtime in a day. This limits how much playtime a 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":"hours",
"EnumValues":{}
},
{
"DisplayName":"Create Meteor",
"Category":"Eco:stadia_controller",
"Subcategory":"Disasters:landslide:3",
"Description":"When enabled, a meteor will exist 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":"Eco:stadia_controller",
"Subcategory":"Disasters:landslide:3",
"Description":"Time in days when the meteor will impact. Changing this value will override impact time for the 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":"Eco:stadia_controller",
"Subcategory":"Features:featured_play_list:4",
"Description":"When enabled, allows players to rent access to a given deed from another.",
"Keywords":"rent",
"FieldName":"RentEnabled",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"RentEnabled",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Voice Chat Enabled",
"Category":"Eco:stadia_controller",
"Subcategory":"Features:featured_play_list:4",
"Description":"When enabled, 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":"Eco:stadia_controller",
"Subcategory":"Features:featured_play_list:4",
"Description":"When enabled, the variety of food a player eats 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":"Eco:stadia_controller",
"Subcategory":"Features:featured_play_list:4",
"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":"Eco:stadia_controller",
"Subcategory":"Features:featured_play_list:4",
"Description":"When enabled, the world will be on pause.",
"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":"Eco:stadia_controller",
"Subcategory":"Features:featured_play_list:4",
"Description":"When enabled, the world will resume as soon as the first player logs in.",
"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":"Eco:stadia_controller",
"Subcategory":"Features:featured_play_list:4",
"Description":"When enabled, rooms can have empty blocks serve as windows and still count as rooms.",
"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":"Eco:stadia_controller",
"Subcategory":"Features:featured_play_list:4",
"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":"Eco:stadia_controller",
"Subcategory":"Features:featured_play_list:4",
"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.",
"Keywords":"wall,blocks,window",
"FieldName":"WallBlocksPerWindow",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"WallBlocksPerWindow",
"IncludeInCommandLine":false,
"DefaultValue":"10",
"Placeholder":"10",
"EnumValues":{}
},
{
"DisplayName":"Allow Fast Forward",
"Category":"Eco:stadia_controller",
"Subcategory":"Features:featured_play_list:4",
"Description":"When enabled, time will accelerate if all online players sleep in a bed. 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":"Eco:stadia_controller",
"Subcategory":"Features:featured_play_list:4",
"Description":"The maximum time multiplier that will pass while sleeping. Lower this to make the simulation fast-forward more reliably.",