-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmanifest.xml
3558 lines (3556 loc) · 191 KB
/
manifest.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<alotinstallermanifest>
<!-- MEM Update Information -->
<highestapprovedmemversion>442</highestapprovedmemversion>
<soaktestingmemversion soakstartdate="2022-03-11">443</soaktestingmemversion>
<!-- YYYY-MM-DD-->
<!-- DEFINE MANIFEST MODES THAT MANIFEST FILES CAN ATTACH TO -->
<manifest mode="MEUITM"
description="Installs MEUITM with MEUITM defaults"
version="3.1.0"/>
<manifest mode="ALOT"
description="Installs ALOT, ALOT Addons, and MEUITM with ALOT defaults"
version="7.5.1"/>
<!-- Stages, weights, UI messages -->
<stages>
<stage name="STAGE_PRESCAN"
weight="0"
tasktext="Performing installation prescan">
<failureinfo resultcode="InstallFailed_PrescanFailed"
failedtopmessage="Preinstallation scan failed"
failedbottommessage="Check installer log for more information"
failedheadermessage="MassEffectModderNoGui crashed or returned a non-zero error code during preinstallation scan. Check the installer log for more info."/>
</stage>
<stage name="STAGE_UNPACKDLC"
weight="0.11004021318"
tasktext="Unpacking DLC">
<failureinfo resultcode="InstallFailed_UnpackingDLCFailed"
failedtopmessage="Failed to unpack DLC"
failedbottommessage="Check installer log for more information"
failedheadermessage="MassEffectModderNoGui crashed or returned a non-zero error code during unpacking of DLC SFARs. Check the installer log for more info. The game is in an inconsistent state and may not be functional."/>
</stage>
<stage name="STAGE_SCAN"
weight="0.012055"
tasktext="Scanning textures">
<failureinfo resultcode="InstallFailed_FailedToScanTextures"
failedtopmessage="Failed to scan textures"
failedbottommessage="Check installer log for more information"
failedheadermessage="MassEffectModderNoGui crashed or returned a non-zero error code during scanning of existing game textures. Check the installer log for more info."/>
<failureinfo ipcerror="ERROR_REFERENCED_TFC_NOT_FOUND"
warning="true"
failedtopmessage="Detected incorrectly installed mod or missing dependent DLC"/>
</stage>
<stage name="STAGE_INSTALLTEXTURES"
weight="0.36997680866"
tasktext="Installing textures"
me3weightscaling="1.1">
<failureinfo ipcerror="ERROR_TEXTURE_MAP_MISSING"
resultcode="InstallFailed_TextureMapMissing"
failedtopmessage="Texture map is missing"
failedbottommessage="Check installer log for more information"
failedheadermessage="Texture map file is missing - has this game been migrated to a new system or user account?"/>
<failureinfo ipcerror="ERROR_TEXTURE_MAP_WRONG"
resultcode="InstallFailed_InvalidTextureMap"
failedtopmessage="Texture map is corrupt"
failedbottommessage="Check installer log for more information"
failedheadermessage="Texture map file is corrupted and unusable - you will need to delete the game and then reinstall so the texture map can be rebuilt."/>
<failureinfo ipcerror="ERROR_ADDED_FILE"
resultcode="InstallFailed_FilesAddedAfterTextureScan"
failedtopmessage="Files were added after previous texture installation"
failedbottommessage="Installation aborted"
failedheadermessage="Adding files/mods after textures have been installed is unsupported and will cause significant issues in the game. You must restore your game to vanilla to use the installer as this installation. Do not install files outside of ALOT Installer after textures are installed."/>
<failureinfo ipcerror="ERROR_REMOVED_FILE"
resultcode="InstallFailed_FilesRemovedAfterTextureScan"
failedtopmessage="Files were removed after previous texture installation"
failedbottommessage="Installation aborted"
failedheadermessage="Removal of package files after textures have been installed will prevent further modifications to the game with ALOT Installer due to texture map desynchronization."/>
<failureinfo resultcode="InstallFailed_FailedToInstallTextures"
failedtopmessage="Failed to install textures"
failedbottommessage="Check installer log for more information"
failedheadermessage="MassEffectModderNoGui crashed or returned a non-zero error code during installation of textures. Check the installer log for more info. The game is not in a usable state."/>
</stage>
<stage name="STAGE_REMOVEMIPMAPS"
weight="0.19155062326"
tasktext="Removing empty mipmaps"
me1weightscaling="2.5">
<failureinfo resultcode="InstallFailed_FailedToRemoveEmptyMipmaps"
failedtopmessage="Failed to remove empty mipmaps"
failedbottommessage="Check installer log for more information"
failedheadermessage="MassEffectModderNoGui crashed or returned a non-zero error code during removal of empty mipmaps. Check the installer log for more info. The game is in an inconsistent state."/>
</stage>
<stage name="STAGE_REPACK"
weight="0.09"
tasktext="Compressing game files">
<failureinfo resultcode="InstallFailed_FailedToCompressGameFiles"
failedtopmessage="Failed to compress game files"
failedbottommessage="Check installer log for more information"
failedheadermessage="MassEffectModderNoGui crashed or returned a non-zero error code during recompression of game files. Check the installer log for more info. The game is in an inconsistent state."/>
</stage>
<stage name="STAGE_MARKERS"
weight="0.015"
tasktext="Installing remaining texture markers">
<failureinfo resultcode="InstallFailed_FailedToInstallRemainingTextureMarkers"
failedtopmessage="Failed to install remaining texture markers"
failedbottommessage="Check installer log for more information"
failedheadermessage="MassEffectModderNoGui crashed or returned a non-zero error code during application of texture markers on non-modded files. Check the installer log for more info. The game is in a functional state, but texture settings and proper markers have not been applied."/>
</stage>
<stage name="STAGE_VERIFYTEXTURES"
weight="0.02"
tasktext="Verifying textures">
<failureinfo resultcode="InstallFailed_TextureVerifyFailed"
failedtopmessage="Texture verification failed"
failedbottommessage="Check installer log for more information"
failedheadermessage="MassEffectModderNoGui crashed or returned a non-zero error code after textures were installed, during the texture verification step. Check the installer log for more info."/>
</stage>
<stage name="STAGE_NONMEMOPERATIONS"
weight="0"
tasktext="Not a real UI stage">
<failureinfo resultcode="InstallFailed_ExistingMarkersFound"
failedtopmessage="Files from existing texture installation found"
failedbottommessage="Game needs to be fully deleted and reinstalled"
failedheadermessage="Detected files that were part of a texture installation, however the current game is not marked as having a texture installation. The game should be fully deleted (not uninstalled) to remove these files."/>
<failureinfo resultcode="InstallFailed_TextureExportFixFailed"
failedtopmessage="Failed to apply texture fixes before install"
failedbottommessage="Check installer log for more info"
failedheadermessage="MassEffectModderNoGui failed to fix known issues in some of your installed mods before installation. Check the installer log for more information."/>
<!-- If other preinstall mods appear this message needs changed -->
<failureinfo resultcode="InstallFailed_PreinstallModFailed"
failedtopmessage="Failed to install ALOV mod"
failedbottommessage="Check installer log for more info"
failedheadermessage="A Lot of Videos (ALOV) mod installs before textures are installed. The installer encountered an error during this procedure. Check the installer log for more information."
showbottomtext="true"/>
<failureinfo resultcode="InstallFailed_MEMExitedBeforeStageDone"
failedtopmessage="Unknown error during texture install"
failedbottommessage="Check installer log for more info"
failedheadermessage="MassEffectModderNoGui exited prematurely during texture install. Check the installer log for more information."/>
<failureinfo resultcode="InstallFailed_ME1LAAApplyFailed"
failedtopmessage="Failed to set ME1 to Large Address Aware (LAA)"
failedbottommessage="Check installer log for more info"
failedheadermessage="MassEffectModderNoGui was unable to set Mass Effect to be Large Address Aware (LAA). This will cause Mass Effect to crash due to memory limitations. Check the installer log for more information."/>
<failureinfo resultcode="InstallFailed_FailedToApplyTextureInfo"
failedtopmessage="Failed to set texture installation info"
failedbottommessage="Check installer log for more info"
failedheadermessage="ALOT Installer was unable to set the texture installation info for the game. Check the installer log for more information."/>
<failureinfo resultcode="InstallFailed_ZipCopyFilesError"
failedtopmessage="Failed to install additional components for a mod"
failedbottommessage="Check installer log for more info"
failedheadermessagige="ALOT Installer was unable to install additional non-texture components for a specific texture mod. Check the installer log for more information."/>
</stage>
</stages>
<!-- Mirrors for music pack -->
<musicpackmirror hash="04eed88382dda6963a489be93823c5ba">https://github.com/ME3Tweaks/ALOTInstaller/releases/download/3.0.586.5600/alotinstaller_music_pack-v4.zip</musicpackmirror>
<musicpackmirror hash="04eed88382dda6963a489be93823c5ba">https://me3tweaks.com/alotinstaller/alotinstaller_music_pack-v4.7z</musicpackmirror>
<!-- Tutorials and comparisons -->
<tutorial link="https://imgur.com/a/WBJQD"
text="Installation Guide (2020)"
tooltip="A tutorial with pictures that walks through the installation steps."/>
<tutorial link="https://yttrian.github.io/ALOT-Comparisons/"
text="Comparison Screenshots"
tooltip="Comparison sliders between ALOT and unmodded, by Ian Moore."/>
<!-- DLC names matching this in ME3 DLC folders will have MEM texture export fix run over it before installation -->
<me3dlctexturefixes>
<dlc name="DLC_CON_BPPack1"/>
<dlc name="DLC_CON_BPPack2"/>
</me3dlctexturefixes>
<!-- DLC names matching this in ME2 DLC folders will have MEM texture export fix run over it before installation -->
<me2dlctexturefixes/>
<!-- Executables with hashes that are not in the list are almost always pirated and are not supported.-->
<supportedhashes>
<supportedhash game="me1"
name="Steam">647b93621389709cab8d268379bd4c47
</supportedhash>
<supportedhash game="me1"
name="Steam, MEM patched">78ac3d9b4aad1989dae74505ea65aa6c
</supportedhash>
<supportedhash game="me1"
name="Steam, V4 MEM patched">5c87b24a141bc6a487a2199dec9739a0
</supportedhash>
<supportedhash game="me1"
name="Steam, BioWare signed">fef464b4b92c19ce76add75de6732ccf
</supportedhash>
<supportedhash game="me1"
name="Origin, MEM patched">2390143503635f3c4cfaed0afe0b8c71
</supportedhash>
<supportedhash game="me1"
name="Origin, V4 MEM patched">bfe090e76ca9f4d585e380662cf4980e
</supportedhash>
<supportedhash game="me1"
name="Origin">ff1f894fa1c2dbf4d4b9f0de85c166e5
</supportedhash>
<supportedhash game="me1"
name="DVD">73b76699d4e245c92110a93c54980b78
</supportedhash>
<supportedhash game="me1"
name="DVD, Polish">298c30a399d0959e5e997a9d64b42548
</supportedhash>
<supportedhash game="me1"
name="DVD, Polish, MEM Patched">9a89527800722ec308c01a421bfeb478
</supportedhash>
<supportedhash game="me1"
name="Origin - German">8bba14d838d9c95e10d8ceeb5c958976
</supportedhash>
<supportedhash game="me1"
name="Origin, Vanilla, Alternate?">a8d61af97159cb62040c07b94e44299e
</supportedhash>
<supportedhash game="me1"
name="Origin, MEM Patched, Alternate?">b4737d250c00472aeb365c5d769ce6aa
</supportedhash>
<supportedhash game="me2"
name="Origin, ME2Game/MassEffect2 swapped">73827026bc9629562c4a3f61a752541c
</supportedhash>
<supportedhash game="me2"
name="Origin">32fb31b80804040996ed78d14110b54b
</supportedhash>
<supportedhash game="me2"
name="Origin - ME2Game">229173ca9057baeb4fd9f0fb2e569051
</supportedhash>
<supportedhash game="me2"
name="Steam">16f214ce81ba228347bce7b93fb0f37a
</supportedhash>
<supportedhash game="me2"
name="DVD (Alternate)">e26f142d44057628efd086c605623dcf
</supportedhash>
<supportedhash game="me2"
name="DVD">b1d9c44be87acac610dfa9947e114096
</supportedhash>
<supportedhash game="me3"
name="Origin">1d09c01c94f01b305f8c25bb56ce9ab4
</supportedhash>
<supportedhash game="me3"
name="Origin (Alternate)">90d51c84b278b273e41fbe75682c132e
</supportedhash>
<supportedhash game="me3"
name="Origin (Russian)">70dc87862da9010aad1acd7d0c2c857b
</supportedhash>
</supportedhashes>
<!-- Compatibility prechecks (occurs in precheck step) -->
<compatibilityprechecks>
<!-- This check is disabled until 3.1 is out as it does not work on 3.0 -->
<!-- <packageprecheck
mode="ALOT"
me3="true"
friendlyname="Project Variety ALOT patch"
packagerelativefilepath="BIOGame/DLC/DLC_MOD_ProjectVariety/CookedPCConsole/BioD_CitHub.pcc"
exportuindex="126"
exportmd5="40e4fc7d412bccb4c712c1ce1c3e98b4"
failuremessage="Project Variety is installed, but the ALOT patch was not applied when Project Variety was installed. This option must be chosen when installing Project Variety, otherwise the game will crash when combined with ALOT. Install Project Variety again, but with the ALOT patch option chosen."
/> -->
</compatibilityprechecks>
<!-- DEFINE MANIFEST FILES -->
<!-- MAKE SURE EACH MODE IS TAGGED -->
<manifestfiles>
<!-- MEUITM MODE STUFF-->
<manifestfile mode="MEUITM"
meuitm="true"
meuitmver="3"
friendlyname="MEUITM 2021"
author="CATACHRISM"
installpriority="0"
recommendationreason="Fully customizable with both vanilla friendly and ME3 continuity options where applicable"
recommendation="Required"
comparisonslink="https://www.nexusmods.com/masseffect/mods/1?tab=images">
<file downloadlink="https://www.nexusmods.com/masseffect/mods/1/?tab=files"
tooltipname="MEUITM"
torrentfilename="MEUITM 2021 Torrent Link-1-1-1639998822.zip"
filename="MEUITM 2021-1-1-1639997607.zip"
size="4385834717"
md5="a3982e107bfaa21abd6c74045a2c1a49" />
<meuitmmodesettings modebackgroundpicture="MEUITM2021\MEUITM.jpg"
modemusic="MEUITM2021\InstallerMusic.mp3" />
<choicefile choicetitle="Alliance Male Officer Uniform"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\AllianceOfficerMaleVanillaStyle.mem"
movedirectly="true"
choicetitle="Vanilla Style" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\AllianceOfficerMaleME3style.mem"
movedirectly="true"
choicetitle="ME3 Style" />
</choicefile>
<choicefile choicetitle="Anderson Head"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Andersonface.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Asari Face Style"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Asariscaly.mem"
movedirectly="true"
choicetitle="High detail" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\AsariSmooth.mem"
movedirectly="true"
choicetitle="Smooth" />
</choicefile>
<choicefile choicetitle="Ash Head"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Ash 2021.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Ash and Liara Romance Bodies"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\AshandLiaraRomanceBodies.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Ash Armor Lights"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\AshArmor.mem"
movedirectly="true"
choicetitle="MEUITM Lights" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\AshArmorNL.mem"
movedirectly="true"
choicetitle="Vanilla Lights" />
</choicefile>
<choicefile choicetitle="Avina Console"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Avina Console.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Avina"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Avina.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Bararians"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Batarians.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Benezia"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\benezia.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Male Custom Shepard"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\BroShep.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Dr. Chakwas Medical Outfit"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\ChakwasVanillaStyle.mem"
movedirectly="true"
choicetitle="Vanilla Style" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\Chakwas.mem"
movedirectly="true"
choicetitle="ME3 Style" />
</choicefile>
<choicefile choicetitle="Citadel Environment"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\CitadelEnvironment.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Council and Udina"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\councilandudina.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Elcor"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Elcor.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="HD Eyes Vanilla style"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Eyes_Vanillastyle.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Female Officer Uniform ME3 Style"
defaultselectedindex="1"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Female Captain mod.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="FemShep Style"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\FemShep.mem"
movedirectly="true"
choicetitle="CDAMJC Cut" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\FemShepOM.mem"
movedirectly="true"
choicetitle="Original MEUITM" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\FemShepVS.mem"
movedirectly="true"
choicetitle="Vanilla" />
</choicefile>
<choicefile choicetitle="Feros Environment"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Feros environment.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Film Grain HD (finer film grain)"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Filmgrain.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Garrus Face"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Garrus_Face_Vanilla_Style.mem"
movedirectly="true"
choicetitle="Vanilla Style" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\Garrus_Face.mem"
movedirectly="true"
choicetitle="MEUITM OG" />
</choicefile>
<choicefile choicetitle="Geth Troopers"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Geth Trooper.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Geth Hoppers"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\GethHopper.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Geth Transporter"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Gethtransportsmaller.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Hanar"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Hanar.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Human Asari NPC Clothing"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\HumanNPCClothingVanillastyle.mem"
movedirectly="true"
choicetitle="Vanilla style" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\HumanNPCClothing.mem"
movedirectly="true"
choicetitle="ME3 Style" />
</choicefile>
<choicefile choicetitle="Husks"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Husks.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Joker"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Joker.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Kaidan"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Kaiden 2021.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Keepers"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Keepers.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Krogan NPC Heads"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Krogans.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Liara Head Options"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Liaraface.mem"
movedirectly="true"
choicetitle="Vanilla Style" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\LiaraLOTSBface.mem"
movedirectly="true"
choicetitle="LOTSB Style" />
</choicefile>
<choicefile choicetitle="Liara Green Outfit Options"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\LiaraGreenVanillaStyle.mem"
movedirectly="true"
choicetitle="Vanilla Style" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\LiaraGreenOutfit.mem"
movedirectly="true"
choicetitle="ME3 Style" />
</choicefile>
<choicefile choicetitle="Light and Shadow Maps"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\LightandShadowMaps.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Mako"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Mako.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="N7 Armor Looks"
defaultselectedindex="2"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\n7NCFNL.mem"
movedirectly="true"
choicetitle="Vanilla style Vanilla Lights" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\n7NCF.mem"
movedirectly="true"
choicetitle="Vanilla style MEUITM Lights" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\N7Armors.mem"
movedirectly="true"
choicetitle="Carbon Fiber MEUITM Lights" />
</choicefile>
<choicefile choicetitle="Normandy uniforms"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Normandy_Uniforms.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Normandy Exterior"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Normandy.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Normandy Interior"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Normandy_environment.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Rachni and Queen"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Rachni and Queen.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Report Robot"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Reporter robot.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Salarians"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Salarians.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Saren"
defaultselectedindex="1"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\sarenvanilla.mem"
movedirectly="true"
choicetitle="Vanilla style" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\Saren.mem"
movedirectly="true"
choicetitle="MEUITM style" />
</choicefile>
<choicefile choicetitle="Scientists"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Scientists.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Sheploo"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Sheploo.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Shiala Armor"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Shiala_Armor.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Sovereign"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Sovereign.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Tali Mask Style"
defaultselectedindex="1"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\TaliClassic.mem"
movedirectly="true"
choicetitle="Hidden Face" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\TaliVisFace.mem"
movedirectly="true"
choicetitle="Visible Face" />
</choicefile>
<choicefile choicetitle="Thorian"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Thorian.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Turian heads"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Turians.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Turian Armor Style"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\TurianArmors.mem"
movedirectly="true"
choicetitle="MEUITM With C-SEC logo" />
<packagefile me1="true"
sourcename="TurianArmorsNL.mem"
movedirectly="true"
choicetitle="MEUITM Lights Without C-SEC logo" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\TurianArmorsVanillaLights.mem"
movedirectly="true"
choicetitle="Vanilla Lights Without C-SEC logo" />
</choicefile>
<choicefile choicetitle="Virmire Environment"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\Virmire.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Volus"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\volus.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Wrex Head Style"
defaultselectedindex="1"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\WrexVS.mem"
movedirectly="true"
choicetitle="Vanilla" />
<packagefile me1="true"
sourcename="MEUITM2021\mods\Wrex.mem"
movedirectly="true"
choicetitle="Battle hardened" />
</choicefile>
<choicefile choicetitle="Wrex Armor"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\WrexArmor.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="FX Fixes"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MEUITM2021\mods\FX fixes.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<zipfile optional="true"
allownoinstall="true"
defaultselectedindex="0"
inarchivepath="MEUITM2021\mods\MEUITMReShade.zip"
gamedestinationpath="Binaries"
choicetitle="MEUITM Reshade" />
<zipfile optional="true"
allownoinstall="true"
defaultselectedindex="0"
inarchivepath="MEUITM2021\mods\SoftShadowsauto.zip"
meuitmsoftshadows="true"
gamedestinationpath="Engine\Shaders"
deleteshaders="true"
choicetitle="Soft Shadows" />
<copyfile optional="true"
allownoinstall="true"
defaultselectedindex="0"
inarchivepath="MEUITM2021\mods\Splash.bmp"
gamedestinationpath="BioGame\Splash\Splash.bmp"
choicetitle="MEUITM Splash Screen" />
<copyfile optional="true"
defaultselectedindex="0"
allownoinstall="true"
inarchivepath="MEUITM2021\Mods\MEUITM.bik"
gamedestinationpath="BioGame\CookedPC\Movies\db_standard.bik"
choicetitle="MEUITM Intro Video" />
<games me1="true"
me2="false"
me3="false" />
</manifestfile>
<manifestfile mode="MEUITM"
friendlyname="MERLIN"
author="CATACHRISM"
installpriority="2"
recommendationreason="Fully customizable features with better in-engine lighting and effects and ''cool'' restorative content"
recommendation="Recommended"
comparisonslink="https://www.nexusmods.com/masseffect/mods/242?tab=images">
<file downloadlink="https://www.nexusmods.com/masseffect/mods/242?tab=files"
tooltipname="MERLIN"
filename="MERLIN-242-2-1636260299.zip"
size="212976746"
md5="db95ad25a00786307bc8ae5a91c3f7cd" />
<meuitmmodesettings modebackgroundpicture="MERLIN\merlin.png"
modemusic="MERLIN\InstallerMusic.mp3" />
<choicefile choicetitle="Restored Lighting"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MERLIN\mods\DynamicLightingandPostProcessing.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Visor Eyelash clipping Shader Fix"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MERLIN\mods\VisorEyelashFix.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="LorikQui'in Eye Fix"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MERLIN\mods\LorikQuiinEyeFix.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Chakwas Mesh low LOD Fix"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MERLIN\mods\ChakwasMeshLODFix.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Normandy NPC Marine armor low lod fix"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MERLIN\mods\NormandyNPCMarinearmorlodfix.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Ash Armor Consistency mesh to match Eden Prime video"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MERLIN\mods\AshArmorConsistencymesh.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Ash Armor Consistency textures to match Eden Prime video"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MERLIN\mods\AshArmorConsistencytextures.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="High Poly Romance Meshes female"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MERLIN\mods\HPRomanceMesh.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="FerosSky restored to 360 look with bright horizon"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MERLIN\mods\FerosSkyFix.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Thorian pods restored translucent/parallax effect"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MERLIN\mods\ThorPodsFix.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Tali visor distortion removal"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MERLIN\mods\TaliVisorDistortionRemoval.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Restored Kaidan Hair strands/spike (less helmet head) seen in developer documentary"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me1="true"
sourcename="MERLIN\mods\Kaiden Hair Restoration.mem"
movedirectly="true"
choicetitle="Install" />
</choicefile>
<zipfile optional="true"
allownoinstall="true"
defaultselectedindex="0"
inarchivepath="MERLIN\mods\SoftShadowsauto.zip"
meuitmsoftshadows="true"
gamedestinationpath="Engine\Shaders"
deleteshaders="true"
choicetitle="Harder Xbox 360 Style Shadows Improved" />
<copyfile optional="true"
defaultselectedindex="0"
allownoinstall="true"
inarchivepath="MERLIN\Mods\MERLIN.bik"
gamedestinationpath="BioGame\CookedPC\Movies\ME_EAsig_720p_v2_raw.bik"
choicetitle="MERLIN Intro Video" />
<games me1="true"
me2="false"
me3="false" />
</manifestfile>
<manifestfile mode="MEUITM"
meuitm="true"
meuitmver="2"
friendlyname="MEUITM2"
author="CATACHRISM"
installpriority="0"
recommendationreason="If using Blur tribute textures for Jack, the Blur mesh mod is required prior to installing MEUITM2."
recommendation="Required">
<file downloadlink="https://www.nexusmods.com/masseffect2/mods/331"
tooltipname="MEUITM2"
torrentfilename="MEUITM2 Torrent Link-331-1-1640000144.zip"
filename="MEUITM2-331-1-1639998261.zip"
size="7660826742"
md5="04ab9ab80a567cdb256ebe83435820b0" />
<meuitmmodesettings modebackgroundpicture="MEUITM2\MEUITM2.jpg"
modemusic="MEUITM2\MEUITM2Playlist.mp3" />
<choicefile choicetitle="Default Shepard (Sheploo)"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me2="true"
movedirectly="true"
sourcename="MEUITM2\Mods\ME2 Sheploo.mem"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Shepard Armor Sets HD"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me2="true"
movedirectly="true"
sourcename="MEUITM2\Mods\ME2 Shepards Armor.mem"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Male Human Faces and Scalps"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me2="true"
movedirectly="true"
sourcename="MEUITM2\Mods\ME2 Bro Shep.mem"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Female Human Faces and Scalps"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me2="true"
movedirectly="true"
sourcename="MEUITM2\Mods\ME2 Femshep CDA Cut.mem"
choicetitle="FemShep CDA Cut" />
<packagefile me2="true"
movedirectly="true"
sourcename="MEUITM2\Mods\ME2 Femshep OM.mem"
choicetitle="FemShep Original MEUITM Style" />
<packagefile me2="true"
movedirectly="true"
sourcename="MEUITM2\Mods\ME2 Femshep Vanilla Style HD.mem"
choicetitle="Femshep Vanilla HD Look" />
</choicefile>
<choicefile choicetitle="HD Eyes Vanilla Style"
defaultselectedindex="0"
allownoinstall="true">
<packagefile me2="true"
movedirectly="true"
sourcename="MEUITM2\Mods\ME2 Eyes.mem"
choicetitle="Install" />
</choicefile>
<choicefile choicetitle="Garrus Face HD Options"
defaultselectedindex="0"