-
Notifications
You must be signed in to change notification settings - Fork 0
/
Startup-Profile.ini
1015 lines (1015 loc) · 48.9 KB
/
Startup-Profile.ini
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
[constants]
;================================= EDHM v18.13 ==============================================================
;------------------------------------------------------------------------------------------------------
; Start-up Values (set these parameters to your start-up preferences)
;
; This file is best viewed in Notepad++ with the Obsidian or Bespin theme (Settings / Style Configurator / Select Theme)
; https://notepad-plus-plus.org/downloads/
;------------------------------------------------------------------------------------------------------
;======================================================================================================
;======================================================================================================
; ** Shield **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** Shield mode **
; Note: Multi-Shield may only work at resolutions >=1920x1080, still testing.
;------------------------------------------------------------------------------------------------------
; Set z105 value for your favourite shield mode
; 100=Custom Multi-colour shield (see Advanced.ini) Note: Multi-colour shield only works at resolutions >= 1920x1080
; 101=Custom single colour (see Advanced.ini)
; 199=XML
; 200=Elite default
z105=101
;======================================================================================================
;======================================================================================================
; ** Radar **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** Radar **
;------------------------------------------------------------------------------------------------------
; Set y106 value
; 100=Custom
; 199=XML (also affected by Outer Rim / Grid / Pulse brightness in Advanced.ini)
; 200=Elite default
y106=100
;------------------------------------------------------------------------------------------------------
; ** Triangle Radar Widget **
;------------------------------------------------------------------------------------------------------
; Set x138 value
; 100=Custom
; 199=XML
; 200=Elite default
x138=100
;------------------------------------------------------------------------------------------------------
; ** Radar Zoom Widget **
;------------------------------------------------------------------------------------------------------
; Set y138 value
; 100=Custom
; 199=XML
; 200=Elite default
y138=100
;------------------------------------------------------------------------------------------------------
; ** Radar zoom level lines **
;------------------------------------------------------------------------------------------------------
; Set w136 value
; 100=Custom
; 199=XML
; 200=Elite default
w136=100
;------------------------------------------------------------------------------------------------------
; ** Radar Objects **
;------------------------------------------------------------------------------------------------------
; Set y139 value
; 100=Custom
; 199=XML
; 200=Elite default
y139=100
;------------------------------------------------------------------------------------------------------
; White objects on the radar (wakes, materials, salvage etc) in standard flight (not supercruise)
; Changed description only
;------------------------------------------------------------------------------------------------------
; White objects ON=1, White objects OFF = 0
x115=1.0
;------------------------------------------------------------------------------------------------------
; ** Landing Line and Coasters Mode (when orange) **
;------------------------------------------------------------------------------------------------------
; Set x139 value
; 100=Custom
; 199=XML
; 200=Elite default
x139=100
;------------------------------------------------------------------------------------------------------
; ** Radar Bodies in Supercruise **
;------------------------------------------------------------------------------------------------------
; Set z138 value
; 100=Custom
; 199=XML
; 200=Elite default
z138=100
;------------------------------------------------------------------------------------------------------
; ** Outer Radar Components **
;------------------------------------------------------------------------------------------------------
; Set x136 value
; 100=Custom
; 199=XML
; 200=Elite default
x136=100
;------------------------------------------------------------------------------------------------------
; ** Mid-HUD Station & Carrier Landing / Take-off, plus Supercruise Drop, Text and Bars **
; Appears above the radar
;------------------------------------------------------------------------------------------------------
; Set w138 value
; 100=Custom
; 199=XML
; 200=Elite default
w138=200.0
;======================================================================================================
;======================================================================================================
; ** Distributor **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** Distributor **
;------------------------------------------------------------------------------------------------------
; Please note:
; The SRV turret has a colour attenuation filter (applied by FDev).
; Use the SRV Turret Boost value in Advanced.ini to adjust the brightness of the SRV Turret Distributor
; Set y136 value
; 100=Custom Standard
; 101=Custom Gradient
; 102=Custom Tri-colour
; 199=XML
; 200=Elite default
y136=101
;------------------------------------------------------------------------------------------------------
; ** Distributor Selection Blocks **
;------------------------------------------------------------------------------------------------------
; Set z136 value
; 100=Custom
; 199=XML
; 200=Elite default
z136=100
;------------------------------------------------------------------------------------------------------
; ** RST bars under distributor **
;------------------------------------------------------------------------------------------------------
; Set w133 value
; 100=Custom
; 199=XML
; 200=Elite default
w133=100
;------------------------------------------------------------------------------------------------------
; ** Pips **
;------------------------------------------------------------------------------------------------------
; Set w134 value
; 100=Custom
; 199=XML
; 200=Elite default
w134=100
;======================================================================================================
;======================================================================================================
; ** Holograms **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** Holograms **
; Also includes OwnShip & Target Holograms, Landing Hologram, SRV Hologram, SRV Terrain on Radar
;------------------------------------------------------------------------------------------------------
; Set y101 value
; 100=Custom
; 199=XML
; 200=Elite default
y101=100
;------------------------------------------------------------------------------------------------------
; ** Other Target Holograms **
; Also includes Friendly, Hostile & Crew Target Holograms
;------------------------------------------------------------------------------------------------------
; Set y112 value
; 100=Use Radar Colors
; 200=Elite default
y112=200
;------------------------------------------------------------------------------------------------------
; ** Radar Elevation Diagonal Lines **
;------------------------------------------------------------------------------------------------------
; Set z139 value
; 100=Custom
; 199=XML
; 200=Elite default
z139=100
;======================================================================================================
;======================================================================================================
; ** Other Front HUD Elements **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** Signature Bar Colour **
;------------------------------------------------------------------------------------------------------
; Set w106 value for your favourite Signature Bar Colour
; 100=Custom (see Advanced.ini)
; 199=XML
; 200=Elite default
w106=100
;------------------------------------------------------------------------------------------------------
; ** Compass **
;------------------------------------------------------------------------------------------------------
; Set w135 value
; 100=Custom
; 199=XML
; 200=Elite default
w135=100
;------------------------------------------------------------------------------------------------------
; ** Thin semi-circles at bottom of hologram **
;------------------------------------------------------------------------------------------------------
; Set x134 value for your favourite Lower Panel Lines colour
; 100=Custom (see Advanced.ini)
; 199=XML (you can specify the thickness of the line in Advanced.ini)
; 200=Elite default
x134=100
;------------------------------------------------------------------------------------------------------
; ** Circular Swirls under Holos **
;------------------------------------------------------------------------------------------------------
; Set z133 value
; 100=Custom
; 199=XML
; 200=Elite default
z133=100
;------------------------------------------------------------------------------------------------------
; ** Hull Blocks under shield, including target ** Hull health
;------------------------------------------------------------------------------------------------------
; Set y134 value
; 100=Custom Standard
; 101=Custom Shaded
; 199=XML
; 200=Elite default
y134=100
;------------------------------------------------------------------------------------------------------
; ** Caustic Affected Hull Blocks **
;------------------------------------------------------------------------------------------------------
; Set w170 value
; 0=Original Elite yellow/green colour
; 1=Custom
w170=0.0
;------------------------------------------------------------------------------------------------------
; ** Status bars under shield **
;------------------------------------------------------------------------------------------------------
; Set x135 value
; 100=Custom
; 199=XML
; 200=Elite default
x135=100
;------------------------------------------------------------------------------------------------------
; ** Fuel Bar **
;------------------------------------------------------------------------------------------------------
; Set y135 value
; 100=Custom
; 199=XML
; 200=Elite default
y135=100
;------------------------------------------------------------------------------------------------------
; ** Status Lights ** (Mass Lock, Landing Gear, Cargo Scoop)
;------------------------------------------------------------------------------------------------------
; Set z135 value
; 100=Custom
; 199=XML
; 200=Elite default
z135=100
;------------------------------------------------------------------------------------------------------
; ** Targeting Panel ** (Speed/Distance/Alignment in Supercruise. Excluding lower panel lines and text colour)
;------------------------------------------------------------------------------------------------------
; Set x140 value
; 100=Custom
; 199=XML
; 200=Elite default
x140=100
;------------------------------------------------------------------------------------------------------
; ** Divider Lines on Targeting Panel in Supercruise **
;------------------------------------------------------------------------------------------------------
; Set x78 value
; 100=Custom
; 199=XML
; 200=Elite default
x78=100
;------------------------------------------------------------------------------------------------------
; ** Panel Lines (lower) **
;------------------------------------------------------------------------------------------------------
; Set z104 value for your favourite Lower Panel Lines colour
; 100=Custom (see Advanced.ini)
; 199=XML (you can specify the thickness of the line in Advanced.ini)
; 200=Elite default
z104=100
;------------------------------------------------------------------------------------------------------
; ** Speeding Warning (lines only) **
;------------------------------------------------------------------------------------------------------
; Set y104 value
; 100=Custom
; 199=XML
; 200=Elite default
y104=100.0
;------------------------------------------------------------------------------------------------------
; ** FSD Cooldown and Escape Vector **
;------------------------------------------------------------------------------------------------------
; Set x109 value
; 100=Custom
; 199=XML
; 200=Elite default
x109=100
;------------------------------------------------------------------------------------------------------
; ** Glitching HUD mode **
; The HUD will sometimes glitch when taking damage, and by default is orange
; 0=Default ELite
; 1=Random colours
;------------------------------------------------------------------------------------------------------
z108=1
;======================================================================================================
;======================================================================================================
; ** Other Panel Elements **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** Chat Panel Lines **
; (Note: The colours will look slightly different to the Info Panel lines because the original Elite colours are different)
;------------------------------------------------------------------------------------------------------
; Set x137 value for your favourite colour
; 100=Custom (see Advanced.ini)
; 199=XML
; 200=Elite default
x137=100
;------------------------------------------------------------------------------------------------------
; ** Chat Panel Top Row Icons **
;------------------------------------------------------------------------------------------------------
; Set y137 value for your favourite colour
; 100=Custom (see Advanced.ini)
; 199=XML
; 200=Elite default
y137=100
;------------------------------------------------------------------------------------------------------
; ** Info Panel Lines **
;------------------------------------------------------------------------------------------------------
; Set w206 value for your favourite colour
; 100=Custom (see Advanced.ini)
; 199=XML
; 200=Elite default
w206=100
;------------------------------------------------------------------------------------------------------
; ** Side Panels, Main Lines **
;------------------------------------------------------------------------------------------------------
; Set x75 value
; 100=Custom
; 199=XML
; 200=Elite default
x75=100
;------------------------------------------------------------------------------------------------------
; ** Ship Panel Background Shadows / Opacity **
; (set default level of opacity in Advanced.ini, works across all colour modes)
;------------------------------------------------------------------------------------------------------
; Set x89 value
; 100=Custom
; 101=Space Grey (dark)
; 199=XML
; 200=Elite default
x89=100
;------------------------------------------------------------------------------------------------------
; ** Panel Artwork / Drawings **
;------------------------------------------------------------------------------------------------------
; Set w89 value
; 100=Custom
; 199=XML
; 200=Elite default
w89=100
;------------------------------------------------------------------------------------------------------
; ** Ship sketches on Advanced Maintenance and Carrier/Station Panels **
;------------------------------------------------------------------------------------------------------
; Set w78 value
; 100=Custom
; 199=XML
; 200=Elite default
w78=199
;------------------------------------------------------------------------------------------------------
; ** Nav Panel, Current Location Pin/wedge **
; (only the Current Location Pin can be modded to a custom colour. The Destination Pin is connected
; to other elements/lines on the Ship Panel)
;------------------------------------------------------------------------------------------------------
; Set z97 value
; 100=Custom
; 200=Elite default
z97=100
;------------------------------------------------------------------------------------------------------
; ** OwnCarrier Nav Panel Colour **
; Note: This will also change the colour of the 'Confirm items transfer' on the Ship Panel Inventory tab
;------------------------------------------------------------------------------------------------------
; Set x81 value
; 100=Custom colour
; 200=Elite default
x81=200
;------------------------------------------------------------------------------------------------------
; ** OwnCarrier Nav Panel TEXT Colour **
;------------------------------------------------------------------------------------------------------
; Set y81 value
; 100=Same as OwnCarrier Nav Panel Custom Colour
; 101=Same as main text on panel colour
y81=100
;------------------------------------------------------------------------------------------------------
; ** Mission Line on Nav Panel Colour **
;------------------------------------------------------------------------------------------------------
; Set z89 value
; 100=Custom
; 200=Elite default
z89=100
;------------------------------------------------------------------------------------------------------
; ** Mission Line on Nav Panel TEXT Colour **
;------------------------------------------------------------------------------------------------------
; Set z81 value
; 100=Same as Mission Line Custom Colour
; 101=Same as main text on panel colour
z81=100
;------------------------------------------------------------------------------------------------------
; ** Icons on various panels **
; Customisation of secondary Nav Panel icon colours in Advanced.ini when z75=100
;------------------------------------------------------------------------------------------------------
; Set z75 value
; 100=Custom
; 199=XML
; 200=Elite default
z75=100
;------------------------------------------------------------------------------------------------------
; ** FSD Charging Bar **
;------------------------------------------------------------------------------------------------------
; Set y133 value
; 100=Custom
; 199=XML
; 200=Elite default
y133=199.0
;------------------------------------------------------------------------------------------------------
; ** Fuel Scoop ** (scooping rate / amount, not heat level)
;------------------------------------------------------------------------------------------------------
; Set x133 value
; 100=Custom
; 199=XML
; 200=Elite default
x133=199
;------------------------------------------------------------------------------------------------------
; ** Wing Ship Indicators **
;------------------------------------------------------------------------------------------------------
; Set y120 value
; 100=Custom (Hull and icon will take XML colour; Shield will take Single shield colour; Middle symbol custom RGB)
; 199=As Custom, but shield will take XML colour (Note: The red 'shield down' will also be affected by the XML)
; 200=Elite default
y120=100
;------------------------------------------------------------------------------------------------------
; ** Powers and GalNet Background Colour Mode **
;------------------------------------------------------------------------------------------------------
; Set x99 value
; 100=Custom
; 101=Grey
; 199=XML
; 200=Elite default
x99=100
;------------------------------------------------------------------------------------------------------
; ** Galnet Image Filter Colour **
;------------------------------------------------------------------------------------------------------
; Set w104 value
; 100=Custom (same as Codex and Powers custom filter colour)
; 101=Grey
; 199=XML
; 200=Elite default
w104=199
;------------------------------------------------------------------------------------------------------
; ** Codex filter (also Passenger Missions) Colour **
;------------------------------------------------------------------------------------------------------
; Set w81 value
; 100=Custom (same as Galnet and Powers custom filter colour)
; 101=Grey
; 199=XML
; 200=Elite default
w81=100
;------------------------------------------------------------------------------------------------------
; ** Powers Panel Portrait filter & Galnet image filter **
;
; Note: When changing modes you need to move your cursor around the screen (in-game) to update
;
; Note: If "True powers colours" is selected for the Powers Panel filter, the Galnet filter will use
; the Custom colour defined in Advanced.ini
;------------------------------------------------------------------------------------------------------
; Set y99 value
; 100=Custom (same as Galnet and Codex custom filter colour)
; 101=Grey
; 102=True powers colours
; 199=XML
; 200=Elite default
y99=102
;------------------------------------------------------------------------------------------------------
; ** CQC Rank on Ship Panel **
;------------------------------------------------------------------------------------------------------
; 100=Custom Colour
; 200=Elite Default
y119=100
;------------------------------------------------------------------------------------------------------
; ** Rank Boxes on Ship Panel **
;------------------------------------------------------------------------------------------------------
; 100=Custom CQC rank box only
; 101=All rank boxes
; 200=Standard (Orange becomes XML)
z119=101
;------------------------------------------------------------------------------------------------------
; ** Combat Zone (CZ) Panel, and Targeting Panel Target Ship Subcomponents **
;------------------------------------------------------------------------------------------------------
; Set w123 value
; 100=Custom
; 199=XML
; 200=Elite default
w123=100
;------------------------------------------------------------------------------------------------------
; ** Cargo Scoop Reticle **
;------------------------------------------------------------------------------------------------------
; Set z113 value
; 100=Custom
; 199=XML
; 200=Elite default
z113=199
;------------------------------------------------------------------------------------------------------
; ** Sub-Surface Mining and Seismic Charges Mini Games **
;------------------------------------------------------------------------------------------------------
; Set y113 value
; 100=Custom
; 199=XML
; 200=Elite default
y113=199
;======================================================================================================
;======================================================================================================
; ** Ambient Cabin Lighting **
;======================================================================================================
;======================================================================================================
; v13.5 lighting fix to cover orange lighting in ships with a 'long nose' (eg. FDL)
; 0=Extended Lighting (default)
; 1=Old style (Primary Colour less dominant)
y111=0
;======================================================================================================
;======================================================================================================
; ** Combat HUD (CHUD) & Analysis HUD (AHUD) **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** Combat HUD (CHUD)
;------------------------------------------------------------------------------------------------------
; Set x141 value
; 100=Custom (Single colour, Bird-of-Prey and Synthwave)
; 199=XML
; 200=Elite default
x141=100
;------------------------------------------------------------------------------------------------------
; ** Analysis HUD (AHUD)
;------------------------------------------------------------------------------------------------------
; Set w140 value
; 100=Custom
; 199=XML
; 200=Elite default
w140=100
;------------------------------------------------------------------------------------------------------
; ** AHUD Blue Text swap **
;------------------------------------------------------------------------------------------------------
; Set w87 value
; 100=Use same colour as Orange Text Colour Swap (Main text)
; 101=Custom
; 200=Elite default
w87=101
;------------------------------------------------------------------------------------------------------
; ** Red Elements around the CHUD/AHUD **
;
; Useful for red-based themes, to differentiate inactive hardpoints
;
; Note: In Elite default mode, you can adjust the brightness of the red bars using the
; Red element Brightness (w189) in Advanced.ini
;
; Note: There is an FDev bug with the Analysis mode scanner bars when in Combat mode. In default Elite,
; they randomly become orange OR AHUD blue when in Combat Mode (they should be orange).
; Therefore, sometimes you will see your AHUD colour on an inactive scanner when in Combat mode
;------------------------------------------------------------------------------------------------------
; Set y114 value
;100=Custom
;200=Elite semi-default (non-active scanner bars will be red instead of bright orange)
y114=200
;======================================================================================================
;======================================================================================================
; ** Targeting Reticles **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** Combat Reticles **
;------------------------------------------------------------------------------------------------------
; Set y141 value
; 100=Custom
; 199=XML
; 200=Elite default
y141=100
;------------------------------------------------------------------------------------------------------
; ** Mouse Dot (Ship & SRV) **
;------------------------------------------------------------------------------------------------------
; Set z103 value
; 100=Custom
; 199=XML
; 200=Elite default
z103=100
;------------------------------------------------------------------------------------------------------
; ** Remote Release Flac / Flechette Launcher **
;------------------------------------------------------------------------------------------------------
; Set w174 value
; 100=Custom
; 199=XML
; 200=Elite default
w174=100.0
;------------------------------------------------------------------------------------------------------
; ** Analysis Reticles **
; Elite does some strange things with the analysis reticles when in combat mode (its base colour becomes orange
; instead of blue). In Combat Mode, the colour of the data link scanner animation is controlled by the Missile
; Lock shader, and will take the same colour.
; This also means the Analysis Reticles in Combat Mode can't be set to default Elite
; without also making the missile lock default orange
; The blue analysis reticles in Analysis Mode can be modded correctly
; XML can cause glitches in the Data Link Scanner and isn't included
;------------------------------------------------------------------------------------------------------
; Set z114 value
; 100=Custom
; 200=Elite default
z114=200
;------------------------------------------------------------------------------------------------------
; ** Environmental and Destination Targets **
;------------------------------------------------------------------------------------------------------
; Set z141 value
; 100=Custom
; 199=XML
; 200=Elite default (Not working yet)
z141=100
;------------------------------------------------------------------------------------------------------
; ** Other Ship Target Elements **
; Also includes Friendly, Hostile & Crew Target Elements
; Rhombus, Triangle Holo, Text
;------------------------------------------------------------------------------------------------------
; Set x112 value
; 100=Use Radar Colors
; 200=Elite default
x112=200
;------------------------------------------------------------------------------------------------------
; ** Hidden Destination Targets **
; Circle and Text for Destination Hidden Behind an Object
; Text Brightness managed by w68 (in Mode 1 or 2)
;------------------------------------------------------------------------------------------------------
; Set z115 value
; 100=Mode 1 - Circle and Text with Destination Colors
; 101=Mode 2 - Circle with Destination Colors and Text with Main Text Color
; 200=Elite default
z115=200
;------------------------------------------------------------------------------------------------------
; ** Grey Rhombus (non-biological potential target in the environment) **
;------------------------------------------------------------------------------------------------------
; Set x107 value
; 100=Custom
; 199=XML
; 200=Elite default
x107=100.0
;------------------------------------------------------------------------------------------------------
; ** Rank icon that appears next to targeted ship (neutral / orange only) **
;------------------------------------------------------------------------------------------------------
; Set w141 value
; 100=Main text colour
; 101=Neutral target holo colour
; 199=XML
; 200=Elite default
w141=100.0
;======================================================================================================
;======================================================================================================
; ** Text **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** Orange Text Colour Swap **
; (the majority of text)
;------------------------------------------------------------------------------------------------------
; Set w75 value
; 100=Custom
; 199=XML
; 200=Elite default
w75=100
;------------------------------------------------------------------------------------------------------
; ** Blue Text Colour Swap **
; Various smaller texts, Info Panel, Missions, FSD Cooldown, Codex
;------------------------------------------------------------------------------------------------------
; Set y78 value
; 100=Custom
; 199=XML
; 200=Elite default
y78=100
;------------------------------------------------------------------------------------------------------
; ** Inverted / Black / Highlighted Text & Icons in Ship **
;------------------------------------------------------------------------------------------------------
; Set z87 value
; 100=Custom
; 200=Elite default
z87=200.0
;------------------------------------------------------------------------------------------------------
; ** Ship Name **
; Set the colour of the background in Advanced.ini if z137=100 (Custom)
;------------------------------------------------------------------------------------------------------
; Set z137 value
; 100=Custom
; 199=XML
; 200=Elite default
z137=100
;------------------------------------------------------------------------------------------------------
; ** Targeting panel, text colour when aligned in supercruise
;------------------------------------------------------------------------------------------------------
; Set w118 value
; 101=Colour matched with alignment bars
; 200=Elite default (blue)
w118=101
;------------------------------------------------------------------------------------------------------
; ** XML Text Override
; This will override ALL text with your XML colour matrix
; 0=OFF
; 1=ON
;------------------------------------------------------------------------------------------------------
y108=0
;======================================================================================================
;======================================================================================================
; ** Orbital / Gravity / Exclusion zone Lines **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** Orbital / Gravity / Exclusion zone Lines **
;------------------------------------------------------------------------------------------------------
; Set y75 value
; 100=Custom colours
; 199=XML colours (for XML lines brightness, use Orbit Lines brightness [w39])
; 200=Elite default
y75=100.0
;======================================================================================================
;======================================================================================================
; ** Night Vision & Pulse Wave Analyser **
;======================================================================================================
;======================================================================================================
;== Night Vision ==
; Set y93 value
; 100=Custom
; 200=Elite default
y93=100.0
;== Pulse Wave Analyser Asteroid Glow ==
; Set z93 value
; 100=Custom
; 200=Elite default
z93=100.0
;== PWA Wavefront ==
; Set w93 value
; 100=Custom
; 200=Elite default
w93=100.0
;======================================================================================================
;======================================================================================================
; ** Planetary Landing Reticle **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** Planetary Landing Reticle ** Bearing and descent angle bars, plus text
; Individual elements can be adjusted in Advanced.ini
;------------------------------------------------------------------------------------------------------
; Set z107 value
; 100=Custom
; 199=XML
; 200=Elite default
z107=100.0
;------------------------------------------------------------------------------------------------------
; ** Landed Text (usually blue) **
; Set the brightness of this text in Advanced.ini (key w107)
;------------------------------------------------------------------------------------------------------
; Set w218 value
; 101=Same as Custom Main Text (orange text swap)
; 102=Same as Custom Blue Text Colour Swap
; 103=Same as Custom AHUD Text colour
; 199=XML
; 200=Elite default
w229=101.0
;======================================================================================================
;======================================================================================================
; ** FSS & DSS **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** Full-Spectrum Scanner (FSS) and Detailed Surface Scanner (DSS)
;------------------------------------------------------------------------------------------------------
; Set z118 value
; 100=Custom
; 200=Elite default
z118=100.0
;------------------------------------------------------------------------------------------------------
; ** FSS Gas Giant Icons **
; Replace Orange Gas Giant Icons with the Blue color corresponding to the FSS before U18.02
; This option is independent and does not require the activation of another setting
;------------------------------------------------------------------------------------------------------
; Set y100 value
; 1=Blue Gas Giant Icons (Previous Color)
; 0=Orange Gas Giant Icons (Elite Default)
y100=0
;------------------------------------------------------------------------------------------------------
; ** FSS Mission Icons **
; Replace Orange Mission Icons and Arrows with the Mission Panel Custom Color
; This option is independent and does not require the activation of another setting
;------------------------------------------------------------------------------------------------------
; Set z111 value
; 100=Use Mission Panel Custom Color
; 199=XML
z111=199
;======================================================================================================
;======================================================================================================
; ** GalMap **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** GalMap Icon Colour (excluding Engineering), and Travel Line colour **
;------------------------------------------------------------------------------------------------------
; Set y84 value
; 100=Custom
; 199=XML
; 200=Elite default
y84=100
;------------------------------------------------------------------------------------------------------
; ** GalMap Engineering Icon Colour **
;------------------------------------------------------------------------------------------------------
; Set z84 value
; 100=Custom
; 199=XML
; 200=Elite default
z84=100
;------------------------------------------------------------------------------------------------------
; ** GalMap Damaged Station Icon Colour **
;------------------------------------------------------------------------------------------------------
; Set x111 value
; 100=Custom
; 199=XML
; 200=Elite default
x111=100
;------------------------------------------------------------------------------------------------------
; ** GalMap Grid Lines & Coasters **
;------------------------------------------------------------------------------------------------------
; Set w191 value
; 100=Custom
; 200=Elite default
w191=100
;------------------------------------------------------------------------------------------------------
; ** GalMap System Z-axis Lines **
;------------------------------------------------------------------------------------------------------
; Set w192 value
; 100=Custom
; 200=Elite default
w192=100
;------------------------------------------------------------------------------------------------------
; ** GalMap System Connector Lines **
; Note: You can turn these off in GalMap Display Options (in-game) - Bottom left row of icons
;
; The Brightness setting in Advanced.ini will affect all colour modes (including default colour)
; If you set Brightness to 0 it will also turn off the "System-distance-to-galactic-plane" lines
;------------------------------------------------------------------------------------------------------
; Set y89 value
; 100=Custom
; 101=Grey
; 199=XML
; 200=Elite default
y89=100
;------------------------------------------------------------------------------------------------------
; ** GalMap Fog **
;------------------------------------------------------------------------------------------------------
; Set w190 value
; 1=Fog Reduction Level 1
; 2=Fog Reduction Level 2
; 200=Default Elite
w190=200
;------------------------------------------------------------------------------------------------------
; ** GalMap System Hats (semi-circles on top of star images) **
;------------------------------------------------------------------------------------------------------
; Set w97 value
; 0=Off
; 1=On (default)
w97=1
;======================================================================================================
;======================================================================================================
; ** SRVs **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** SRV Scanner Colour **
;------------------------------------------------------------------------------------------------------
; Set w210 value for your SRV scanner colour
; 100=Custom
; 199=XML
; 200=Elite default
w210=100
;------------------------------------------------------------------------------------------------------
; ** SRV Turret, Small image of SRV on radar, plus misc elements **
;------------------------------------------------------------------------------------------------------
; Set w73 value
; 100=Custom
; 199=XML
; 200=Elite default
w73=100
;======================================================================================================
;======================================================================================================
; ** Space Environment **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** SuperCruise Snow **
;------------------------------------------------------------------------------------------------------
; Set y234 value
; 100=Custom
; 101=Multi-colour (changes colour with direction)
; 199=XML
; 200=Elite default
y234=200.0
;------------------------------------------------------------------------------------------------------
; ** Supercruise SideLines **
; Brightness in Advanced.ini also affects Elite default colour
;------------------------------------------------------------------------------------------------------
; 0=OFF
; 100=Custom Colour
; 199=XML
; 200=Elite default
w120=100.0
;------------------------------------------------------------------------------------------------------
; ** Space Dust (aka Snow in normal flight) **
;------------------------------------------------------------------------------------------------------
; ON=1, OFF = 0
z121=1.0
; If Space Dust is ON, the following modes are available:
; Set z142 value
; 0=Space Dust Elite Default Mode (with original length and brightness)
; 1=Space Dust Custom Colour Mode
; 2=Space Dust MultiColour Mode
z142=1.0
;======================================================================================================
;======================================================================================================
; ** Canopy Effects **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** Canopy Scratches **
; Hide the canopy scratches when the ship is very damaged.
;------------------------------------------------------------------------------------------------------
; Set x229 value
; 0=Elite default
; 1=Hide Canopy Scratches
x229=0
;------------------------------------------------------------------------------------------------------
; ** Canopy Ice **
; Hide the canopy ice when the ship is very cold.
;------------------------------------------------------------------------------------------------------
; Set y229 value
; 0=Elite default
; 1=Hide Canopy Ice
y229=0
;------------------------------------------------------------------------------------------------------
; ** Canopy Condensation **
; Hide the canopy condensation when the ship is very hot.
;------------------------------------------------------------------------------------------------------
; Set z229 value
; 0=Elite default
; 1=Hide Canopy Condensation
z229=0
;======================================================================================================
;======================================================================================================
; ** Probe Trail **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; ** Probe Trail Modes **
; Classic & XML modes only replaces the color of the trail.
; Boosted mode replaces the color and gives a very luminous effect to the trail.
;------------------------------------------------------------------------------------------------------
; Set z234 value
; 100=Classic Probe Trail Custom Colour Mode
; 101=Boosted Probe Trail Custom Colour Mode
; 199=XML Colour Mode
; 200=Elite Default Mode (with original colour and brightness)
z234=100.0
;======================================================================================================
;======================================================================================================
; ** Colour Protection **
;======================================================================================================
;======================================================================================================
;------------------------------------------------------------------------------------------------------
; The mod protects certain default Elite colours to add variety to the panel and
; interactive screens (otherwise they all become coloured with your XML)
; You can override colour protection below.
;
; Please note: This version of EDHM was designed with colour protection, so it's
; recommended you leave this setting ON (or possibly remove the bright yellows)
;
; This is a new experimental feature, and if you spot any glitches please let me know
; Some icons aren't colour protected, they just aren't modded
;------------------------------------------------------------------------------------------------------
; Bright Yellow Protection
; 0=Off
; 1=On (Protect Bright Yellow from XML)
z3=1.0
; General Yellow Protection
; 0=Off
; 1=On (Protect General Yellow from XML)
y4=1.0
; White Protection
; 0=Off
; 1=On (Protect White from XML)
z4=1.0
; Green Protection
; 0=Off