-
Notifications
You must be signed in to change notification settings - Fork 0
/
openttd.cfg
1020 lines (990 loc) · 45.1 KB
/
openttd.cfg
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
[version]
version_string = jgrpp-0.63.0
version_number = 1F006D64
ini_version = 7
[network]
commands_per_frame = 2
max_commands_in_queue = 16
bytes_per_frame = 8
bytes_per_frame_burst = 256
max_init_time = 100
max_join_time = 1000
max_download_time = 2000
max_password_time = 2000
max_lag_time = 1000
pause_on_join = true
server_port = 3979
server_admin_port = 3977
server_admin_chat = true
server_game_type = invite-only
autoclean_companies = false
autoclean_unprotected = 12
autoclean_protected = 36
autoclean_novehicles = 0
max_companies = 15
max_clients = 255
restart_game_year = 0
min_active_clients = 1
reload_cfg = false
commands_per_frame_server = 16
max_auth_failures = 10
restart_hours = 0
allow_insecure_admin_login = true
no_http_content_downloads = false
[misc]
display_opt = SHOW_TOWN_NAMES|SHOW_STATION_NAMES|SHOW_SIGNS|FULL_ANIMATION|FULL_DETAIL|WAYPOINTS|SHOW_COMPETITOR_SIGNS
fullscreen = false
video_hw_accel = true
video_vsync = false
support8bpp = no
graphicsset = OpenGFX
soundsset = "OpenSFX"
musicset = "Barry Taylor's Traditional Scottish Tunebook Volume 4"
videodriver =
musicdriver =
sounddriver =
blitter =
language = galician.lng
resolution = 2560,1368
screenshot_format =
savegame_format =
rightclick_emulate = false
small_font = DejaVu Sans
medium_font = DejaVu Sans, Bold
large_font = DejaVu Serif, Bold
mono_font = DejaVu Sans Mono, Bold
small_size = 12
medium_size = 12
large_size = 16
mono_size = 12
small_aa = false
medium_aa = false
large_aa = false
mono_aa = false
sprite_cache_size_px = 128
player_face = 342149704
transparency_options = 0
transparency_locks = 0
invisibility_options = 0
keyboard =
keyboard_caps =
last_newgrf_count = 135
gui_zoom = 1
font_zoom = -1
extra_display_opt = SHOW_MONEY_TEXT_EFFECTS
zoning_overlay_inner = 0
zoning_overlay_outer = 0
cargo_payment_x_mode = 0
extra_transparency_options = 0
extra_transparency_locks = 0
gui_scale = 125
global_aa = true
prefer_sprite_font = false
[difficulty]
max_no_competitors = 0
number_towns = 1
industry_density = 0
max_loan = 300000
initial_interest = 2
vehicle_costs = 0
competitor_speed = 2
vehicle_breakdowns = 1
subsidy_multiplier = 2
subsidy_duration = 1
construction_cost = 0
terrain_type = 2
quantity_sea_lakes = 3
economy = true
line_reverse_mode = false
disasters = false
town_council_tolerance = 0
money_cheat_in_multiplayer = false
rename_towns_in_multiplayer = false
vehicle_costs_in_depot = 1
vehicle_costs_when_stopped = 1
override_town_settings_in_multiplayer = false
competitors_interval = 10
infinite_money = false
[economy]
town_layout = 1
allow_town_roads = true
found_town = 2
allow_town_level_crossings = false
town_cargogen_mode = 1
station_noise_level = true
inflation = true
multiple_industry_per_town = true
bribe = true
exclusive_rights = true
fund_buildings = true
fund_roads = true
give_money = true
type = 1
allow_shares = false
min_years_for_shares = 6
feeder_payment_share = 75
town_growth_rate = 2
larger_towns = 4
initial_city_size = 2
mod_road_rebuild = true
dist_local_authority = 20
town_noise_population[0] = 800
town_noise_population[1] = 2000
town_noise_population[2] = 4000
infrastructure_maintenance = true
max_town_heightlevel = 255
min_town_land_area = 0
min_city_land_area = 75
town_cargo_scale_factor = 0
industry_cargo_scale_factor = 0
inflation_fixed_dates = true
day_length_factor = 1
town_zone_calc_mode = false
town_zone_0_mult = 15
town_zone_1_mult = 9
town_zone_2_mult = 0
town_zone_3_mult = 5
town_zone_4_mult = 3
city_zone_0_mult = 15
city_zone_1_mult = 9
city_zone_2_mult = 0
city_zone_3_mult = 5
city_zone_4_mult = 3
town_growth_cargo_transported = 0
town_min_distance = 20
infrastructure_sharing[0] = true
infrastructure_sharing[1] = true
infrastructure_sharing[2] = true
infrastructure_sharing[3] = true
sharing_fee[0] = 100
sharing_fee[1] = 100
sharing_fee[2] = 100
sharing_fee[3] = 100
sharing_payment_in_debt = false
random_road_reconstruction = 5
town_build_tunnels = 2
town_max_road_slope = 4
disable_inflation_newgrf_flag = false
allow_town_bridges = true
payment_algorithm = 1
town_noise_population[3] = 400
tick_rate = 0
timekeeping_units = 0
minutes_per_calendar_year = 12
spawn_primary_industry_only = false
town_cargo_scale = 100
industry_cargo_scale = 100
town_cargo_scale_mode = 0
industry_cargo_scale_mode = 0
industry_event_rate = 100
default_allow_town_growth = true
[order]
no_servicing_if_no_breakdowns = true
improved_load = true
selectgoods = true
serviceathelipad = true
gradual_loading = true
nonstop_only = false
station_length_loading_penalty = true
[station]
never_expire_airports = true
station_spread = 12
modified_catchment = true
serve_neutral_industries = true
adjacent_stations = true
distant_join_stations = true
catchment_increase = 0
cargo_class_rating_wait_time = false
station_size_rating_cargo_amount = false
station_delivery_mode = 0
[vehicle]
road_side = right
train_acceleration_model = 1
roadveh_acceleration_model = 1
train_slope_steepness = 3
roadveh_slope_steepness = 7
max_train_length = 7
smoke_amount = 1
never_expire_vehicles = false
max_trains = 500
max_roadveh = 500
max_aircraft = 200
max_ships = 300
wagon_speed_limits = true
disable_elrails = false
freight_trains = 1
plane_speed = 1
dynamic_engines = true
plane_crashes = 2
extend_vehicle_life = 0
servint_ispercent = false
servint_trains = 5
servint_roadveh = 5
servint_ships = 12
servint_aircraft = 5
train_braking_model = 0
no_expire_vehicles_after = 0
no_introduce_vehicles_after = 0
slow_road_vehicles_in_curves = true
train_speed_adaptation = false
improved_breakdowns = true
ship_collision_avoidance = true
no_train_crash_other_company = false
flip_direction_all_trains = false
roadveh_articulated_overtaking = true
drive_through_train_depot = false
adjacent_crossings = true
safer_crossings = false
pay_for_repair = true
repair_cost = 100
auto_timetable_by_default = false
auto_separation_by_default = true
roadveh_cant_quantum_tunnel = false
through_load_speed_limit = 15
realistic_braking_aspect_limited = 0
rail_depot_speed_limit = 61
limit_train_acceleration = false
non_leading_engines_keep_name = false
track_edit_ignores_realistic_braking = false
train_acc_braking_percent = 100
[gui]
autosave = custom_realtime_minutes
threaded_saves = true
date_format_in_default_names = iso
show_finances = true
auto_scrolling = 0
scroll_mode = 0
smooth_scroll = false
right_mouse_wnd_close = false
measure_tooltip = true
errmsg_duration = 5
hover_delay_ms = 250
osk_activation = double
toolbar_pos = 1
statusbar_pos = 1
window_snap_radius = 10
window_soft_limit = 20
zoom_min = 0
zoom_max = 5
sprite_zoom_min = 0
population_in_label = true
link_terraform_toolbar = false
smallmap_land_colour = 0
liveries = 2
starting_colour = 3
auto_remove_signals = false
prefer_teamchat = false
scrollwheel_scrolling = 0
scrollwheel_multiplier = 5
pause_on_newgame = true
advanced_vehicle_list = 1
timetable_in_ticks = false
timetable_arrival_departure = true
quick_goto = true
loading_indicators = 1
default_rail_type = 0
signal_gui_mode = 1
coloured_news_year = 1987
cycle_signal_types = 0
drag_signals_density = 5
drag_signals_fixed_distance = false
semaphore_build_before = 1950
vehicle_income_warn = true
order_review_system = 2
lost_vehicle_warn = true
new_nonstop = true
stop_location = 2
keep_all_autosave = false
autosave_on_exit = false
autosave_on_network_disconnect = true
max_num_autosaves = 16
auto_euro = true
news_message_timeout = 2
show_track_reservation = true
station_numtracks = 1
station_platlength = 1
station_dragdrop = true
station_show_coverage = true
persistent_buildingtools = true
expenses_layout = true
station_gui_group_order = 0
station_gui_sort_by = 1
station_gui_sort_order = 1
missing_strings_threshold = 25
graph_line_thickness = 3
show_newgrf_name = true
show_date_in_logs = false
settings_restriction_mode = 2
developer = 1
newgrf_developer_tools = true
ai_developer_tools = false
scenario_developer = true
newgrf_show_old_versions = false
newgrf_default_palette = 1
console_backlog_timeout = 100
console_backlog_length = 100
refresh_rate = 60
fast_forward_speed_limit = 2500
network_chat_box_width_pct = 40
network_chat_box_height = 25
network_chat_timeout = 20
viewport_map_scan_surroundings = true
show_slopes_on_viewport_map = true
show_bridges_on_map = true
show_tunnels_on_map = true
show_vehicle_route = 1
dash_level_of_route_lines = 0
use_owner_colour_for_tunnelbridge = false
show_scrolling_viewport_on_map = 3
default_viewport_map_mode = 0
action_when_viewport_map_is_dblclicked = 1
timetable_leftover_ticks = false
override_time_settings = false
time_in_minutes = true
ticks_per_minute = 74
clock_offset = 0
date_with_time = 3
timetable_start_text_entry = false
max_departures = 10
max_departure_time = 120
departure_calc_frequency = 10
departure_show_vehicle = false
departure_show_group = false
departure_show_company = false
departure_show_vehicle_type = false
departure_show_vehicle_color = false
departure_larger_font = false
departure_destination_type = false
departure_show_both = false
departure_only_passengers = false
departure_smart_terminus = false
departure_show_all_stops = false
departure_merge_identical = false
departure_conditionals = 0
default_road_type = 0
no_depot_order_warn = false
restriction_wait_vehicle_warn = false
savegame_overwrite_confirm = yes
show_vehicle_route_steps = true
show_train_length_in_details = true
show_train_weight_ratios_in_details = false
show_vehicle_group_in_details = true
show_vehicle_list_company_colour = true
show_restricted_signal_default = false
show_adv_tracerestrict_features = true
show_progsig_ui = true
show_noentrysig_ui = false
show_veh_list_cargo_filter = true
enable_single_veh_shared_order_gui = false
show_adv_load_mode_features = false
disable_top_veh_list_mass_actions = false
adv_sig_bridge_tun_modes = false
sort_track_types_by_speed = false
show_depot_sell_gui = false
open_vehicle_gui_clone_share = false
linkgraph_colours = 0
vehicle_names = 1
shade_trees_on_slopes = true
station_rating_tooltip_mode = 1
demolish_confirm_mode = 2
dual_pane_train_purchase_window = true
console_show_unlisted = false
newgrf_disable_big_gui = false
autosave_custom_days = 1
autosave_custom_minutes = 5
default_signal_type = 5
show_all_signal_default = false
allow_hiding_waypoint_labels = false
show_wagon_intro_year = false
disable_water_animation = 255
show_order_occupancy_by_default = false
show_group_hierarchy_name = false
show_vehicle_group_hierarchy_name = false
zoom_max_extra = 9
show_vehicle_route_mode = 1
show_cargo_in_vehicle_lists = false
scale_bevels = true
dual_pane_train_purchase_window_dual_buttons = true
show_order_management_button = false
max_departure_time_minutes = 1440
bigger_main_toolbar = true
instant_tile_tooltip = false
town_name_tooltip_mode = 1
industry_tooltip_show = true
industry_tooltip_show_name = true
industry_tooltip_show_required = false
industry_tooltip_show_stockpiled = false
industry_tooltip_show_produced = true
depot_tooltip_mode = 1
waypoint_viewport_tooltip_name = 1
station_viewport_tooltip_name = 1
station_viewport_tooltip_cargo = true
show_height_on_viewport_map = true
max_num_lt_autosaves = 8
city_in_label = false
show_order_number_vehicle_view = false
autosave_interval = 5
autosave_realtime = true
right_click_wnd_close = no
starting_colour_secondary = 16
hide_default_stop_location = true
timetable_mode = 0
drag_signals_skip_stations = false
show_restricted_signal_recolour = true
show_speed_first_vehicle_view = false
show_rail_polyline_tool = true
show_running_costs_calendar_year = true
drag_signals_stop_restricted_signal = true
shorten_vehicle_view_status = false
old_vehicle_warn = true
departure_default_mode = 0
departure_default_via = false
departure_default_show_empty = false
[linkgraph]
recalc_interval = 64
recalc_time = 256
distribution_pax = 0
distribution_mail = 0
distribution_armoured = 0
distribution_default = 0
accuracy = 16
demand_distance = 100
demand_size = 100
short_path_saturation = 80
recalc_not_scaled_by_daylength = true
aircraft_link_scale = 100
[locale]
currency = EUR
units_velocity = metric
units_power = metric
units_weight = metric
units_volume = metric
units_force = si
units_height = metric
digit_group_separator =
digit_group_separator_currency =
digit_decimal_separator =
units_velocity_nautical = metric
[sound]
news_ticker = true
news_full = true
new_year = true
confirm = true
click_beep = true
disaster = true
vehicle = true
ambient = true
[music]
playlist = 0
music_vol = 99
effect_vol = 94
custom_1 = 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
custom_2 = 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
playing = false
shuffle = true
[news_display]
arrival_player = full
arrival_other = summarized
accident = full
company_info = full
open = summarized
close = summarized
economy = full
production_player = summarized
production_other = off
production_nobody = summarized
advice = full
new_vehicles = full
acceptance = full
subsidies = summarized
general = full
accident_other = full
[pf]
forbid_90_deg = true
roadveh_queue = true
pathfinder_for_trains = 2
pathfinder_for_roadvehs = 2
pathfinder_for_ships = 2
reverse_at_signals = false
wait_oneway_signal = 15
wait_twoway_signal = 41
wait_for_pbs_path = 30
reserve_paths = false
path_backoff_interval = 20
npf.npf_max_search_nodes = 10000
npf.npf_rail_firstred_penalty = 1000
npf.npf_rail_firstred_exit_penalty = 10000
npf.npf_rail_lastred_penalty = 1000
npf.npf_rail_station_penalty = 100
npf.npf_rail_slope_penalty = 100
npf.npf_rail_curve_penalty = 100
npf.npf_rail_depot_reverse_penalty = 5000
npf.npf_rail_pbs_cross_penalty = 300
npf.npf_rail_pbs_signal_back_penalty = 1500
npf.npf_buoy_penalty = 200
npf.npf_water_curve_penalty = 100
npf.npf_road_curve_penalty = 100
npf.npf_crossing_penalty = 300
npf.npf_road_drive_through_penalty = 800
npf.npf_road_dt_occupied_penalty = 800
npf.npf_road_bay_occupied_penalty = 1500
npf.maximum_go_to_depot_penalty = 2000
yapf.disable_node_optimization = false
yapf.max_search_nodes = 10000
yapf.rail_firstred_twoway_eol = false
yapf.rail_firstred_penalty = 1000
yapf.rail_firstred_exit_penalty = 10000
yapf.rail_lastred_penalty = 1000
yapf.rail_lastred_exit_penalty = 10000
yapf.rail_station_penalty = 1000
yapf.rail_slope_penalty = 200
yapf.rail_curve45_penalty = 100
yapf.rail_curve90_penalty = 600
yapf.rail_depot_reverse_penalty = 5000
yapf.rail_crossing_penalty = 300
yapf.rail_look_ahead_max_signals = 10
yapf.rail_look_ahead_signal_p0 = 500
yapf.rail_look_ahead_signal_p1 = -100
yapf.rail_look_ahead_signal_p2 = 5
yapf.rail_pbs_cross_penalty = 300
yapf.rail_pbs_station_penalty = 800
yapf.rail_pbs_signal_back_penalty = 1500
yapf.rail_doubleslip_penalty = 100
yapf.rail_longer_platform_penalty = 800
yapf.rail_longer_platform_per_tile_penalty = 0
yapf.rail_shorter_platform_penalty = 4000
yapf.rail_shorter_platform_per_tile_penalty = 0
yapf.road_slope_penalty = 200
yapf.road_curve_penalty = 100
yapf.road_crossing_penalty = 300
yapf.road_stop_penalty = 800
yapf.road_stop_occupied_penalty = 800
yapf.road_stop_bay_occupied_penalty = 1500
yapf.maximum_go_to_depot_penalty = 2000
yapf.ship_curve45_penalty = 100
yapf.ship_curve90_penalty = 600
back_of_one_way_pbs_waiting_point = true
reroute_rv_on_layout_change = 1
[script]
settings_profile = easy
script_max_opcode_till_suspend = 10000
script_max_memory_megabytes = 1024
[ai]
ai_in_multiplayer = false
ai_disable_veh_train = false
ai_disable_veh_roadveh = false
ai_disable_veh_aircraft = false
ai_disable_veh_ship = false
[game_creation]
town_name = 21
landscape = arctic
heightmap_height = 60
snow_line_height = 10
snow_coverage = 40
desert_coverage = 50
starting_year = 2024
ending_year = 2500
land_generator = 1
oil_refinery_limit = 32
tgen_smoothness = 2
variety = 4
tree_placer = 2
heightmap_rotation = 1
se_flat_world_height = 2
map_x = 9
map_y = 9
water_borders = 16
custom_town_number = 1
custom_terrain_type = 30
custom_sea_level = 1
min_river_length = 16
river_route_random = 5
amount_of_rivers = 1
rainforest_line_height = 8
climate_threshold_mode = 0
generation_unique_id = 0
rivers_top_of_hill = true
river_tropics_width = 5
lake_size = 8
lakes_allowed_in_deserts = false
amount_of_rocks = 5
height_affects_rocks = 0
build_public_roads = 0
custom_industry_number = 1
lake_tropics_width = 5
coast_tropics_width = 0
[construction]
map_height_limit = 0
build_on_slopes = true
command_pause_level = 1
terraform_per_64k_frames = 4194304
terraform_frame_burst = 32768
clear_per_64k_frames = 4194304
clear_frame_burst = 32768
tree_per_64k_frames = 4194304
tree_frame_burst = 32768
autoslope = true
extra_dynamite = true
max_bridge_length = 64
max_bridge_height = 12
max_tunnel_length = 64
train_signal_side = 1
road_stop_on_town_road = true
road_stop_on_competitor_road = true
raw_industry_construction = 1
industry_platform = 1
freeform_edges = true
extra_tree_placement = 1
enable_build_river = true
enable_remove_water = true
purchase_land_per_64k_frames = 1048576
purchase_land_frame_burst = 1024
build_object_per_64k_frames = 2097152
build_object_frame_burst = 2048
chunnel = true
road_custom_bridge_heads = true
rail_custom_bridge_heads = true
allow_grf_objects_under_bridges = true
allow_stations_under_bridges = true
allow_road_stops_under_bridges = true
allow_docks_under_bridges = true
purchase_land_permitted = 2
build_object_area_permitted = true
maximum_signal_evaluations = 256
trees_around_snow_line_enabled = false
trees_around_snow_line_range = 1
tree_growth_rate = 0
trees_around_snow_line_dynamic_range = 75
no_expire_objects_after = 0
ignore_object_intro_dates = true
crossing_with_competitor = true
convert_town_road_no_houses = false
flood_from_edges = true
purchased_land_clear_ground = true
map_edge_mode = 0
[currency]
rate = 1
separator = "."
to_euro = 0
prefix =
suffix = "credits"
[company]
engine_renew = true
engine_renew_months = 6
engine_renew_money = 100000
renew_keep_length = false
auto_timetable_separation_rate = 40
timetable_autofill_rounding = 74
order_occupancy_smoothness = 75
infra_others_buy_in_depot[0] = true
infra_others_buy_in_depot[1] = true
infra_others_buy_in_depot[2] = true
infra_others_buy_in_depot[3] = true
advance_order_on_clone = true
copy_clone_add_to_group = true
simulated_wormhole_signals = 4
remain_if_next_order_same_station = true
default_sched_dispatch_duration = 0
[ai_players]
none =
none =
none =
none =
none =
none =
none =
none =
none =
none =
none =
none =
none =
none =
none =
[game_scripts]
"Renewed Village Growth" =
[game_time]
time_in_minutes = false
ticks_per_minute = 74
clock_offset = 0
[scenario]
multiple_buildings = true
house_ignore_dates = true
house_ignore_zones = 2
house_ignore_grf = true
[client_locale]
sync_locale_network_server = false
[graphicsset]
name = OpenGFX
shortname = 4F474658
[preset-GalizaTTD]
4E434C53|6BF46833AFBC46548FFEFAB03FBDD83B|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-landscape.grf =
4F472B34|136D889FDAEAA3491F8320248A04425C|4f472b34-opengfx_landscape-1.1.2.tar/opengfx_landscape-1.1.2/ogfx-landscape.grf = 12 1 20 50 4 0
43415000|FBAE0C1ACFDA5AE8B95B4DA230A395FE|43415000-opengfx_airports-0.5.0.tar/opengfx_airports-0.5.0/ogfx-airports.grf = 4 9 3
4B463033|2F2BDE4597BF99F65C8955E399292903|galician-landscape.tar/dist/galician-landscape/galician-landscape.grf = 1 0 1
4E434953|3C332D7F6F6F54D8228DB5B0C1B5DA31|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-infrastructure.grf =
4B463034|F7A0FFF1BE8F8EE6BB535CAD95AF1A3A|galvet.tar/dist/galvet/galvet.grf = 0 1 2 3 0 1 30 30 30 30 51 51 51 71 91 121 51 91 91
4B463032|6FCE5E7EC4CF4FD345F46FAA3EC57292|galician-railways.tar/dist/galician-railways/galician-railways.grf = 0 4 1
55464901|3D5D8D2FCE395D59D2A5D845DE224A01|55464901-u_bridges-1.5.tar/u_bridges-1.5/ubridges.grf =
03F80101|2DF4B0FF4E874E85B046B9737A81DB63|Galiza/fastorigbridge.grf =
51420101|C250FE75C0FCADD3FD3B5478FAB0F9D2|51420101-modular_wider_bridges_set-003.tar/modular_wider_bridges_set-003/modular_wider_bridges_v003.grf = 1
41560102|A060A412721B5B256F6FF372F5D2DA1F|PIPE.grf = 1
4E435452|6E75DD4ED53B314EC374BEB80EC81E9F|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-trains.grf =
4F472B31|4E0B2D42462F295F36AFBA90D239A323|4f472b31-opengfx_trains-0.3.0.tar/opengfx_trains-0.3.0/ogfx-trains.grf = 0 0 0 0
5F5F0300|67FF71DCFD69219D947C2D1DB1C93D54|5f5f0300-china_set_trains-0.3.1.169.tar/china_set_trains-0.3.1.169/chinasettrains.grf = 1 2 2 0 0 1
544D0101|1892612E9A54AC6C90DCC80DA793A5F4|2ccts.tar/2ccts/2ccts.grf = 4 4 1 0 0 0 0 1 1 1 1 1 1
454E0601|39EF19D51564A242664B99F1F530233D|dprktrains.grf = 1 4 4 1 1 0 0
4E434D41|128E3AE7F3661C1D955BBD639E3D1D91|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-marine.grf =
4B463035|4549B77FF30EE247753B29CCA7D92439|sailingships.tar/dist/sailingships/sailingships.grf = 2 2
4A44BBB1|C69A4B591CFDF21F7543FCFF64BCA01C|Galiza/fish.grf = 1 1 0
4E435244|E5D978305832EB67434B9AD1332094EB|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-road.grf =
4F472B32|B46F2D7781158DD122F2E4B2AFC9F38F|4f472b32-opengfx_road_vehicles-0.4.1.tar/opengfx_road_vehicles-0.4.1/ogfx-rv.grf = 0 9 9 0 0 0
41560103|774207EA545EDBDEA31F6339C9BEFB82|Galiza/eGRVTS2_1.grf = 0 63 0 3 0
41501202|B13DD8FB0D7C34CACAC2FE68BD137BB9|41501202-heqs_heavy_equipment_set-1.5.2.tar/heqs_heavy_equipment_set-1.5.2/heqs.grf = 9 9 1 1 1 1
4E474C56|B780A10427B64320EE8529AD9711868E|4e474c56-light_road_vehicle_set-0.2_beta_2.tar/light_road_vehicle_set-0.2beta2/lrvs-0.2.grf =
49464556|F1F4F773E4A978A242EC74AEACCBAAC0|49464556-eyecandy_road_vehicles-1.1.tar/eyecandy_road_vehicles-1.1/eyecandyroadvehicles.grf = 0 0 0 0 0 1 1 1 1 1 1 0
52571208|DC83DAB2933FACCB91678D4F75ABCCC6|52571208-generic_cars-0.4.tar/generic_cars-0.4/cars.grf =
57424101|76218905AFDDBFA43EF47DF4AAA4358E|Auz/AuzRVAnimalsBikesAndPeople.grf = 0 0 0
48531701|45C187C1C2511160FF1A9B5F1424A6C8|48531701-hvw_bus_set-0.2.tar/hvw_bus_set-0.2/hvwbs.grf = 2 2 0
48531999|618514F259A829C9C5D3BBE1C0FECACF|48531999-hvw_modular_truck_set-r130.tar/hvw_modular_truck_set-r130/hvw-mts.grf = 2 2 0 0 0
48531620|3F36A8F5572E24ECF8037762DF7BD256|48531620-hvw_tram_set-1.0b.tar/hvw_tram_set-1.0b/hvwts.grf = 2 2 0
4E434143|B4BB5854278F4707E36509EA905C2F54|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-aircraft.grf =
57415332|DF967556E368DC34D78330E1B8FDC2E1|Galiza/WAS.grf = 0 4 4 1
44440A80|2F7F4BC7FBAD4544CA241DFE6D5A6F39|44440a80-av9.8-0.97.tar/av9.8-0.97/av9point8.grf = 0
4B463037|FF858133779C8E0A1716417083BC8B6D|hot-air-balloons.tar/dist/hot-air-balloons/hot-air-balloons.grf =
4E434755|1531C814F50B09061CC2599559C7F200|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-gui.grf =
4E434D43|C1B36A9B6AD2634ABA03BC68C262E8DB|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-misc.grf =
4D470305|2E96B9AB2BEA686BFF94961AD433A701|4d470305-basecosts-5.0.tar/basecosts-5.0/basecosts.grf = 8 8 8 8 8 8 8 8 8 8 8 19 8 8 8 8 8 8 8 8 8 11 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 15 8 8 8 15 15 8 8 8 8 16
4E434244|62BDEE2136DEEFBC3ED0D172466E99E9|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-buildings.grf =
4B463036|ADC9D220847E895E1BB25F949FC6D664|galician-houses.tar/dist/galician-houses/galician-houses.grf =
44545401|FE3ABA0F882968D336695F6009B61E3A|44545401-central_european_towns-0.7.0_alpha.tar/central_european_towns-0.7.0_alpha/cet.grf =
4E434944|AECA8E46F76F2A3EEFB8A7D6B8238894|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-industry.grf =
4B463038|3B963C49BB1D9393E90527E3EAF2D18C|galifirs.grf = 0 0 0 0 0 0 16 150 80 300 1
54540202|C67B609DD78BF16B0AC1EA453FB7368D|Galiza/beach_ind.grf = 0
54540102|347338B759B2EEA04040D8E3A953C5CA|Galiza/plaza_ind.grf = 0
4E435354|49774C8EEB675A83170CA1090A9A7C03|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-stations.grf =
"454E1401|211FDB32134C562A11E6545E9C7108FC|454e1401-opengfx_stations-1.0.tar/opengfx_stations-1.0/opengfxplusstations - 1.0.grf" =
4A430002|93EAC5F5396584B92D4C5F0AAAF3F6C5|4a430002-industrial_stations_renewal-1.0.2.tar/industrial_stations_renewal-1.0.2/indstatr.grf = 1 0
43485054|F09180381B487C911D5EAF5DFF4FDDF2|43485054-chips_station_set_2-2.0.0.tar/chips_station_set_2-2.0.0/chips.grf =
50430901|C3AE624A4F431B28FCB52CDB7F7867FA|50430901-chips_custom_docks-1.0.tar/chips_custom_docks-1.0/chips_docks.grf = 11 10 0 0 0
52455400|1600687C50C5AB1E72EDD487CAD50E2A|52455400-city_stations-1.tar/coded_by_aegir._artwork_by_aegir-1/ae_cityw.grf =
52455300|37C0B839B13C4B18051580C81EEDF427|52455300-suburban_stations-1.tar/suburban_stations-1/ae_subuw.grf =
52455200|0E5A9C5ACD2BCAF7FA0658C3F905A660|52455200-rural_stations-1.tar/rural_stations-1/ae_ruraw.grf =
464B0000|1E09AB0946AAF9EFF817C2B2F537B74F|464b0000-hungarian_stations-9.tar/hungarian_stations-9/hungarian_stations_v9.grf =
464B0001|A1C6C7221C1F84DA93A92B476435823D|464b0001-hungarian_stations_2-9.tar/hungarian_stations_2-9/hungarian_stations2_v9.grf =
464B0002|8A3FFF30558F758D2FC9131183BA7040|464b0002-hungarian_stations_3-4.tar/hungarian_stations_3-4/hungarian_stations3_v4.grf =
444E0400|735D3D74D5DCADBF1FD6EF7A9C5A3519|444e0400-vast_station_tiles-0.2.0.tar/vast_station_tiles-0.2.0/vast.grf =
45530500|D9BE5AFA481FC3E0A96E6EB72B455612|45530500-japanese_stations-3.6.tar/japanese_stations-3.6/jpstations.grf = 1 1 1 1
47474707|EA802D79FB078536C8806C530D149364|Auz/AuzWaypointsV4.grf =
47474723|5919E4571E00958DA5E48B8F6CC5126B|Auz/AuzRailwayStations.grf =
47474705|3B652B65D149A76B798FD009DD65F9C5|Auz/AuzFreightStations.grf =
47474715|6AF893AB176E324AD8D830213AE95FF4|Auz/AuzStationsNormal.grf =
47474710|736CF9BFC941F18B7D95830506E26F17|Auz/AuzStationsCatenary.grf =
47474724|599DC5009A26A877C5250BF35225B4F0|Auz/AuzStationsNonTracks.grf =
47474729|2155A87FDABCFAAF7045EA1EE3F81C18|Auz/AuzSydneyStation.grf =
47470003|D9CB3599F898883BB2DABCF37539FB05|Auz/AuzWiredStations.grf =
47474713|8B0A740355230AA9251CE1BBF1917B87|Auz/AuzTrainDepotExtensions.grf =
47474812|E7DB50632B5F9E9EECC0133795A4EDC9|Auz/AuzBusAndTruckTerminals.grf =
58534453|2E100BCA91DB8371CD9D57DBEC3AB0C8|58534453-dutch_stations_set-1.0.0_alpha.tar/dutch_stations_set-1.0.0alpha/dutchstatw.grf =
504A0110|E8244C5278CB2408A818854DC11F8940|504a0110-dutch_station_addition_set-0.8.tar/dutch_station_addition_set-0.8/dstatadd_v0_8.grf =
504A0112|80D0B8699A417CC03CD06BC74E8796D0|504a0112-dutch_station_addition_part_2-0.4.tar/dutch_station_addition_part_2-0.4/dstatadd_part2_v0_4.grf =
504A0113|0EBEAE869AADD0EB19747863FCD61C11|504a0113-dutch_station_addition_part_3-002.tar/dutch_station_addition_part_3-002/dstatadd_part3_v002.grf =
46525501|4B58A057CF82CE2C1D8986DB9C8427B8|Galiza/roadstopsandwaypoints.grf =
46525301|57CABEA6B79FAEAA523C660F657832F7|Galiza/FRstations_v001.grf =
50470700|CA3E461A6AC1839D5C69B54B1209CD3A|Galiza/FakeBridgesWaypoints.grf =
54430201|C837D48D657129DD915830D60D68E09F|54430201-cs_stationset_v0.1-1.tar/cs_stationset_v0.1-1/csstationsw.grf =
4E43544E|882C06D7EFBC0C75E34E073549676074|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-townnames.grf =
4B463031|E3CFEF0D9B7E1B65910C3F6064D58AA2|4b463031-galician_town_names-1.0.tar/galician_town_names-1.0/galician-town-names.grf =
4E434F42|8744E4664EC16E52A225F5BABC048E5F|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-newobjects.grf =
4D4D9910|3CD3F4D0D98DDC0DB08E9AD74B88A9E2|4d4d9910-the_lighthouse_set-1.2.tar/the_lighthouse_set-1.2/the_lighthouse_set_v1.2.grf =
47477009|ED4A83A4A6C6B59FD60305BE4C81460F|Auz/AuzBoatingObjectsV5.grf =
454E2C01|486B699830F5B1CA37B7DF185FB473CF|454e2c01-north_korean_aviation_set-1.0.tar/north_korean_aviation_set-1.0/dprkair_1.0.grf = 1 2 2
504A4641|457DE3A141B99D6BE258981C993B6761|504a4641-fake_airport_objects-0.1.tar/fake_airport_objects-0.1/fakeairportobjects_v0_1.grf =
54470203|F84B6D37659F23D19E176C99BC48DEF6|54470203-opengfx_airports_as_objects-0.3.tar/opengfx_airports_as_objects-0.3/airportobjects.grf =
47477003|F0C08C172F53215577FE3910DBA2E0A5|Auz/AuzIndObjectsV19.grf = 0
47477005|A5DE7F7CF98C95513E5B111DFCE27D5F|Auz/AuzIndObjectsAddOnsV24.grf =
47474046|4C36890E4B06118C342FE9E054A663A9|Auz/AuzMarshallingYardsV14.grf =
52580101|D7400DACF064356088E0A13B836A52B9|52580101-firs_and_chips_style_objects-0.1.10.tar/firs_and_chips_style_objects-0.1.10/facso_0.1.10.grf =
52580102|2711A8184D657B7ECBACFAE6D05CB632|52580102-cirso_facso_terrain-0.1.10.tar/cirso_facso_terrain-0.1.10/cirso_0.1.10.grf =
504A0013|8C19753CB66905E869534611828C2654|504a0013-isr_dwe_style_objects-1.1.tar/isrdwestyle_objects-1.1/isrdwe_objects_v1_1.grf =
47474725|121476F7211A1D411838559CEE7138EF|Auz/AuzStationsFootbridges.grf =
47477019|6E6B5792A4FF7799E9D364261BC66D96|Auz/AuzLandscapeObjectsV9.grf =
524A4520|4E0A8E7DB3B51167559EE4EE2D818E68|Auz/AuzAutoplaceObjectsV2.grf =
52425219|F575535EF6DADA3F66AB5CBE2296D2CB|Auz/AuzBeachObjectsV15.grf = 1 0
47477007|640AF8DF55111717AA178CBD4C984043|Auz/AuzWaterObjectsV18.grf =
52425209|DFDB0F30103F4FA96A4C6DC26F7E6681|Auz/AuzWaterObjectsAddOnsV15.grf =
52425201|BFA81F1722F987E75D85AB53D122A5A2|52425201-romazoon_objects-2.tar/romazoon_objects-2/romazoonobjects.grf =
4747DE01|54A5946F9582E88A9A90346B9AE595AB|Auz/AuzArgyBridgeObjectsV5.grf =
47477011|BF7F0D2CD19DA68C6E24CAB99782D24B|Auz/AuzReefsAndAtollsObjectsV2.grf =
47477012|9761E4E61FFFE017D02BE6162CC9533A|Auz/AuzReefsAndAtollsObjectsPt2V4.grf =
47477017|D4895D8EE2439FFC24E4EA9F0220F5EA|Auz/AuzCreekAndDrainObjectsV21.grf =
47477001|A15DF8CC30B96859283C241BC425C53A|Auz/AuzFarmObjectsV35.grf = 0
47477002|C41FD9FA55C9248F5F2BA064B3D372B8|Auz/AuzFencesObjectsV17.grf = 0
47477024|1B218DB634027D9989188F316EE89690|Auz/AuzFenceObjectsAddOnsV7.grf =
444E0C00|B5D2AB5FC93A09E1FAB5F0DB82307ECF|444e0c00-vast_fences-0.2.0.tar/vast_fences-0.2.0/vastfences.grf = 1 0
47474721|A3FA26BC1EBB9F0C9DFE33157EFB5291|Auz/AuzNewCountryPlatforms.grf =
47474750|B7B60BA7DC44FE3B0DC4F113733F5176|Auz/AuzCarParksObjectsV12.grf =
47474757|FE57505556A11C4242B5398B42C890D5|Auz/AuzCarParkAddOns.grf =
58584952|BF8885D7D3986A8CBC432901103D90A9|Auz/AuzIceRoadTest.grf =
47474756|0C56268BFA7A68717BE1D3A15FF13EC6|Auz/AuzSubwayOverlayObjectsV1.grf =
47473436|F68E7D9843E8F20CA7D54786151C130A|Auz/AuzTownObjectsAddOnsV26.grf =
47473335|0941E112ED681DAC5C4CA37197EAAD9D|Auz/AuzTownObjectsV24.grf = 0
4652AD09|3335C32092464926498671A8BCE21932|Galiza/swedishobjects.grf =
43481001|7EA4867BA945A7915E4246847E258BB1|polish_buildings_as_objects-2.0.tar/polish_buildings_as_objects-2.0/polishobjects2.0.grf = 0 0 0
554A0000|F7410A673ED67FA693AD063C4FEB1863|554a0000-polish_buildings_set-1.4.0.tar/polish_buildings_set-1.4.0/plbuildingset140w.grf =
444E0800|334F8C4697455569073434DB107F864A|444e0800-vast_objects-0.3.0.tar/vast_objects-0.3.0/vastobjects.grf = 1 1 2 4
0100403A|8C7F1A415219229AC25F800B53CB9FE1|0100403a-city_objects-1.4.tar/city_objects-1.4/cov1.4.grf =
0100403B|63E78A728DED7544EDF99724A820A3DB|0100403b-city_objects_extras-2.tar/city_objects_extras-2/coextrasv2.0.grf =
47474722|ADD752D1D3FB7A26F3B2FFFD3EBC0614|Auz/AuzNewCityPlatforms.grf =
47475001|C675E4191C308F25021342EF28228B4E|Auz/AuzMilitaryObjectsV26.grf =
47473134|BDAA63EAB4A98AC96D4ABE8EF44B7F4D|Auz/AuzRailBuildingsObjectsV3.grf = 0
47474045|62BDB523585143AE0D19EAACB17B5F1B|Auz/AuzRailsAndTrainsObjectsV6.grf =
52425924|42BD794D49B0E568E2058D10B670F407|Auz/TownWallAddOnsV5.grf =
504A5457|D795341420C564012E262FAB630018C5|504a5457-town_walls_objects-0.1.tar/town_walls_objects-0.1/townwalls_v0_1.grf =
0100403C|9469565471CBAEDB50CDACC612566FB1|Galiza/p&tcv1.2.GRF =
47475959|4C2DCD19914D34D92B1A6D7CA520122B|Auz/AuzSportObjectsV25.grf =
48570101|60EE47680819FD7645E06E63E4DA559B|48570101-tars_mountain_lifts-v0.3.tar/tars_mountain_lifts-v0.3/tars_mountain_liftsv0.3.grf =
47474353|DA3E91928D1B66F227463F7BF507FB4F|Auz/AuzAirportObjects.grf = 0
47474751|911C8453E47871D5E0148B513660F630|Auz/AuzObjectsPre1900V23.grf =
47477015|E8A443FEAB05745DFB2D46BD4DAA9935|Auz/AuzPowerAndTelephoneObjectsV10.grf = 0
47472055|6A963670179C19D6350FC2928656215B|Auz/AuzRoadObjectsV16.grf =
51514642|ADCA44E7788569B9DD3CAF2B8E9F472D|Galiza/dutchroadfurniture_vQ65_v002.grf = 0 0 0
46520101|1A2D119ED23167D82BD714AF7A972E23|Galiza/fridaemonsobjects.grf =
48451001|EA76F7151DE1AD76A7BAE1D94E34D86E|Galiza/hes.grf =
444C4F53|39F25FC87E91F7C4E45D9CC11F0FB52B|444c4f53-dutch_landmark_objects_set-0.2.tar/dutch_landmark_objects_set-0.2/dlos.grf =
[newgrf]
4E434C53|6BF46833AFBC46548FFEFAB03FBDD83B|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-landscape.grf =
4F472B34|136D889FDAEAA3491F8320248A04425C|4f472b34-opengfx_landscape-1.1.2.tar/opengfx_landscape-1.1.2/ogfx-landscape.grf = 12 1 20 50 4 0
43415000|FBAE0C1ACFDA5AE8B95B4DA230A395FE|43415000-opengfx_airports-0.5.0.tar/opengfx_airports-0.5.0/ogfx-airports.grf = 4 9 3
4B463033|2F2BDE4597BF99F65C8955E399292903|galician-landscape.tar/dist/galician-landscape/galician-landscape.grf = 1 0 1
4E434953|3C332D7F6F6F54D8228DB5B0C1B5DA31|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-infrastructure.grf =
4B463034|F7A0FFF1BE8F8EE6BB535CAD95AF1A3A|galvet.tar/dist/galvet/galvet.grf = 0 1 2 3 0 1 30 30 30 30 51 51 51 71 91 121 51 91 91
4B463032|6FCE5E7EC4CF4FD345F46FAA3EC57292|galician-railways.tar/dist/galician-railways/galician-railways.grf = 0 4 1
55464901|3D5D8D2FCE395D59D2A5D845DE224A01|55464901-u_bridges-1.5.tar/u_bridges-1.5/ubridges.grf =
03F80101|2DF4B0FF4E874E85B046B9737A81DB63|Galiza/fastorigbridge.grf =
51420101|C250FE75C0FCADD3FD3B5478FAB0F9D2|51420101-modular_wider_bridges_set-003.tar/modular_wider_bridges_set-003/modular_wider_bridges_v003.grf = 1
41560102|A060A412721B5B256F6FF372F5D2DA1F|PIPE.grf = 1
4E435452|6E75DD4ED53B314EC374BEB80EC81E9F|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-trains.grf =
4F472B31|4E0B2D42462F295F36AFBA90D239A323|4f472b31-opengfx_trains-0.3.0.tar/opengfx_trains-0.3.0/ogfx-trains.grf = 0 0 0 0
5F5F0300|67FF71DCFD69219D947C2D1DB1C93D54|5f5f0300-china_set_trains-0.3.1.169.tar/china_set_trains-0.3.1.169/chinasettrains.grf = 1 2 2 0 0 1
544D0101|1892612E9A54AC6C90DCC80DA793A5F4|2ccts.tar/2ccts/2ccts.grf = 4 4 1 0 0 0 0 1 1 1 1 1 1
454E0601|39EF19D51564A242664B99F1F530233D|dprktrains.grf = 1 4 4 1 1 0 0
4E434D41|128E3AE7F3661C1D955BBD639E3D1D91|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-marine.grf =
4B463035|4549B77FF30EE247753B29CCA7D92439|sailingships.tar/dist/sailingships/sailingships.grf = 2 2
4A44BBB1|C69A4B591CFDF21F7543FCFF64BCA01C|Galiza/fish.grf = 1 1 0
4E435244|E5D978305832EB67434B9AD1332094EB|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-road.grf =
4F472B32|B46F2D7781158DD122F2E4B2AFC9F38F|4f472b32-opengfx_road_vehicles-0.4.1.tar/opengfx_road_vehicles-0.4.1/ogfx-rv.grf = 0 9 9 0 0 0
41560103|774207EA545EDBDEA31F6339C9BEFB82|Galiza/eGRVTS2_1.grf = 0 63 0 3 0
41501202|B13DD8FB0D7C34CACAC2FE68BD137BB9|41501202-heqs_heavy_equipment_set-1.5.2.tar/heqs_heavy_equipment_set-1.5.2/heqs.grf = 9 9 1 1 1 1
4E474C56|B780A10427B64320EE8529AD9711868E|4e474c56-light_road_vehicle_set-0.2_beta_2.tar/light_road_vehicle_set-0.2beta2/lrvs-0.2.grf =
49464556|F1F4F773E4A978A242EC74AEACCBAAC0|49464556-eyecandy_road_vehicles-1.1.tar/eyecandy_road_vehicles-1.1/eyecandyroadvehicles.grf = 0 0 0 0 0 1 1 1 1 1 1 0
52571208|DC83DAB2933FACCB91678D4F75ABCCC6|52571208-generic_cars-0.4.tar/generic_cars-0.4/cars.grf =
57424101|76218905AFDDBFA43EF47DF4AAA4358E|Auz/AuzRVAnimalsBikesAndPeople.grf = 0 0 0
48531701|45C187C1C2511160FF1A9B5F1424A6C8|48531701-hvw_bus_set-0.2.tar/hvw_bus_set-0.2/hvwbs.grf = 2 2 0
48531999|618514F259A829C9C5D3BBE1C0FECACF|48531999-hvw_modular_truck_set-r130.tar/hvw_modular_truck_set-r130/hvw-mts.grf = 2 2 0 0 0
48531620|3F36A8F5572E24ECF8037762DF7BD256|48531620-hvw_tram_set-1.0b.tar/hvw_tram_set-1.0b/hvwts.grf = 2 2 0
4E434143|B4BB5854278F4707E36509EA905C2F54|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-aircraft.grf =
57415332|DF967556E368DC34D78330E1B8FDC2E1|Galiza/WAS.grf = 0 4 4 1
44440A80|2F7F4BC7FBAD4544CA241DFE6D5A6F39|44440a80-av9.8-0.97.tar/av9.8-0.97/av9point8.grf = 0
4B463037|FF858133779C8E0A1716417083BC8B6D|hot-air-balloons.tar/dist/hot-air-balloons/hot-air-balloons.grf =
4E434755|1531C814F50B09061CC2599559C7F200|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-gui.grf =
4E434D43|C1B36A9B6AD2634ABA03BC68C262E8DB|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-misc.grf =
4D470305|2E96B9AB2BEA686BFF94961AD433A701|4d470305-basecosts-5.0.tar/basecosts-5.0/basecosts.grf = 8 8 8 8 8 8 8 8 8 8 8 19 8 8 8 8 8 8 8 8 8 11 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 15 8 8 8 15 15 8 8 8 8 16
4E434244|62BDEE2136DEEFBC3ED0D172466E99E9|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-buildings.grf =
4B463036|ADC9D220847E895E1BB25F949FC6D664|galician-houses.tar/dist/galician-houses/galician-houses.grf =
44545401|FE3ABA0F882968D336695F6009B61E3A|44545401-central_european_towns-0.7.0_alpha.tar/central_european_towns-0.7.0_alpha/cet.grf =
4E434944|AECA8E46F76F2A3EEFB8A7D6B8238894|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-industry.grf =
4B463038|3B963C49BB1D9393E90527E3EAF2D18C|galifirs.grf = 0 0 0 0 0 0 16 150 80 300 1
54540202|C67B609DD78BF16B0AC1EA453FB7368D|Galiza/beach_ind.grf = 0
54540102|347338B759B2EEA04040D8E3A953C5CA|Galiza/plaza_ind.grf = 0
4E435354|49774C8EEB675A83170CA1090A9A7C03|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-stations.grf =
"454E1401|211FDB32134C562A11E6545E9C7108FC|454e1401-opengfx_stations-1.0.tar/opengfx_stations-1.0/opengfxplusstations - 1.0.grf" =
4A430002|93EAC5F5396584B92D4C5F0AAAF3F6C5|4a430002-industrial_stations_renewal-1.0.2.tar/industrial_stations_renewal-1.0.2/indstatr.grf = 1 0
43485054|F09180381B487C911D5EAF5DFF4FDDF2|43485054-chips_station_set_2-2.0.0.tar/chips_station_set_2-2.0.0/chips.grf =
50430901|C3AE624A4F431B28FCB52CDB7F7867FA|50430901-chips_custom_docks-1.0.tar/chips_custom_docks-1.0/chips_docks.grf = 11 10 0 0 0
52455400|1600687C50C5AB1E72EDD487CAD50E2A|52455400-city_stations-1.tar/coded_by_aegir._artwork_by_aegir-1/ae_cityw.grf =
52455300|37C0B839B13C4B18051580C81EEDF427|52455300-suburban_stations-1.tar/suburban_stations-1/ae_subuw.grf =
52455200|0E5A9C5ACD2BCAF7FA0658C3F905A660|52455200-rural_stations-1.tar/rural_stations-1/ae_ruraw.grf =
464B0000|1E09AB0946AAF9EFF817C2B2F537B74F|464b0000-hungarian_stations-9.tar/hungarian_stations-9/hungarian_stations_v9.grf =
464B0001|A1C6C7221C1F84DA93A92B476435823D|464b0001-hungarian_stations_2-9.tar/hungarian_stations_2-9/hungarian_stations2_v9.grf =
464B0002|8A3FFF30558F758D2FC9131183BA7040|464b0002-hungarian_stations_3-4.tar/hungarian_stations_3-4/hungarian_stations3_v4.grf =
444E0400|735D3D74D5DCADBF1FD6EF7A9C5A3519|444e0400-vast_station_tiles-0.2.0.tar/vast_station_tiles-0.2.0/vast.grf =
45530500|D9BE5AFA481FC3E0A96E6EB72B455612|45530500-japanese_stations-3.6.tar/japanese_stations-3.6/jpstations.grf = 1 1 1 1
47474707|EA802D79FB078536C8806C530D149364|Auz/AuzWaypointsV4.grf =
47474723|5919E4571E00958DA5E48B8F6CC5126B|Auz/AuzRailwayStations.grf =
47474705|3B652B65D149A76B798FD009DD65F9C5|Auz/AuzFreightStations.grf =
47474715|6AF893AB176E324AD8D830213AE95FF4|Auz/AuzStationsNormal.grf =
47474710|736CF9BFC941F18B7D95830506E26F17|Auz/AuzStationsCatenary.grf =
47474724|599DC5009A26A877C5250BF35225B4F0|Auz/AuzStationsNonTracks.grf =
47474729|2155A87FDABCFAAF7045EA1EE3F81C18|Auz/AuzSydneyStation.grf =
47470003|D9CB3599F898883BB2DABCF37539FB05|Auz/AuzWiredStations.grf =
47474713|8B0A740355230AA9251CE1BBF1917B87|Auz/AuzTrainDepotExtensions.grf =
47474812|E7DB50632B5F9E9EECC0133795A4EDC9|Auz/AuzBusAndTruckTerminals.grf =
58534453|2E100BCA91DB8371CD9D57DBEC3AB0C8|58534453-dutch_stations_set-1.0.0_alpha.tar/dutch_stations_set-1.0.0alpha/dutchstatw.grf =
504A0110|E8244C5278CB2408A818854DC11F8940|504a0110-dutch_station_addition_set-0.8.tar/dutch_station_addition_set-0.8/dstatadd_v0_8.grf =
504A0112|80D0B8699A417CC03CD06BC74E8796D0|504a0112-dutch_station_addition_part_2-0.4.tar/dutch_station_addition_part_2-0.4/dstatadd_part2_v0_4.grf =
504A0113|0EBEAE869AADD0EB19747863FCD61C11|504a0113-dutch_station_addition_part_3-002.tar/dutch_station_addition_part_3-002/dstatadd_part3_v002.grf =
46525501|4B58A057CF82CE2C1D8986DB9C8427B8|Galiza/roadstopsandwaypoints.grf =
46525301|57CABEA6B79FAEAA523C660F657832F7|Galiza/FRstations_v001.grf =
50470700|CA3E461A6AC1839D5C69B54B1209CD3A|Galiza/FakeBridgesWaypoints.grf =
54430201|C837D48D657129DD915830D60D68E09F|54430201-cs_stationset_v0.1-1.tar/cs_stationset_v0.1-1/csstationsw.grf =
4E43544E|882C06D7EFBC0C75E34E073549676074|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-townnames.grf =
4B463031|E3CFEF0D9B7E1B65910C3F6064D58AA2|4b463031-galician_town_names-1.0.tar/galician_town_names-1.0/galician-town-names.grf =
4E434F42|8744E4664EC16E52A225F5BABC048E5F|nml-categorysystem-v1.1a.tar/nml-categorysystem-alpha/nmlcat-newobjects.grf =
4D4D9910|3CD3F4D0D98DDC0DB08E9AD74B88A9E2|4d4d9910-the_lighthouse_set-1.2.tar/the_lighthouse_set-1.2/the_lighthouse_set_v1.2.grf =
47477009|ED4A83A4A6C6B59FD60305BE4C81460F|Auz/AuzBoatingObjectsV5.grf =
454E2C01|486B699830F5B1CA37B7DF185FB473CF|454e2c01-north_korean_aviation_set-1.0.tar/north_korean_aviation_set-1.0/dprkair_1.0.grf = 1 2 2
504A4641|457DE3A141B99D6BE258981C993B6761|504a4641-fake_airport_objects-0.1.tar/fake_airport_objects-0.1/fakeairportobjects_v0_1.grf =
54470203|F84B6D37659F23D19E176C99BC48DEF6|54470203-opengfx_airports_as_objects-0.3.tar/opengfx_airports_as_objects-0.3/airportobjects.grf =
47477003|F0C08C172F53215577FE3910DBA2E0A5|Auz/AuzIndObjectsV19.grf = 0
47477005|A5DE7F7CF98C95513E5B111DFCE27D5F|Auz/AuzIndObjectsAddOnsV24.grf =
47474046|4C36890E4B06118C342FE9E054A663A9|Auz/AuzMarshallingYardsV14.grf =
52580101|D7400DACF064356088E0A13B836A52B9|52580101-firs_and_chips_style_objects-0.1.10.tar/firs_and_chips_style_objects-0.1.10/facso_0.1.10.grf =
52580102|2711A8184D657B7ECBACFAE6D05CB632|52580102-cirso_facso_terrain-0.1.10.tar/cirso_facso_terrain-0.1.10/cirso_0.1.10.grf =
504A0013|8C19753CB66905E869534611828C2654|504a0013-isr_dwe_style_objects-1.1.tar/isrdwestyle_objects-1.1/isrdwe_objects_v1_1.grf =
47474725|121476F7211A1D411838559CEE7138EF|Auz/AuzStationsFootbridges.grf =
47477019|6E6B5792A4FF7799E9D364261BC66D96|Auz/AuzLandscapeObjectsV9.grf =
524A4520|4E0A8E7DB3B51167559EE4EE2D818E68|Auz/AuzAutoplaceObjectsV2.grf =
52425219|F575535EF6DADA3F66AB5CBE2296D2CB|Auz/AuzBeachObjectsV15.grf = 1 0
47477007|640AF8DF55111717AA178CBD4C984043|Auz/AuzWaterObjectsV18.grf =
52425209|DFDB0F30103F4FA96A4C6DC26F7E6681|Auz/AuzWaterObjectsAddOnsV15.grf =
52425201|BFA81F1722F987E75D85AB53D122A5A2|52425201-romazoon_objects-2.tar/romazoon_objects-2/romazoonobjects.grf =
4747DE01|54A5946F9582E88A9A90346B9AE595AB|Auz/AuzArgyBridgeObjectsV5.grf =
47477011|BF7F0D2CD19DA68C6E24CAB99782D24B|Auz/AuzReefsAndAtollsObjectsV2.grf =
47477012|9761E4E61FFFE017D02BE6162CC9533A|Auz/AuzReefsAndAtollsObjectsPt2V4.grf =
47477017|D4895D8EE2439FFC24E4EA9F0220F5EA|Auz/AuzCreekAndDrainObjectsV21.grf =
47477001|A15DF8CC30B96859283C241BC425C53A|Auz/AuzFarmObjectsV35.grf = 0
47477002|C41FD9FA55C9248F5F2BA064B3D372B8|Auz/AuzFencesObjectsV17.grf = 0
47477024|1B218DB634027D9989188F316EE89690|Auz/AuzFenceObjectsAddOnsV7.grf =
444E0C00|B5D2AB5FC93A09E1FAB5F0DB82307ECF|444e0c00-vast_fences-0.2.0.tar/vast_fences-0.2.0/vastfences.grf = 1 0
47474721|A3FA26BC1EBB9F0C9DFE33157EFB5291|Auz/AuzNewCountryPlatforms.grf =
47474750|B7B60BA7DC44FE3B0DC4F113733F5176|Auz/AuzCarParksObjectsV12.grf =
47474757|FE57505556A11C4242B5398B42C890D5|Auz/AuzCarParkAddOns.grf =
58584952|BF8885D7D3986A8CBC432901103D90A9|Auz/AuzIceRoadTest.grf =
47474756|0C56268BFA7A68717BE1D3A15FF13EC6|Auz/AuzSubwayOverlayObjectsV1.grf =
47473436|F68E7D9843E8F20CA7D54786151C130A|Auz/AuzTownObjectsAddOnsV26.grf =
47473335|0941E112ED681DAC5C4CA37197EAAD9D|Auz/AuzTownObjectsV24.grf = 0
4652AD09|3335C32092464926498671A8BCE21932|Galiza/swedishobjects.grf =
43481001|7EA4867BA945A7915E4246847E258BB1|polish_buildings_as_objects-2.0.tar/polish_buildings_as_objects-2.0/polishobjects2.0.grf = 0 0 0
554A0000|F7410A673ED67FA693AD063C4FEB1863|554a0000-polish_buildings_set-1.4.0.tar/polish_buildings_set-1.4.0/plbuildingset140w.grf =
444E0800|334F8C4697455569073434DB107F864A|444e0800-vast_objects-0.3.0.tar/vast_objects-0.3.0/vastobjects.grf = 1 1 2 4
0100403A|8C7F1A415219229AC25F800B53CB9FE1|0100403a-city_objects-1.4.tar/city_objects-1.4/cov1.4.grf =