-
Notifications
You must be signed in to change notification settings - Fork 9
/
masterlist.yaml
9108 lines (8767 loc) · 289 KB
/
masterlist.yaml
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
# LOOT ignores anything that doesn't come under 'bash_tags', 'globals',
# 'groups', or 'plugins', so a section like 'common' is useful for storing
# data that gets re-used.
prelude:
common:
# Message Anchors
- &alreadyInX
type: error
content: 'Delete. Already included in {0}.'
- &alreadyInOrFixedByX
type: error
content: 'Delete. Already included or otherwise fixed in {0}.'
- &alsoUseX
type: say
content: 'It''s highly recommended that you also use {0}.'
- &compatIssuesWithX
type: say
content: 'This plugin has compatibility issues with {0}. For more information, read this mod''s compatibility notes.'
- &compatNotes
type: say
content: 'It is recommended that you read this mod''s [Compatibility Notes]({0}).'
- &compatPatch
type: say
content: 'It is recommended that you check the following compatibility patch compilation for this mod: {0}'
- &compatPatchForX
type: say
content: 'It is recommended that you check the following compatibility patch compilation for {0}: {1}'
- &corrupt
type: warn
content: 'This file is corrupt and should not be used.'
- &deactivateAfterCharacterCreation
type: say
content: 'Deactivate and/or uninstall this mod after character creation.'
- &deleteOrDeactivateX
type: error
content: 'Delete or deactivate. {0}'
subs: [ '' ]
- &deletePlugin
type: warn
content: 'When using **{0}**, it''s recommended that you deactivate or delete this ESP file but keep the resources (e.g. meshes, textures) installed with this mod.'
- &deprecated
type: warn
content: 'This file is deprecated and should no longer be used.'
- &disableAfterGeneratingXwithY
type: say
content: 'This plugin may be disabled after generating **{0}** with **{1}**.'
- &essentialFiles
type: warn
content: 'Another mod seems to be overwriting one of this mod''s essential files. Please ensure you''re using this mod''s version of {0} or a compatible version if available.'
- &flagESM
type: warn
content: 'This plugin isn''t an ESM, but it appears to contain navmeshes. This can lead to problems with NPC pathfinding. It is recommended to flag this plugin as **ESM** to avoid these problems. It might also be necessary to ensure that all references called by scripts in this plugin are flagged as **persistent**.'
- &includesX
type: say
content: '{0} is included with this mod.'
- &languageX
type: say
content: 'Language: {0}'
- &mainQuestCompleted
type: say
content: 'Only use this plugin once the main quest of the game has been completed.'
- &masterReassign
type: say
content: 'The **{0}** master must be reassigned to **{1}**.'
- &missingRequirementXforY
type: warn
content: 'It appears you have installed **{1}**, but some of its requirements seem to be missing. Please ensure you have correctly installed **{0}**.'
- &missingRequirementXforPlugin
type: warn
content: 'Some of this plugin''s requirements seem to be missing. Please ensure you have correctly installed **{0}**.'
- &moddingPlugin
type: error
content: 'This plugin is a modding resource and should not be used in-game.'
- &moveXFromYToZ
type: say
content: 'Move {0} from {1} to {2}.'
- &obsolete
type: warn
content: 'Obsolete. Update to the latest version. {0}'
subs: [ '' ]
- &onlyUseSmashOrBash
type: say
content: 'Can be used with a {0} but would require additional work. A Smashed Patch or Bash Patch should be used independently of one another.'
- &optional
type: say
content: 'This plugin is optional.'
- &patch3rdParty
type: say
content: 'You seem to be using **{0}**, but you have not enabled a compatibility patch for this mod. A third party patch is available here: {1}'
- &patcherScriptAvailable
type: say
content: '{0} patcher script available here: {1}'
- &patchIncluded
type: say
content: 'You seem to be using **{0}**, but you have not enabled a compatibility patch for this mod. A compatibility patch is included with this plugin''s installer.'
- &patchOutdated
type: warn
content: 'This patch is outdated and may not be compatible with the latest version of the patched mod.'
- &patchProvided
type: say
content: 'You seem to be using **{0}**, but you have not enabled a compatibility patch for this mod. A compatibility patch is provided on this plugin''s mod page.'
- &patchUnavailable
type: warn
content: 'A patch is required to make this mod fully compatible with {0}. None is currently available for download.'
- &patchUpdateAvailable
type: say
content: 'Update Patch available: {0}'
- &renameFile
type: say
content: 'Rename this file to {0}.'
- &renameXtoY
type: warn
content: 'You need to rename {0} to {1} or this mod won''t work.'
- &requiresResources
type: warn
content: 'Requires resources (e.g. meshes, textures; not plugins) from {0}.'
- &requiresX
type: warn
content: 'Requires: {0}'
- &runAnimFramework
type: say
content: 'It appears you have **{0}** installed. Remember to run **{1}** every time you have installed or uninstalled {2}, or a {2}-based mod.'
- &runxLODGen
type: say
content: 'If you add, remove, or update plugins that alter WRLD/CELL records, remember to update this module with **xLODGen**.'
- &useBashTweakInstead
type: say
content: 'A Bashed Patch tweak can be used instead of this plugin. {0}'
subs: [ '' ]
condition: 'file("Bashed Patch.*\.esp")'
- &useINITweakInstead
type: say
content: 'An INI tweak can be used instead of this plugin. {0}'
subs: [ '' ]
- &useInstead
type: warn
content: 'Use {0} instead.'
- &useOnlyOneX
type: error
content: 'Use only one {0}.'
- &useVersion
type: error
content: 'Use {0} version.'
- &useVersionNon
type: error
content: 'Use non-{0} version.'
- &versionOldX
type: say
content: 'It appears you do not have the latest version of {0}. Some mods may require functionality added in the latest version of {0} to work.'
- &versionPrecedence
type: error
content: 'Delete {0} from {1}. {2}''s version must take precedence.'
- &versionUpToDateX
type: say
content: 'Your {0} is up-to-date.'
- &versionXIncY
type: error
content: 'Your installed version of {0} is not compatible with your version of {1}.'
- &versionXofYorGreaterRequired
type: error
content: 'Requires version **{0}** or greater of **{1}**.'
- &wildEdits
type: warn
content: 'This plugin contains [wild edits](https://tes5edit.github.io/docs/7-mod-cleaning-and-error-checking.html#WildEdits) and may require additional manual cleaning to not interfere with other mods. {0}'
subs: [ '' ]
# Cleaning Data Anchors
- &quickClean
util: '[FO3Edit](https://www.nexusmods.com/fallout3/mods/637)'
detail: 'A guide to cleaning plugins using xEdit can be found [here](https://tes5edit.github.io/docs/7-mod-cleaning-and-error-checking.html#ThreeEasyStepstocleanMods).'
- &reqManualFix
util: '[FO3Edit](https://www.nexusmods.com/fallout3/mods/637)'
detail: 'It is strongly recommended not to use mods that contain **deleted navmeshes** as they''re known to cause crashes. **Deleted navmeshes** must be corrected manually (a complex process that should be done by the mod author). More information on **deleted navmeshes** is provided [here](https://www.creationkit.com/index.php?title=Fixing_Navmesh_Deletion_Tutorial).'
# Global Anchors
- &incompatible
type: error
content: '{0} is incompatible with {1}, but both are present.'
- &latestLOOTThread
type: say
content: '[Latest LOOT thread]({0}).'
subs: [ 'https://loot.github.io/latest-thread/' ]
- &moveNVAC
type: warn
content: 'NVAC is installed under **NVSE/Plugins** but needs to be moved to **{0}/Plugins** for {0} to pick it up for {1}.'
subs:
- 'FOSE'
- 'Fallout 3'
condition: 'file("NVSE/Plugins/nvac.dll")'
- &scriptExtenderMissing
type: error
content: 'You have installed an {0} plugin but {0} was not found! See {0} download page: {1}.'
subs:
- 'FOSE'
- '[FOSE](https://fose.silverlock.org)'
condition: 'file("FOSE/Plugins/([^\.]+\.dll)") and not file("../fose_1_\d(b|ng)?\.dll")'
- &supersede
type: warn
content: 'You seem to be using **{0}**, but it has been superseded. It is recommended that you use **{1}** instead.'
common:
# Sub-Anchors
# &alreadyInX
- &alreadyInFOOK2
<<: *alreadyInX
subs: [ 'FOOK 2 (Fallout Overhaul Kit)' ]
condition: 'file("FOOK2 - Main.esm")'
- &alreadyInFWE
<<: *alreadyInX
subs: [ 'FO3 Wanderers Edition' ]
condition: 'file("FO3 Wanderers Edition - Main File.esm")'
# &alreadyInOrFixedByX
- &alreadyInOrFixedByUFO3P
<<: *alreadyInOrFixedByX
subs: [ 'Unofficial Fallout 3 Patch' ]
condition: 'active("Unofficial Fallout 3 Patch.esm")'
- &alreadyInOrFixedByUFO3Pv1_7
<<: *alreadyInOrFixedByUFO3P
condition: 'active("Unofficial Fallout 3 Patch.esm") and version("Unofficial Fallout 3 Patch.esm", "1.7", >=)'
# &languageX
- &languageEnglish
<<: *languageX
subs: [ 'English (**en**)' ]
- &languageBG
<<: *languageX
subs: [ 'Bulgarian (**bg**)' ]
- &languageCS
<<: *languageX
subs: [ 'Czech (**cs**)' ]
- &languageDA
<<: *languageX
subs: [ 'Danish (**da**)' ]
- &languageDE
<<: *languageX
subs: [ 'German (**de**)' ]
- &languageES
<<: *languageX
subs: [ 'Spanish (**es**)' ]
- &languageFI
<<: *languageX
subs: [ 'Finnish (**fi**)' ]
- &languageFR
<<: *languageX
subs: [ 'French (**fr**)' ]
- &languageIT
<<: *languageX
subs: [ 'Italian (**it**)' ]
- &languageJA
<<: *languageX
subs: [ 'Japanese (**ja**)' ]
- &languageKO
<<: *languageX
subs: [ 'Korean (**ko**)' ]
- &languagePO
<<: *languageX
subs: [ 'Polish (**pl**)' ]
- &languagePT_BR
<<: *languageX
subs: [ 'Brazilian Portuguese (**pt_BR**)' ]
- &languagePT_PT
<<: *languageX
subs: [ 'Portuguese (**pt_PT**)' ]
- &languageRU
<<: *languageX
subs: [ 'Russian (**ru**)' ]
- &languageSV
<<: *languageX
subs: [ 'Swedish (**sv**)' ]
- &languageUK_UA
<<: *languageX
subs: [ 'Ukrainian (**uk_UA**)' ]
- &languageZH_CN
<<: *languageX
subs: [ 'Simplified Chinese (**zh_CN**)' ]
# &requiresX
- &requiresFOSE
<<: *requiresX
type: error
subs: [ '[Fallout Script Extender](https://fose.silverlock.org/)' ]
condition: 'not file("../fose_1_\d(b|ng)?\.dll")'
# &useVersion
- &useVersionAnchorage
<<: *useVersion
subs: [ 'Anchorage' ]
condition: 'active("Anchorage.esm")'
- &useVersionThePitt
<<: *useVersion
subs: [ 'The Pitt' ]
condition: 'active("ThePitt.esm")'
- &useVersionBrokenSteel
<<: *useVersion
subs: [ 'Broken Steel' ]
condition: 'active("BrokenSteel.esm")'
- &useVersionPointLookout
<<: *useVersion
subs: [ 'Point Lookout' ]
condition: 'active("PointLookout.esm")'
- &useVersionZeta
<<: *useVersion
subs: [ 'Zeta' ]
condition: 'active("Zeta.esm")'
- &useVersionFWE
<<: *useVersion
subs: [ 'FWE - FO3 Wanderers Edition' ]
condition: 'active("FO3 Wanderers Edition - Main File.esm")'
# &useVersionNon
- &useVersionNonAnchorage
<<: *useVersionNon
subs: [ 'Anchorage' ]
condition: 'not active("Anchorage.esm")'
- &useVersionNonThePitt
<<: *useVersionNon
subs: [ 'The Pitt' ]
condition: 'not active("ThePitt.esm")'
- &useVersionNonBrokenSteel
<<: *useVersionNon
subs: [ 'Broken Steel' ]
condition: 'not active("BrokenSteel.esm")'
- &useVersionNonPointLookout
<<: *useVersionNon
subs: [ 'Point Lookout' ]
condition: 'not active("PointLookout.esm")'
- &useVersionNonZeta
<<: *useVersionNon
subs: [ 'Zeta' ]
condition: 'not active("Zeta.esm")'
bash_tags:
- 'Actors.ACBS'
- 'Actors.AIData'
- 'Actors.AIPackages'
- 'Actors.AIPackagesForceAdd'
- 'Actors.Anims'
- 'Actors.CombatStyle'
- 'Actors.DeathItem'
- 'Actors.Factions'
- 'Actors.RecordFlags'
- 'Actors.Skeleton'
- 'Actors.Spells'
- 'Actors.SpellsForceAdd'
- 'Actors.Stats'
- 'Actors.Voice'
- 'C.Acoustic'
- 'C.Climate'
- 'C.Encounter'
- 'C.ForceHideLand'
- 'C.ImageSpace'
- 'C.Light'
- 'C.MiscFlags'
- 'C.Music'
- 'C.Name'
- 'C.Owner'
- 'C.RecordFlags'
- 'C.Regions'
- 'C.Water'
- 'Creatures.Blood'
- 'Creatures.Type'
- 'Deactivate'
- 'Deflst'
- 'Delev'
- 'Destructible'
- 'EffectStats'
- 'Enchantments'
- 'EnchantmentStats'
- 'Filter'
- 'Graphics'
- 'Invent.Add'
- 'Invent.Change'
- 'Invent.Remove'
- 'MustBeActiveIfImported'
- 'Names'
- 'NoMerge'
- 'NPC.Class'
- 'NPC.Eyes'
- 'NPC.FaceGen'
- 'NPC.Hair'
- 'NPC.Race'
- 'NpcFacesForceFullImport'
- 'ObjectBounds'
- 'R.Body-F'
- 'R.Body-M'
- 'R.Body-Size-F'
- 'R.Body-Size-M'
- 'R.Description'
- 'R.Ears'
- 'R.Eyes'
- 'R.Hair'
- 'R.Head'
- 'R.Mouth'
- 'R.Relations.Add'
- 'R.Relations.Change'
- 'R.Relations.Remove'
- 'R.Skills'
- 'R.Teeth'
- 'R.Voice-F'
- 'R.Voice-M'
- 'Relations.Add'
- 'Relations.Change'
- 'Relations.Remove'
- 'Relev'
- 'Scripts'
- 'Sound'
- 'SpellStats'
- 'Stats'
- 'Text'
globals:
# Latest LOOT Thread
- *latestLOOTThread
# FOSE
# Missing
- <<: *scriptExtenderMissing
subs:
- 'FOSE'
- '[FOSE](https://fose.silverlock.org)'
condition: 'file("FOSE/Plugins/([^\.]+\.dll)") and not file("../fose_1_\d(b|ng)?\.dll")'
# NVAC
- <<: *moveNVAC
subs:
- 'FOSE'
- 'Fallout 3'
condition: 'file("NVSE/Plugins/nvac.dll")'
# FOSE Plugins - Latest
- <<: *versionOldX
subs: [ '**([NVAC - New Vegas Anti Crash](https://www.nexusmods.com/newvegas/mods/53635))**' ]
condition: 'file("FOSE/Plugins/nvac.dll") and version("FOSE/Plugins/nvac.dll", "7.5.0.0", <)'
- <<: *versionUpToDateX
subs: [ '**([NVAC - New Vegas Anti Crash](https://www.nexusmods.com/newvegas/mods/53635))**' ]
condition: 'file("FOSE/Plugins/nvac.dll") and version("FOSE/Plugins/nvac.dll", "7.5.0.0", >=)'
# FOSE Latest
- <<: *versionOldX
subs: [ '**Script Extender ([FOSE](https://fose.silverlock.org))**' ]
condition: '(file("../fose_1_7.dll") and version("../fose_1_7.dll", "0.1.2.2", <)) or (file("../fose_1_7ng.dll") and version("../fose_1_7ng.dll", "0.1.2.2", <))'
- <<: *versionUpToDateX
subs: [ '**Script Extender ([FOSE](https://fose.silverlock.org))**' ]
condition: '(version("../fose_1_7.dll", "0.1.2.2", >=) and version("../fose_1_7ng.dll", "0.1.2.2", >=)) or (version("../fose_1_7.dll", "0.1.2.2", >=) and not file("../fose_1_7ng.dll")) or (version("../fose_1_7ng.dll", "0.1.2.2", >=) and not file("../fose_1_7.dll"))'
# Version Compatibility
# FOSE - Game Runtime
- <<: *versionXIncY
subs:
- '**[Fallout Script Extender](https://fose.silverlock.org/)**'
- '**Fallout 3**'
condition: 'readable("../Fallout3.exe") and product_version("../Fallout3.exe", "1.7.0.3", >=) and file("../fose_1_[01456]b?\.dll") and not file("../fose_1_7(ng)?\.dll")'
- <<: *versionXIncY
subs:
- '**[Fallout Script Extender](https://fose.silverlock.org/)**'
- '**Fallout 3**'
condition: 'readable("../Fallout3.exe") and product_version("../Fallout3.exe", "1.7.0.4", ==) and ((file("../fose_1_7.dll") and version("../fose_1_7.dll", "0.1.3.2", <=)) or (file("../fose_1_7ng.dll") and version("../fose_1_7ng.dll", "0.1.3.2", <=)))'
groups:
- name: &veryEarlyGroup Very Early Loaders
description: 'A group for modules that should load early before the DLC and Unofficial patches.'
- name: &dlcGroup DLC
after: [ *veryEarlyGroup ]
- name: &fixesGroup Fixes & Resources
description: 'A group for modules that fix issues and bugs or add resources for other mods.'
after: [ *dlcGroup ]
- name: &earlyLoadersGroup Early Loaders
description: 'A group for modules that should load early before most other mods.'
after: [ *fixesGroup ]
- name: default
after: [ *earlyLoadersGroup ]
- name: &overridesGroup Overrides
after: [ default ]
- name: &dynamicPatchesGroup Dynamic Patches
after: [ *overridesGroup ]
plugins:
###### Official Game Files ######
- name: 'Anchorage.esm'
group: *dlcGroup
dirty:
- <<: *quickClean
crc: 0xA4BA9D10
util: '[FO3Edit v4.0.3](https://www.nexusmods.com/fallout3/mods/637)'
itm: 55
udr: 10
- name: 'ThePitt.esm'
group: *dlcGroup
after: [ 'Anchorage.esm' ]
dirty:
- <<: *quickClean
crc: 0xB38B3E44
util: '[FO3Edit v4.0.3](https://www.nexusmods.com/fallout3/mods/637)'
itm: 53
nav: 5
- name: 'BrokenSteel.esm'
group: *dlcGroup
after:
- 'Anchorage.esm'
- 'ThePitt.esm'
tag:
- C.Regions
- C.Water
- Delev
- Relev
dirty:
- <<: *quickClean
crc: 0x30011B79
util: '[FO3Edit v4.0.3](https://www.nexusmods.com/fallout3/mods/637)'
itm: 278
udr: 34
nav: 12
- name: 'PointLookout.esm'
group: *dlcGroup
after:
- 'Anchorage.esm'
- 'ThePitt.esm'
- 'BrokenSteel.esm'
dirty:
- <<: *quickClean
crc: 0xD92704D8
util: '[FO3Edit v4.0.3](https://www.nexusmods.com/fallout3/mods/637)'
itm: 21
- name: 'Zeta.esm'
group: *dlcGroup
after:
- 'Anchorage.esm'
- 'ThePitt.esm'
- 'BrokenSteel.esm'
- 'PointLookout.esm'
dirty:
- <<: *quickClean
crc: 0x1D017E23
util: '[FO3Edit v4.0.3](https://www.nexusmods.com/fallout3/mods/637)'
itm: 15
###### Base Game Patches ######
- name: 'Unofficial Fallout 3 Patch.esm'
url:
- link: 'https://www.nexusmods.com/fallout3/mods/19122/'
name: 'Updated Unofficial Fallout 3 Patch'
- link: 'https://www.nexusmods.com/fallout3/mods/3808/'
name: 'Unofficial Fallout 3 Patch'
group: *fixesGroup
after: [ 'ObjectPlacementFix.esm' ]
req:
- name: 'FOSE/Plugins/CommandExtender.dll'
display: '[Command Extender](https://www.nexusmods.com/fallout3/mods/23682/)'
condition: 'version("Unofficial Fallout 3 Patch.esm", "3.0", >=)'
msg:
- <<: *alsoUseX
subs: [ '[lStewieAl''s Tweaks](https://www.nexusmods.com/fallout3/mods/23561/)' ]
condition: 'not file("FOSE/Plugins/fose_stewie_tweaks.dll") and (version("../fose_1_7.dll", "0.1.3.2", >=) or version("../fose_1_7ng.dll", "0.1.3.2", >=))'
- <<: *alsoUseX
subs: [ '[NVAC - New Vegas Anti Crash](https://www.nexusmods.com/newvegas/mods/53635/)' ]
condition: 'not file("FOSE/Plugins/nvac.dll") and (version("../fose_1_7.dll", "0.1.3.2", >=) or version("../fose_1_7ng.dll", "0.1.3.2", >=))'
- <<: *obsolete
subs: [ '[Updated Unofficial Fallout 3 Patch](https://www.nexusmods.com/fallout3/mods/19122/)' ]
condition: 'version("Unofficial Fallout 3 Patch.esm", "3.3.6", <) and active("Anchorage.esm") and active("ThePitt.esm") and active("BrokenSteel.esm") and active("PointLookout.esm") and active("Zeta.esm")'
- *requiresFOSE
- <<: *requiresX
type: say
subs: [ 'New save game when upgrading from v3.0 or older.' ]
condition: 'version("Unofficial Fallout 3 Patch.esm", "3.0", <=)'
tag:
- Actors.ACBS
- Actors.AIData
- Actors.AIPackages
- Actors.Anims
- Actors.CombatStyle
- Actors.DeathItem
- Actors.Factions
- Actors.RecordFlags
- Actors.Skeleton
- Actors.Spells
- Actors.Stats
- Actors.Voice
- C.Acoustic
- C.Climate
- C.Encounter
- C.ImageSpace
- C.Light
- C.MiscFlags
- C.Music
- C.Name
- C.Owner
- C.RecordFlags
- C.Regions
- C.Water
- Creatures.Blood
- Creatures.Type
- Deflst
- Delev
- Destructible
- Enchantments
- Graphics
- Invent.Add
- Invent.Change
- Invent.Remove
- Names
- NPC.Class
- NPC.Eyes
- NPC.FaceGen
- NPC.Hair
- NPC.Race
- ObjectBounds
- R.Eyes
- R.Head
- R.Voice-F
- R.Voice-M
- Relations.Add
- Relations.Change
- Relations.Remove
- Relev
- Scripts
- Sound
- Stats
- Text
clean:
- crc: 0x441BC38C
util: 'FO3Edit v4.0.4c'
###### Fixes ######
- name: 'BringBackBael.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/6545/' ]
group: *fixesGroup
tag: [ Scripts ]
msg:
- <<: *alreadyInOrFixedByUFO3P
condition: 'active("Unofficial Fallout 3 Patch.esm") and version("Unofficial Fallout 3 Patch.esm", "1.5", >=) and version("Unofficial Fallout 3 Patch.esm", "3.0", <)'
- name: 'DemolitionExpertFix-Nuka.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/684/' ]
group: *fixesGroup
msg: [ *alreadyInOrFixedByUFO3P ]
- name: 'Drone Cannon Fix.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/8391/' ]
msg:
- <<: *alreadyInOrFixedByUFO3P
condition: '(active("Unofficial Fallout 3 Patch.esm") and version("Unofficial Fallout 3 Patch.esm", "1.2.0", >)) or active("Unofficial Fallout 3 Patch - Mothership Zeta.esp")'
tag: [ Graphics ]
dirty:
- <<: *quickClean
crc: 0xB292C0AD
util: '[FO3Edit v4.0.3h (Hotfix 1)](https://www.nexusmods.com/fallout3/mods/637)'
itm: 2
- name: 'FireLightFix(_rus)?\.esp'
url:
- link: 'https://www.nexusmods.com/fallout3/mods/3660/'
name: 'Fire Light Fix'
group: *fixesGroup
msg:
- *alreadyInOrFixedByUFO3P
- <<: *useOnlyOneX
subs: [ 'Fire Light Fix ESP - **FireLightFix.esp** OR **FireLightFix_rus.esp**' ]
condition: 'many("FireLightFix(_rus)?\.esp")'
- name: 'FireLightFix.esp'
dirty:
- <<: *quickClean
crc: 0x482C04B2
util: '[FO3Edit v4.0.3](https://www.nexusmods.com/fallout3/mods/637)'
itm: 2
- name: 'FireLightFix_rus.esp'
dirty:
- <<: *quickClean
crc: 0xED54E353
util: '[FO3Edit v4.0.3](https://www.nexusmods.com/fallout3/mods/637)'
itm: 2
- name: 'Fixed Suits( Anchorage)?( FWE)?\.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/19649/' ]
msg: [ *alreadyInOrFixedByUFO3Pv1_7 ]
- name: 'Fixed Suits( Anchorage)?\.esp'
inc: [ 'FO3 Wanderers Edition - Main File.esm' ]
msg: [ *useVersionFWE ]
- name: 'FO3 Error Fixes.esp'
url:
- link: 'https://www.nexusmods.com/fallout3/mods/16490/'
name: 'Error Corrections - Reduce CTD'
group: *fixesGroup
tag:
- Actors.ACBS
- Actors.RecordFlags
- Actors.Stats
- C.Regions
msg: [ *alreadyInOrFixedByUFO3P ]
- name: 'ObjectPlacementFix\.es(m|p)'
url:
- link: 'https://www.nexusmods.com/fallout3/mods/15600/'
name: 'Wasteland Landscape Patch'
group: *fixesGroup
msg:
- <<: *alreadyInOrFixedByUFO3P
condition: 'active("Unofficial Fallout 3 Patch.esm") and version("Unofficial Fallout 3 Patch.esm", "1.7", >=)'
- <<: *useOnlyOneX
subs: [ 'Wasteland Landscape Patch Main File - **ObjectPlacementFix.esm** OR **ObjectPlacementFix.esp**' ]
condition: 'many("ObjectPlacementFix\.es(m|p)")'
- name: '(CinderBlockRock|ConcreteSlab)Fix.*\.esp'
url:
- link: 'https://www.nexusmods.com/fallout3/mods/15600/'
name: 'Wasteland Landscape Patch'
group: *fixesGroup
msg:
- <<: *useOnlyOneX
subs: [ 'Wasteland Landscape Patch Optional File - **CinderBlockRockFix.esp** OR **CinderblockRockFix2.esp** OR **ConcreteSlabFix.esp** OR **ConcreteSlabFix2.esp**' ]
condition: 'many("(CinderBlockRock|ConcreteSlab)Fix.*\.esp")'
- name: 'OutcastCasdinArmorFix.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/8183/' ]
group: *fixesGroup
msg: [ *alreadyInOrFixedByUFO3P ]
clean:
- crc: 0x40276EEA
util: 'FO3Edit v4.0.3h (Hotfix 1)'
- name: 'PyromaniacFix-(Burnmaster|Both|Both\+Nuka)(-BS)?\.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/656/' ]
msg:
- *alreadyInOrFixedByUFO3P
- <<: *useOnlyOneX
subs: [ 'Pyromaniac Fix ESP - **Burnmaster** OR **Both** OR **Both+Nuka**' ]
condition: 'many("PyromaniacFix-(Burnmaster|Both|Both\+Nuka)(-BS)?\.esp")'
- name: 'PyromaniacFix-(Burnmaster|Both|Both\+Nuka).esp'
msg: [ *useVersionBrokenSteel ]
- name: 'PyromaniacFix-(Burnmaster|Both|Both\+Nuka)-BS.esp'
msg: [ *useVersionNonBrokenSteel ]
- name: 'RD_ElderLyonsRobe.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/6307/' ]
group: *fixesGroup
msg: [ *alreadyInOrFixedByUFO3P ]
tag: [ Graphics ]
clean:
- crc: 0xF8E0F749
util: 'FO3Edit v4.0.3h (Hotfix 1)'
- name: 'Stop Insulting Me Outcasts( – SCC)?\.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/16554/' ]
msg:
- <<: *useOnlyOneX
subs: [ 'Stop Insulting Me Outcasts ESP - **Stop Insulting Me Outcasts.esp** OR **Stop Insulting Me Outcasts – SCC.esp**' ]
condition: 'many("Stop Insulting Me Outcasts( – SCC)?\.esp")'
- name: 'Stop Insulting Me Outcasts.esp'
msg:
- <<: *alreadyInOrFixedByUFO3P
condition: 'active("Unofficial Fallout 3 Patch.esm") and version("Unofficial Fallout 3 Patch.esm", "1.4", >=)'
- <<: *useVersion
subs: [ 'Sharing and Caring Companions **Stop Insulting Me Outcasts – SCC.esp**' ]
condition: 'active("Sharing and Caring Companions.esm")'
- name: 'The Pitt - Fixes.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/15891/' ]
group: *fixesGroup
tag: [ Graphics ]
msg: [ *alreadyInOrFixedByUFO3Pv1_7 ]
###### Modding Tools - Generated Files ######
- name: 'Bashed Patch.*\.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/22934/' ]
group: *dynamicPatchesGroup
after: [ 'FO3Merged.esp' ]
- name: 'FO3Merged.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/637/' ]
group: *dynamicPatchesGroup
tag: [ NoMerge ]
###### Resources ######
- name: '7_HolsterForHandGunsV1_1.esp'
url:
- link: 'https://www.nexusmods.com/fallout3/mods/8593/'
name: 'Holster Animations and Models'
tag: [ Invent.Add ]
clean:
- crc: 0xB362BA90
util: 'FO3Edit v4.0.3h (Hotfix 1)'
- name: 'CALIBR(xMerchant)?\.es[mp]'
url:
- link: 'https://www.nexusmods.com/fallout3/mods/3447/'
name: 'Community Ammunition Library - CALIBR'
- name: 'CALIBR.esm'
group: *fixesGroup
after: [ 'CRAFT.esm' ]
clean:
- crc: 0x67CE3320
util: 'FO3Edit v4.0.3'
- name: 'CALIBRxMerchant.esp'
group: *fixesGroup
dirty:
- <<: *quickClean
crc: 0xFC210D3A
util: '[FO3Edit v4.0.4](https://www.nexusmods.com/fallout3/mods/637)'
itm: 4
- name: 'xCALIBR.esm'
url: [ 'https://www.nexusmods.com/fallout3/mods/11684/' ]
group: *fixesGroup
tag:
- Graphics
- Names
- Stats
clean:
- crc: 0x01D2F0D5
util: 'FO3Edit v4.0.3'
- name: 'xCALIBR(ammo_override|ammo_FWE|_20CW_)\.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/11684/' ]
tag:
- Graphics
- Names
- name: 'xCALIBRammo_override.esp'
dirty:
- <<: *quickClean
crc: 0xC8E1AA9C
util: '[FO3Edit v4.0.3](https://www.nexusmods.com/fallout3/mods/637)'
itm: 133
- name: 'xCALIBRammo_FWE.esp'
after: [ 'FO3 Wanderers Edition - Main File.esp' ]
clean:
- crc: 0x689B9A4B
util: 'FO3Edit v4.0.3'
- name: 'xCALIBR_20CW_v5.12.esp'
clean:
- crc: 0xA0EC8FA7
util: 'FO3Edit v4.0.3'
- name: 'xCALIBR_(override|override_unsorted|override_FWE5|2CW_CP|2CW_CP_Sorted)\.esp'
msg: [ *obsolete ]
tag:
- Graphics
- Names
- name: 'CRAFT.esm'
url:
- link: 'https://www.nexusmods.com/fallout3/mods/4447/'
name: 'CRAFT - Community Resource to Allow Fanmade Tinkering'
group: *fixesGroup
clean:
- crc: 0xAE67CA57
util: 'FO3Edit v4.0.3'
- name: 'CRAFT - Activation Perk.esp'
group: *fixesGroup
- name: 'CRAFT - Workbench Replacement.esp'
group: *fixesGroup
msg: [ *obsolete ]
- name: 'Stealthboy Recon Armor - CRAFT.esp'
group: *fixesGroup
- name: 'Destructable Building Materials 3000 Beta v1\.5( \(PITT REQUIRED\))?\.esp'
url:
- link: 'https://www.nexusmods.com/fallout3/mods/12978/'
name: 'Skykappa 3000'
msg:
- <<: *useOnlyOneX
subs: [ 'Destructible Building Materials 3000 Beta ESP' ]
condition: 'many("Destructable Building Materials 3000 Beta v1\.5( \(PITT REQUIRED\))?\.esp")'
###### AudioVisual - Interface ######
- name: 'BA_InventorySorter(GOTY|Vanilla|Anchorage|ThePitt|BrokenSteel|PointLookout|Zeta)\.esp'
url:
- link: 'https://www.nexusmods.com/fallout3/mods/10691/'
name: 'Bad Ass Inventory Sorter'
tag:
- Deactivate
- Names
- NoMerge
- name: 'BA_InventorySorter(Vanilla|Anchorage|ThePitt|BrokenSteel|PointLookout|Zeta)\.esp'
msg:
- <<: *alreadyInX
subs: [ 'BA_InventorySorterGOTY.esp' ]
condition: 'file("BA_InventorySorterGOTY.esp") and active("Anchorage.esm") and active("ThePitt.esm") and active("BrokenSteel.esm") and active("PointLookout.esm") and active("Zeta.esm")'
- name: 'DALCO Inventory Sorter - .*\.esp'
url:
- link: 'https://www.nexusmods.com/fallout3/mods/16943/'
name: 'DALCO Inventory Sorter'
tag:
- Deactivate
- Names
- NoMerge
- name: 'DynamicCrosshair.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/15724/' ]
msg:
- <<: *compatIssuesWithX
subs: [ 'User Interface HUD mods (e.g. Darnified UI, MTUI)' ]
- *requiresFOSE
clean:
- crc: 0xAF474D90
util: 'FO3Edit v4.0.3'
- name: 'loadingsc.esp'
url:
- link: 'https://www.nexusmods.com/fallout3/mods/14394/'
name: 'Atomic Loading Screens'
clean:
- crc: 0xBBB0C675
util: 'FO3Edit v4.0.3h (Hotfix 1)'
###### AudioVisual - Models & Textures ######
- name: 'AddWanda_v2_blk_eot.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/9402/' ]
tag:
- Graphics
- Invent.Add
clean:
- crc: 0xF5F4F135
util: 'FO3Edit v4.0.3h (Hotfix 1)'
- name: 'Chems and Meds Re-Textures Pack.esp'
url: [ 'https://www.nexusmods.com/fallout3/mods/15960/' ]
msg:
- <<: *deletePlugin
subs: [ 'Advanced Chems - Mentats (MentatsMod.esp)' ]
condition: 'active("MentatsMod.esp")'
tag: [ Graphics ]
clean:
- crc: 0x77F9F207
util: 'FO3Edit v4.0.3h (Hotfix 1)'
- name: 'dD - Enhanced Blood Main.esp'
url:
- link: 'https://www.nexusmods.com/fallout3/mods/101/'
name: 'Enhanced Blood Textures'
- link: 'https://www.nexusmods.com/fallout3/mods/16787/'
name: 'The Mergers'
clean:
- crc: 0x2E7841D0
util: 'FO3Edit v4.0.4b'
- crc: 0x8AEDF854
util: 'FO3Edit v4.0.4b'
- name: '(dD-(More Gore|Reduced|Smaller|(Full |Less |No )?Screen)|FO3 Wanderers Edition - More Gore).*\.esp'
url:
- link: 'https://www.nexusmods.com/fallout3/mods/101/'
name: 'Enhanced Blood Textures'