forked from CubeCoders/AMPTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openttdconfig.json
2098 lines (2098 loc) · 79.8 KB
/
openttdconfig.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":"Server Port",
"Category":"OpenTTD Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$ServerPort",
"InputType":"number",
"IsFlagArgument":false,
"Hidden":true,
"ParamFieldName":"network.server_port",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"Server Admin Port",
"Category":"OpenTTD Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$ServerAdminPort",
"InputType":"number",
"IsFlagArgument":false,
"Hidden":true,
"ParamFieldName":"network.server_admin_port",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"Server Public Status",
"Category":"OpenTTD Server Settings",
"Description":"Sets whether the server is local or public and, if public, whether it is included on the server list or is invite-only",
"Keywords":"local,public,invite,list,game,type,server_game_type",
"FieldName":"server_game_type",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"network.server_game_type",
"IncludeInCommandLine":false,
"DefaultValue":"local",
"EnumValues":{
"local":"Local (default)",
"invite-only":"Public (invite only)",
"public":"Public"
}
},
{
"DisplayName":"Server Name",
"Category":"OpenTTD Server Settings",
"Description":"Sets the name of the server as shown on the server list",
"Keywords":"server,name,server_name",
"FieldName":"server_name",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"network.server_name",
"IncludeInCommandLine":false,
"DefaultValue":"AMP Powered OpenTTD Server",
"EnumValues":{}
},
{
"DisplayName":"Client Name",
"Category":"OpenTTD Server Settings",
"Description":"Name that the server uses in-game (for example, for chat messages)",
"Keywords":"client,name,client_name",
"FieldName":"client_name",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"network.client_name",
"IncludeInCommandLine":false,
"DefaultValue":"AMPServer",
"EnumValues":{}
},
{
"DisplayName":"Server Password",
"Category":"OpenTTD Server Settings",
"Description":"Sets the password for clients to connect to the server. Default is no password (blank)",
"Keywords":"server,password,server_password",
"FieldName":"server_password",
"InputType":"password",
"IsFlagArgument":false,
"ParamFieldName":"network.server_password",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Admin Password",
"Category":"OpenTTD Server Settings",
"Description":"Sets the password that clients of the [admin interface](https://github.com/OpenTTD/OpenTTD/blob/master/docs/admin_network.md) need to use it. Default is no password (blank), meaning the admin interface is disabled",
"Keywords":"admin,password,admin_password",
"FieldName":"admin_password",
"InputType":"password",
"IsFlagArgument":false,
"ParamFieldName":"network.admin_password",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Autosave Interval",
"Category":"OpenTTD Server Settings",
"Description":"Sets the time interval between automatic game saves",
"Keywords":"autosave",
"FieldName":"autosave",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"gui.autosave",
"IncludeInCommandLine":false,
"DefaultValue":"monthly",
"EnumValues":{
"never":"Never (autosave disabled)",
"monthly":"Monthly (1st day of month) (default)",
"quarterly":"Quarterly (1st day of quarter)",
"2x yearly":"Twice yearly (1 January and 1 July)",
"yearly":"Yearly (1 January)"
}
},
{
"DisplayName":"Autosave On Exit",
"Category":"OpenTTD Server Settings",
"Description":"If set, the server will autosave on exit",
"Keywords":"autosave,exit,autosave_on_exit",
"FieldName":"autosave_on_exit",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"gui.autosave_on_exit",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Save Name",
"Category":"OpenTTD Server Settings",
"Description":"Sets the savename of a game to load on server start. Both saved games and scenarios can be loaded. If no game savename is specified, a new game is started. If desired, set this value to \"config/save/autosave/exit.sav\" to load the default autosave after the server has started and autosaved once",
"Keywords":"load,savegame",
"FieldName":"g",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"g",
"IncludeInCommandLine":true,
"SkipIfEmpty":true,
"DefaultValue":"",
"Placeholder":"config/save/autosave/exit.sav",
"EnumValues":{}
},
{
"DisplayName":"Player Limit",
"Category":"OpenTTD Server Settings",
"Description":"Maximum number of players that may connect to the server at one time",
"Keywords":"maximum,players,limit,max_clients",
"FieldName":"max_clients",
"InputType":"number",
"MinValue":"1",
"IsFlagArgument":false,
"ParamFieldName":"network.max_clients",
"IncludeInCommandLine":false,
"DefaultValue":"25",
"Placeholder":"25",
"Suffix":"players",
"EnumValues":{}
},
{
"DisplayName":"Minimum Active Players",
"Category":"OpenTTD Server Settings",
"Description":"Sets the minimum number of active players, below which the server will be automatically paused",
"Keywords":"minimum,active,players,min_active_clients",
"FieldName":"min_active_clients",
"InputType":"number",
"MinValue":"0",
"MaxValue":"255",
"IsFlagArgument":false,
"ParamFieldName":"network.min_active_clients",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"Placeholder":"0",
"Suffix":"active players",
"EnumValues":{}
},
{
"DisplayName":"Maximum Companies",
"Category":"OpenTTD Server Settings",
"Description":"Sets the maximum number of companies on the server",
"Keywords":"maximum,companies,max_companies",
"FieldName":"max_companies",
"InputType":"number",
"MinValue":"1",
"MaxValue":"15",
"IsFlagArgument":false,
"ParamFieldName":"network.max_companies",
"IncludeInCommandLine":false,
"DefaultValue":"15",
"EnumValues":{}
},
{
"DisplayName":"Enable Admin Chat",
"Category":"OpenTTD Server Settings",
"Description":"Enables admin chat on the server",
"Keywords":"admin,chat,server_admin_chat",
"FieldName":"server_admin_chat",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"network.server_admin_chat",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Maximum Join Time",
"Category":"OpenTTD Server Settings",
"Description":"Sets the maximum amount of time allowed for a client to join the server. Increasing this can help clients with slower download speeds to join servers with larger maps",
"Keywords":"maximum,join,time",
"FieldName":"max_join_time",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"network.max_join_time",
"IncludeInCommandLine":false,
"DefaultValue":"500",
"Placeholder":"500",
"Suffix":"ticks",
"EnumValues":{}
},
{
"DisplayName":"Allow Inflation",
"Category":"OpenTTD Accounting Settings",
"Description":"If set, inflation will be enabled in the economy, where costs rise slightly faster than payments",
"Keywords":"inflation",
"FieldName":"inflation",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"economy.inflation",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Maximum Initial Loan",
"Category":"OpenTTD Accounting Settings",
"Description":"Sets the maximum initial amount a company can loan (in GBP), in multiples of £50,000. If the Server Currency is different, the amount will be converted at the relevant exchange rate. The maximum loan amount will increase over time if Inflation is enabled",
"Keywords":"maximum,initial,loan,max_loan",
"FieldName":"max_loan",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"difficulty.max_loan",
"IncludeInCommandLine":false,
"DefaultValue":"300000",
"Placeholder":"300000",
"Suffix":"GBP",
"EnumValues":{}
},
{
"DisplayName":"Initial Interest Rate",
"Category":"OpenTTD Accounting Settings",
"Description":"Sets the initial interest rate charged on loans for a new map",
"Keywords":"initial,interest,initial_interest",
"FieldName":"initial_interest",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"difficulty.initial_interest",
"IncludeInCommandLine":false,
"DefaultValue":"2",
"EnumValues":{
"2":"2% (default)",
"3":"3%",
"4":"4%"
}
},
{
"DisplayName":"Subsidy Multiplier",
"Category":"OpenTTD Accounting Settings",
"Description":"Sets the bonus multiplier for subsidies offered in-game (assuming they are not disabled)",
"Keywords":"subsidy,multiplier,subsidy_multiplier",
"FieldName":"subsidy_multiplier",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"difficulty.subsidy_multiplier",
"IncludeInCommandLine":false,
"DefaultValue":"2",
"EnumValues":{
"0":"1.5x normal rate",
"1":"2.0x normal rate",
"2":"3.0x normal rate (default)",
"3":"4.0x normal rate"
}
},
{
"DisplayName":"Subsidy Duration",
"Category":"OpenTTD Accounting Settings",
"Description":"Sets the number of years for which subsidies are awarded. 0 = subsidies disabled",
"Keywords":"subsidy,duration,subsidy_duration",
"FieldName":"subsidy_duration",
"InputType":"number",
"MinValue":"0",
"MaxValue":"5000",
"IsFlagArgument":false,
"ParamFieldName":"difficulty.subsidy_duration",
"IncludeInCommandLine":false,
"DefaultValue":"1",
"Placeholder":"1",
"Suffix":"years",
"EnumValues":{}
},
{
"DisplayName":"Infrastructure Maintenance",
"Category":"OpenTTD Accounting Settings",
"Description":"If enabled, infrastructure causes maintenance costs. The cost grows in proportion to the network size, thus affecting larger companie more than smaller ones",
"Keywords":"infrastructure,maintenance,infrastructure_maintenance",
"FieldName":"infrastructure_maintenance",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"economy.infrastructure_maintenance",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Running Costs",
"Category":"OpenTTD Accounting Settings",
"Description":"Sets the level of maintenance and running costs of vehicles and infrastructure",
"Keywords":"vehicle,infrastructure,costs,vehicle_costs",
"FieldName":"vehicle_costs",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"difficulty.vehicle_costs",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"0":"Low (default)",
"1":"Medium",
"2":"High"
}
},
{
"DisplayName":"Construction Costs",
"Category":"OpenTTD Accounting Settings",
"Description":"Sets the level of construction and purchase costs",
"Keywords":"construction,purchase,cost,construction_cost",
"FieldName":"construction_cost",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"difficulty.construction_cost",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"0":"Low (default)",
"1":"Medium",
"2":"High"
}
},
{
"DisplayName":"Allow Disasters",
"Category":"OpenTTD Incident Settings",
"Description":"If enabled, disasters can occur on a new map, which may occasionally block or destroy vehicles or infrastructure",
"Keywords":"disasters",
"FieldName":"disasters",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"difficulty.disasters",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Allow Economic Recessions",
"Category":"OpenTTD Incident Settings",
"Description":"If enabled, economic recessions can occur on new maps every few years. During recessions, all production is significantly lower",
"Keywords":"economy,recession",
"FieldName":"economy",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"difficulty.economy",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Vehicle Breakdown Frequency",
"Category":"OpenTTD Incident Settings",
"Description":"Sets the frequency at which inadequately serviced vehicles break down",
"Keywords":"vehicle,breakdowns,frequency,vehicle_breakdowns",
"FieldName":"vehicle_breakdowns",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"difficulty.vehicle_breakdowns",
"IncludeInCommandLine":false,
"DefaultValue":"1",
"EnumValues":{
"0":"No breakdowns",
"1":"Reduced breakdowns (default)",
"2":"Normal breakdowns"
}
},
{
"DisplayName":"Aircraft Crash Probability",
"Category":"OpenTTD Incident Settings",
"Description":"Sets the probability of aircraft crashes",
"Keywords":"plane,aircraft,crashes,plane_crashes",
"FieldName":"plane_crashes",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"vehicle.plane_crashes",
"IncludeInCommandLine":false,
"DefaultValue":"2",
"EnumValues":{
"0":"None",
"1":"Reduced",
"2":"Normal (default)"
}
},
{
"DisplayName":"Local Authority Distance",
"Category":"OpenTTD Enviro Settings",
"Description":"Sets how far in tiles an object has to be from a town centre before it comes under the local authority jurisdiction",
"Keywords":"distance,local,authority,dist_local_authority",
"FieldName":"dist_local_authority",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"economy.dist_local_authority",
"IncludeInCommandLine":false,
"DefaultValue":"20",
"Placeholder":"20",
"Suffix":"tiles",
"EnumValues":{}
},
{
"DisplayName":"Town Council Tolerance",
"Category":"OpenTTD Enviro Settings",
"Description":"Sets how much noise and environmental damage by companies affect their town rating and therefore further construction activity in the area",
"Keywords":"town,council,tolerance,town_council_tolerance",
"FieldName":"town_council_tolerance",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"difficulty.town_council_tolerance",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"0":"Lenient (default)",
"1":"Tolerant",
"2":"Hostile",
"3":"Permissive"
}
},
{
"DisplayName":"Town Population Noise Level Increase - Lenient",
"Category":"OpenTTD Enviro Settings",
"Description":"If Town Council Tolerance is lenient, then the town noise limit will increase from the default for every specified number of inhabitants",
"Keywords":"town,noise,population,permissive,town_noise_population[0]",
"FieldName":"town_noise_population0",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"economy.town_noise_population[0]",
"IncludeInCommandLine":false,
"DefaultValue":"800",
"Placeholder":"800",
"EnumValues":{}
},
{
"DisplayName":"Town Population Noise Level Increase - Tolerant",
"Category":"OpenTTD Enviro Settings",
"Description":"If Town Council Tolerance is tolerant, then the town noise limit will increase from the default for every specified number of inhabitants",
"Keywords":"town,noise,population,tolerant,town_noise_population[1]",
"FieldName":"town_noise_population1",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"economy.town_noise_population[1]",
"IncludeInCommandLine":false,
"DefaultValue":"2000",
"Placeholder":"2000",
"EnumValues":{}
},
{
"DisplayName":"Town Population Noise Level Increase - Hostile",
"Category":"OpenTTD Enviro Settings",
"Description":"If Town Council Tolerance is hostile, then the town noise limit will increase from the default for every specified number of inhabitants",
"Keywords":"town,noise,population,hostile,town_noise_population[2]",
"FieldName":"town_noise_population2",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"economy.town_noise_population[2]",
"IncludeInCommandLine":false,
"DefaultValue":"4000",
"Placeholder":"4000",
"EnumValues":{}
},
{
"DisplayName":"Town Population Noise Level Increase - Permissive",
"Category":"OpenTTD Enviro Settings",
"Description":"If Town Council Tolerance is permissive, then the town noise limit will increase from the default for every specified number of inhabitants",
"Keywords":"town,noise,population,permissive,town_noise_population[3]",
"FieldName":"town_noise_population3",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"economy.town_noise_population[3]",
"IncludeInCommandLine":false,
"DefaultValue":"400",
"Placeholder":"400",
"EnumValues":{}
},
{
"DisplayName":"Allow Bribes",
"Category":"OpenTTD Enviro Settings",
"Description":"If enabled, companies can try to bribe local authorities to increase their rating. If noticed by an inspector, the company will not be able to act in the town for six months",
"Keywords":"bribe",
"FieldName":"bribe",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"economy.bribe",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Allow Exclusive Rights",
"Category":"OpenTTD Enviro Settings",
"Description":"If enabled, allows buying of exclusive transport rights in the area of a local authority. Opponents' stations (passenger and cargo) will not receive any cargo for a whole year",
"Keywords":"exclusive,rights,exclusive_rights",
"FieldName":"exclusive_rights",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"economy.exclusive_rights",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Allow Funding Of Roads",
"Category":"OpenTTD Enviro Settings",
"Description":"If enabled, allows companies to give money to towns to fund road reconstruction, in order to sabotage road-based services in the town",
"Keywords":"fund,roads,fund_roads",
"FieldName":"fund_roads",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"economy.fund_roads",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Allow Funding Of Buildings",
"Category":"OpenTTD Enviro Settings",
"Description":"If enabled, allows companies to give money to towns to fund new houses",
"Keywords":"fund,buildings,fund_buildings",
"FieldName":"fund_buildings",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"economy.fund_buildings",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Enable Airport Noise Level",
"Category":"OpenTTD Enviro Settings",
"Description":"If disabled, there can only be two airports in each town. If enabled, the number of airports is limited instead by the noise acceptance of the town, which depends on population, airport size and distance",
"Keywords":"station,noise,level,station_noise_level",
"FieldName":"station_noise_level",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"economy.station_noise_level",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Town Growth Rate",
"Category":"OpenTTD Enviro Settings",
"Description":"Sets the speed of town growth",
"Keywords":"town,growth,rate,speed,town_growth_rate",
"FieldName":"town_growth_rate",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"economy.town_growth_rate",
"IncludeInCommandLine":false,
"DefaultValue":"2",
"EnumValues":{
"0":"None",
"1":"Slow",
"2":"Normal (default)",
"3":"Fast",
"4":"Very fast"
}
},
{
"DisplayName":"Allow Town Roads",
"Category":"OpenTTD Enviro Settings",
"Description":"If enabled, towns are allowed to build roads. Otherwise, players must build roads for a town to grow",
"Keywords":"town,roads,allow_town_roads",
"FieldName":"allow_town_roads",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"economy.allow_town_roads",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Allow Town Level Crossings",
"Category":"OpenTTD Enviro Settings",
"Description":"If enabled, towns are allowed to build level crossings",
"Keywords":"town,level,crossings,allow_town_level_crossings",
"FieldName":"allow_town_level_crossings",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"economy.allow_town_level_crossings",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Remove Useless Road Elements",
"Category":"OpenTTD Enviro Settings",
"Description":"If enabled, towns will remove useless road elements during construction to clean up dead-ends",
"Keywords":"mod,road,rebuild,mod_road_rebuild",
"FieldName":"mod_road_rebuild",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"economy.mod_road_rebuild",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Allow Founding Of Towns",
"Category":"OpenTTD Enviro Settings",
"Description":"Sets whether towns can be founded by players during the game and, if so, whether they will use the road layout used by other towns in the game, or can have a custom layout",
"Keywords":"found,town,found_town",
"FieldName":"found_town",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"economy.found_town",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"0":"Forbidden (default)",
"1":"Allowed",
"2":"Allowed with custom town layout"
}
},
{
"DisplayName":"Town Cargo Production Scale",
"Category":"OpenTTD Enviro Settings",
"Description":"Scales the cargo production of towns by the set percentage. Minimum OpenTTD v14.0",
"Keywords":"town,cargo,production,scale,town_cargo_scale",
"FieldName":"town_cargo_scale",
"InputType":"number",
"MinValue":"0",
"MaxValue":"100",
"IsFlagArgument":false,
"ParamFieldName":"economy.town_cargo_scale",
"IncludeInCommandLine":false,
"DefaultValue":"100",
"Placeholder":"100",
"Suffix":"%",
"EnumValues":{}
},
{
"DisplayName":"Industry Production Scale",
"Category":"OpenTTD Enviro Settings",
"Description":"Scales the cargo production of industries by the set percentage. Minimum OpenTTD v14.0",
"Keywords":"industry,cargo,production,scale,industry_cargo_scale",
"FieldName":"industry_cargo_scale",
"InputType":"number",
"MinValue":"0",
"MaxValue":"100",
"IsFlagArgument":false,
"ParamFieldName":"economy.industry_cargo_scale",
"IncludeInCommandLine":false,
"DefaultValue":"100",
"Placeholder":"100",
"Suffix":"%",
"EnumValues":{}
},
{
"DisplayName":"Town Cargo Generation Mode",
"Category":"OpenTTD Enviro Settings",
"Description":"Sets how much cargo is produced by houses in towns, relative to the overall town population",
"Keywords":"town,cargo,generation,mode,town_cargogen_mode",
"FieldName":"town_cargogen_mode",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"economy.town_cargogen_mode",
"IncludeInCommandLine":false,
"DefaultValue":"1",
"EnumValues":{
"0":"Quadratic growth (original)",
"1":"Linear growth (default)"
}
},
{
"DisplayName":"Enable Demand-Only Cargo Generation",
"Category":"OpenTTD Enviro Settings",
"Description":"If set, cargo will only be generated at a station when a vehicle with the capacity to pick up that cargo has visited. Affects station ratings",
"Keywords":"cargo,demand,generation,selectgoods",
"FieldName":"selectgoods",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"order.selectgoods",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Allow Multiple Industries Per Town",
"Category":"OpenTTD Enviro Settings",
"Description":"If enabled, two or more industries of the same type can be built on land that comes under the jurisdiction of one town. Normally only one of each type is allowed",
"Keywords":"multiple,industry,town,multiple_industry_per_town",
"FieldName":"multiple_industry_per_town",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"economy.multiple_industry_per_town",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Oil Refinery Limit",
"Category":"OpenTTD Enviro Settings",
"Description":"Oil refineries are only constructed near the map border (the coast for island maps). This sets the maximum allowed distance (in an even number of tiles) from the edge of the map for refineries",
"Keywords":"oil,refinery,limit,oil_refinery_limit",
"FieldName":"oil_refinery_limit",
"InputType":"number",
"MinValue":"12",
"IsFlagArgument":false,
"ParamFieldName":"game_creation.oil_refinery_limit",
"IncludeInCommandLine":false,
"DefaultValue":"32",
"Placeholder":"32",
"Suffix":"tiles",
"EnumValues":{}
},
{
"DisplayName":"Allow Serving Neutral Industries",
"Category":"OpenTTD Enviro Settings",
"Description":"If enabled, industries with attached stations may also be served by company-owned stations built nearby. Otherwise, they can only be served by their own attached stations",
"Keywords":"serve,neutral,industries,serve_neutral_industries",
"FieldName":"serve_neutral_industries",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"station.serve_neutral_industries",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Modified Catchment Areas",
"Category":"OpenTTD Enviro Settings",
"Description":"If enabled, catchment areas will be differently sized for different types of stations and airports, and as a result be more realistic. For example, train stations have a larger catchment area than bus stations and airport catchment areas are bigger still",
"Keywords":"modified,catchment,modified_catchment",
"FieldName":"modified_catchment",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"station.modified_catchment",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Enable Improved Loading",
"Category":"OpenTTD Enviro Settings",
"Description":"If set, only one vehicle is loaded at a time until full, before loading the next vehicle. When disabled, all vehicles in a station are loaded simultaneously, possibly needlessly blocking multiple platforms",
"Keywords":"improved,load,improved_load",
"FieldName":"improved_load",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"order.improved_load",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Enable Gradual Loading",
"Category":"OpenTTD Enviro Settings",
"Description":"If set, vehicles will load cargo over a period of time, not full load instantly",
"Keywords":"gradual,loading,gradual_loading",
"FieldName":"gradual_loading",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"order.gradual_loading",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Timekeeping Units",
"Category":"OpenTTD Enviro Settings",
"Description":"Sets the timekeeping units of the game. Calendar = classic OpenTTD, with year of 12 months. Wallclock = clock-based time, with cargo production and financials based on one-minute increments, about equal to a month in Calendar mode. Minimum OpenTTD v14.0",
"Keywords":"time,keeping,units,timekeeping,timekeeping_units,calendar,wallclock",
"FieldName":"timekeeping_units",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"economy.timekeeping_units",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"0":"Calendar (default)",
"1":"Wallclock"
}
},
{
"DisplayName":"Minutes Per Year",
"Category":"OpenTTD Enviro Settings",
"Description":"Sets the number of minutes in a calendar year for Wallclock timekeeping units. 0 = stop calendar time from changing. Minimum OpenTTD v14.0",
"Keywords":"time,keeping,minutes,year,calendar,minutes_per_calendar_year",
"FieldName":"minutes_per_calendar_year",
"InputType":"number",
"MinValue":"0",
"MaxValue":"10080",
"IsFlagArgument":false,
"ParamFieldName":"economy.minutes_per_calendar_year",
"IncludeInCommandLine":false,
"DefaultValue":"12",
"Placeholder":"12",
"Suffix":"minutes",
"EnumValues":{}
},
{
"DisplayName":"Recalculation Time",
"Category":"OpenTTD Enviro Settings",
"Description":"Sets the time taken for each recalculation of a link graph component. Only affects new games",
"Keywords":"cargo,distribution,recalculation,time,recalc_time",
"FieldName":"recalc_time",
"InputType":"number",
"MinValue":"1",
"IsFlagArgument":false,
"ParamFieldName":"linkgraph.recalc_time",
"IncludeInCommandLine":false,
"DefaultValue":"32",
"Placeholder":"32",
"Suffix":"seconds",
"EnumValues":{}
},
{
"DisplayName":"Recalculation Interval",
"Category":"OpenTTD Enviro Settings",
"Description":"Sets the time between subsequent recalculations of the link graph. Only affects new games",
"Keywords":"cargo,distribution,recalculation,interval,recalc_interval",
"FieldName":"recalc_interval",
"InputType":"number",
"MinValue":"4",
"IsFlagArgument":false,
"ParamFieldName":"linkgraph.recalc_interval",
"IncludeInCommandLine":false,
"DefaultValue":"8",
"Placeholder":"8",
"Suffix":"seconds",
"EnumValues":{}
},
{
"DisplayName":"Distribution Mode For Passengers",
"Category":"OpenTTD Enviro Settings",
"Description":"Sets the passenger distribution mode. \"Manual\" = no auto distribution, \"Asymmetric\" = arbitrary number in either direction between stations, \"Symmetric\" = roughly same number in each direction. Only affects new games",
"Keywords":"cargo,distribution,passengers,distribution_pax",
"FieldName":"distribution_pax",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"linkgraph.distribution_pax",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"0":"Manual (default)",
"1":"Asymmetric",
"2":"Symmetric"
}
},
{
"DisplayName":"Distribution Mode For Mail",
"Category":"OpenTTD Enviro Settings",
"Description":"Sets the mail distribution mode. \"Manual\" = no auto distribution, \"Asymmetric\" = arbitrary amount in either direction between stations, \"Symmetric\" = roughly same amount in each direction. Only affects new games",
"Keywords":"cargo,distribution,mail,distribution_mail",
"FieldName":"distribution_mail",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"linkgraph.distribution_mail",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"0":"Manual (default)",
"1":"Asymmetric",
"2":"Symmetric"
}
},
{
"DisplayName":"Distribution Mode For ARMOURED Cargo",
"Category":"OpenTTD Enviro Settings",
"Description":"Sets the ARMOURED cargo distribution mode. \"Manual\" = no auto distribution, \"Asymmetric\" = arbitrary amount in either direction between stations, \"Symmetric\" = roughly same amount in each direction. Only affects new games",
"Keywords":"cargo,distribution,armoured,distribution_armoured",
"FieldName":"distribution_armoured",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"linkgraph.distribution_armoured",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"0":"Manual (default)",
"1":"Asymmetric",
"2":"Symmetric"
}
},
{
"DisplayName":"Distribution Mode For Other Cargo",
"Category":"OpenTTD Enviro Settings",
"Description":"Sets the distribution mode for other cargo. \"Manual\" = no auto distribution, \"Asymmetric\" = arbitrary amount in either direction between stations, \"Symmetric\" = roughly same amount in each direction. Only affects new games",
"Keywords":"cargo,distribution,distribution_default",
"FieldName":"distribution_default",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"linkgraph.distribution_default",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"0":"Manual (default)",
"1":"Asymmetric",
"2":"Symmetric"
}
},
{
"DisplayName":"Distribution Accuracy",
"Category":"OpenTTD Enviro Settings",
"Description":"Sets the accuracy of distribution. Higher values will increase CPU time for the link graph calculation. Only affects new games",
"Keywords":"cargo,distribution,accuracy",
"FieldName":"accuracy",
"InputType":"number",
"MinValue":"2",
"IsFlagArgument":false,
"ParamFieldName":"linkgraph.accuracy",
"IncludeInCommandLine":false,
"DefaultValue":"16",
"EnumValues":{}
},
{
"DisplayName":"Effect Of Distance On Demand",
"Category":"OpenTTD Enviro Settings",
"Description":"If set higher than 0, the distance between stations will affect how much cargo is sent - the higher the value, the less cargo is sent far away. Only affects new games",
"Keywords":"cargo,distribution,demand_distance",
"FieldName":"demand_distance",
"InputType":"number",
"MinValue":"0",
"MaxValue":"255",
"IsFlagArgument":false,
"ParamFieldName":"linkgraph.demand_distance",
"IncludeInCommandLine":false,
"DefaultValue":"100",
"Placeholder":"100",