-
Notifications
You must be signed in to change notification settings - Fork 1
/
masterlist.yaml
6194 lines (5837 loc) · 215 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.'
- &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.'
- &requiresMCM_X
type: warn
content: 'A **Mod Configuration Menu** is required for this mod to be fully functional. An **MCM** can be added by installing {0}.'
- &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: '[FO4Edit](https://www.nexusmods.com/fallout4/mods/2737) **Quick Auto Clean**'
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: '[FO4Edit](https://www.nexusmods.com/fallout4/mods/2737) **Quick Auto Clean**'
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/' ]
- &scriptExtenderMissing
type: error
content: 'You have installed an {0} plugin but {0} was not found! See {0} download page: {1}.'
subs:
- 'F4SE VR'
- '[F4SE VR](https://f4se.silverlock.org)'
condition: 'file("F4SE/Plugins/([^\.]+\.dll)") and not file("../f4sevr_loader.exe")'
- &scriptExtenderRequiredScripts
type: warn
content: 'It appears you have installed **{0}**, but its required scripts seem to be missing. Please ensure you have correctly installed the scripts bundled with the **{1}** installation archive.'
subs:
- 'Fallout 4 Script Extender VR'
- '[F4SE VR](https://f4se.silverlock.org)'
condition: 'not file("scripts/F4SE.pex") and file("../f4sevr_loader.exe")'
- &supersede
type: warn
content: 'You seem to be using **{0}**, but it has been superseded. It is recommended that you use **{1}** instead.'
common:
# File Anchors
- &F4SE
name: '../f4sevr_loader.exe'
display: '[F4SE VR](https://f4se.silverlock.org)'
# Sub-Anchors
# &alreadyInX
- &alreadyInUFO4P
<<: *alreadyInX
subs: [ 'Unofficial Fallout 4 Patch' ]
condition: 'active("Unofficial Fallout 4 Patch.esp")'
- &alreadyInValsPicks
<<: *alreadyInX
subs: [ 'Val''s Picks' ]
condition: 'file("ValdacilsItemSorting-00-ValsPicks-(NoDLCVersion|DLCVersion)(-VanillaWeight)?\.esp")'
- &alreadyInValsPicksVanWeight
<<: *alreadyInX
subs: [ 'Val''s Picks - Vanilla Weight' ]
condition: 'file("ValdacilsItemSorting-00-ValsPicks-(NoDLCVersion|DLCVersion)-VanillaWeight\.esp")'
- &alreadyIn_WSE_BLD_Patch
<<: *alreadyInX
subs: [ 'WeaponSmith Extended 2 - Better Locational Damage Patch **BLD - Merged - WSE Edition.esp**' ]
condition: 'active("BLD - Merged - WSE Edition.esp")'
# &alreadyInOrFixedByX
- &alreadyInOrFixedByFO4
<<: *alreadyInOrFixedByX
subs: [ 'Fallout 4' ]
- &alreadyInOrFixedByFCF
<<: *alreadyInOrFixedByX
subs: [ 'FROST Cell Fixes' ]
condition: 'active("FCF_Main.esp")'
- &alreadyInOrFixedByPRPv0_59
<<: *alreadyInOrFixedByX
subs: [ 'Previsibines Repair Pack v0.59+' ]
condition: 'active("PPF.esm") and version("PPF.esm", "0.59", >=)'
# &requiresMCM_X
- &requiresMCM
<<: *requiresMCM_X
subs: [ '[Mod Configuration Menu](https://www.nexusmods.com/fallout4/mods/21497/)' ]
condition: 'not file("F4SE/Plugins/mcm.dll")'
# &useInstead
- &useInsteadFCF
<<: *useInstead
subs: [ '[FROST Cell Fixes](https://www.nexusmods.com/fallout4/mods/59652/)' ]
condition: 'active("Unofficial Fallout 4 Patch.esp") and active("RedsFrostFixes.esp") and active("aFrostMod.esp") and not active("FCF_Main.esp")'
# &useVersion
- &useVersionAutomatron
<<: *useVersion
subs: [ 'Automatron' ]
condition: 'active("DLCRobot.esm")'
- &useVersionWastelandWorkshop
<<: *useVersion
subs: [ 'Wasteland Workshop' ]
condition: 'active("DLCworkshop01.esm")'
- &useVersionFarHarbor
<<: *useVersion
subs: [ 'Far Harbor' ]
condition: 'active("DLCCoast.esm")'
- &useVersionContraptionsWorkshop
<<: *useVersion
subs: [ 'Contraptions Workshop' ]
condition: 'active("DLCworkshop02.esm")'
- &useVersionVaultTecWorkshop
<<: *useVersion
subs: [ 'Vault-Tec Workshop' ]
condition: 'active("DLCworkshop03.esm")'
- &useVersionNukaWorld
<<: *useVersion
subs: [ 'Nuka-World' ]
condition: 'active("DLCNukaWorld.esm")'
# &useVersionNon
- &useVersionNonAutomatron
<<: *useVersionNon
subs: [ 'Automatron' ]
condition: 'not active("DLCRobot.esm")'
- &useVersionNonWastelandWorkshop
<<: *useVersionNon
subs: [ 'Wasteland Workshop' ]
condition: 'not active("DLCworkshop01.esm")'
- &useVersionNonFarHarbor
<<: *useVersionNon
subs: [ 'Far Harbor' ]
condition: 'not active("DLCCoast.esm")'
- &useVersionNonContraptionsWorkshop
<<: *useVersionNon
subs: [ 'Contraptions Workshop' ]
condition: 'not active("DLCworkshop02.esm")'
- &useVersionNonVaultTecWorkshop
<<: *useVersionNon
subs: [ 'Vault-Tec Workshop' ]
condition: 'not active("DLCworkshop03.esm")'
- &useVersionNonNukaWorld
<<: *useVersionNon
subs: [ 'Nuka-World' ]
condition: 'not active("DLCNukaWorld.esm")'
# &versionXIncY
- &versionF4SEIncFO4_VR
<<: *versionXIncY
subs:
- '**[Fallout 4 Script Extender VR](https://f4se.silverlock.org)**'
- '**Fallout 4 VR**'
bash_tags:
- 'Deactivate'
- 'Delev'
- 'Filter'
- 'MustBeActiveIfImported'
- 'NoMerge'
- 'ObjectBounds'
- 'Relev'
globals:
# Latest LOOT Thread
- *latestLOOTThread
# F4SE
# Missing
- <<: *scriptExtenderMissing
subs:
- 'F4SE VR'
- '[F4SE VR](https://f4se.silverlock.org)'
condition: 'file("F4SE/Plugins/([^\.]+\.dll)") and not file("../f4sevr_loader.exe")'
# Required Scripts
- <<: *scriptExtenderRequiredScripts
subs:
- 'Fallout 4 Script Extender VR'
- '[F4SE VR](https://f4se.silverlock.org)'
condition: 'not file("scripts/F4SE.pex") and file("../f4sevr_loader.exe")'
# Fallout 4 VR - Latest Version
- <<: *versionOldX
subs: [ '**Fallout 4 VR**' ]
condition: 'version("../Fallout4VR.exe", "1.2.72.0", <) and file("../Fallout4VR.exe")'
- <<: *versionUpToDateX
subs: [ '**Fallout 4 VR**' ]
condition: 'version("../Fallout4VR.exe", "1.2.72.0", >=) and file("../Fallout4VR.exe")'
# F4SE VR - Latest Version
- <<: *versionOldX
subs: [ '**Script Extender ([F4SE VR](https://f4se.silverlock.org))**' ]
condition: 'version("../f4sevr_loader.exe", "0.0.6.20", <) and file("../Fallout4VR.exe") and file("../f4sevr_loader.exe")'
- <<: *versionUpToDateX
subs: [ '**Script Extender ([F4SE VR](https://f4se.silverlock.org))**' ]
condition: 'version("../f4sevr_loader.exe", "0.0.6.20", >=) and file("../Fallout4VR.exe") and file("../f4sevr_loader.exe")'
# F4SE VR - Runtime Compatibility
- <<: *versionF4SEIncFO4_VR
condition: 'version("../Fallout4VR.exe", "1.2.72.0", ==) and version("../f4sevr_loader.exe", "0.0.6.20", <) and file("../f4sevr_loader.exe")'
groups:
- name: &dlcGroup DLC
- name: &texturesGroup Texture Overhauls
after: [ *dlcGroup ]
- name: &fixesGroup Fixes
after: [ *texturesGroup ]
- name: &frameworksGroup Resources & Frameworks
description: 'A group for mods that provide resources and/or a framework for other mods to use.'
after: [ *fixesGroup ]
- name: &underridesGroup Underrides
after: [ *frameworksGroup ]
- name: default
after: [ *underridesGroup ]
- name: &lowPriorityGroup Low Priority Overrides
description: 'A group for modules that must load after most other mods.'
after: [ default ]
- name: &preVisCombinedGroup PreVis & PreCombined Fixes
description: 'A group for modules that fix issues with PreVis and PreCombined files.'
after: [ *lowPriorityGroup ]
- name: &interiorLightingGroup Interior Lighting
description: 'A group for modules that only modify interior lighting.'
after: [ *preVisCombinedGroup ]
- name: &fhoGroup Faction Housing Overhaul
description: 'A group for the mod Faction Housing Overhaul.'
after: [ *interiorLightingGroup ]
- name: &scrapGroup Scrap Everything
after: [ *fhoGroup ]
- name: &horizonGroup Horizon
description: 'A group for Horizon modules that need to be sorted late.'
after: [ *scrapGroup ]
- name: &frostGroup FROST Survival Simulator
description: 'A group for FROST modules that need to be sorted late.'
after: [ *horizonGroup ]
- name: &worldSettingsGroup Worldspace Settings
description: 'A group for modules that need to be loaded late to preserve worldspace settings.'
after: [ *frostGroup ]
- name: &lateChangesGroup Late Fixes & Changes
after: [ *worldSettingsGroup ]
- name: &dynamicPatchesGroup Dynamic Patches
after: [ *lateChangesGroup ]
plugins:
###### Official DLC plugins ######
- name: 'DLCRobot.esm'
group: *dlcGroup
dirty:
- <<: *quickClean
crc: 0xD69027EA
util: '[FO4Edit v4.0.3h (Hotfix 1)](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 49
udr: 38
nav: 1
- name: 'DLCworkshop01.esm'
group: *dlcGroup
after: [ 'DLCRobot.esm' ]
dirty:
- <<: *quickClean
crc: 0x47BAE27E
util: '[FO4Edit v4.0.3h (Hotfix 1)](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 6
- name: 'DLCCoast.esm'
group: *dlcGroup
after:
- 'DLCRobot.esm'
- 'DLCworkshop01.esm'
dirty:
- <<: *quickClean
crc: 0xF1F28026
util: '[FO4Edit v4.0.3h (Hotfix 1)](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 84
udr: 86
- name: 'DLCworkshop02.esm'
group: *dlcGroup
after:
- 'DLCRobot.esm'
- 'DLCworkshop01.esm'
- 'DLCCoast.esm'
dirty:
- <<: *quickClean
crc: 0x83ABC821
util: '[FO4Edit v4.0.3h (Hotfix 1)](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 2
- name: 'DLCworkshop03.esm'
group: *dlcGroup
after:
- 'DLCRobot.esm'
- 'DLCworkshop01.esm'
- 'DLCCoast.esm'
- 'DLCworkshop02.esm'
dirty:
- <<: *quickClean
crc: 0xE0089FBB
util: '[FO4Edit v4.0.3h (Hotfix 1)](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 22
udr: 10
- name: 'DLCNukaWorld.esm'
group: *dlcGroup
after:
- 'DLCRobot.esm'
- 'DLCworkshop01.esm'
- 'DLCCoast.esm'
- 'DLCworkshop02.esm'
- 'DLCworkshop03.esm'
tag: [ Relev ]
dirty:
- <<: *quickClean
crc: 0x43D25C56
util: '[FO4Edit v4.0.3h (Hotfix 1)](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 194
udr: 418
nav: 7
- name: 'DLCUltraHighResolution.esm'
group: *dlcGroup
after:
- 'DLCRobot.esm'
- 'DLCworkshop01.esm'
- 'DLCCoast.esm'
- 'DLCworkshop02.esm'
- 'DLCworkshop03.esm'
- 'DLCNukaWorld.esm'
clean:
- crc: 0x9B2A2AAC
util: 'FO4Edit v4.0.3'
###### Base Game Patches ######
- name: 'UnofficialFallout4Patch.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/4526/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'Unofficial Fallout 4 Patch.esp'
url:
- link: 'https://www.afkmods.com/index.php?/files/file/1765-unofficial-fallout-4-patch/'
name: 'Unofficial Fallout 4 Patch (AFK Mods)'
- link: 'https://www.nexusmods.com/fallout4/mods/4598/'
name: 'Unofficial Fallout 4 Patch (Nexus Mods)'
group: *fixesGroup
tag: [ Relev ]
clean:
- crc: 0xFA6E14DD
util: 'FO4Edit v4.0.4b'
###### Modding Tools - Generated Files ######
- name: 'Bashed Patch.*\.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/20032/' ]
group: *dynamicPatchesGroup
after: [ 'FO4Merged.esp' ]
msg:
- <<: *onlyUseSmashOrBash
condition: 'file("Smashed Patch.esp")'
subs: [ 'Smashed Patch.esp' ]
- name: 'FO4Merged.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/2737/' ]
group: *dynamicPatchesGroup
- name: 'M8r Complex Sorter.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/48826/' ]
group: *dynamicPatchesGroup
- name: 'Smashed Patch.esp'
url: [ 'https://github.com/matortheeternal/smash/releases/' ]
group: *dynamicPatchesGroup
after: [ 'FO4Merged.esp' ]
msg:
- <<: *onlyUseSmashOrBash
condition: 'file("Bashed Patch.*\.esp")'
subs: [ 'Bashed Patch' ]
###### Resources & Frameworks ######
- name: '(ArmorKeywords|AWKCR - ).*\.es(m|p)'
url:
- link: 'https://www.nexusmods.com/fallout4/mods/6091/'
name: 'Armor and Weapon Keywords Community Resource (AWKCR)'
- name: 'ArmorKeywords.esm'
group: *frameworksGroup
msg:
- <<: *obsolete
type: error
subs: [ '[Armor and Weapon Keywords Community Resource (AWKCR)](https://www.nexusmods.com/fallout4/mods/6091/)' ]
condition: '(version("ArmorKeywords.esm", "8.6.0", <) or version("ArmorKeywords.esm", "8.51", ==)) and file("DLCCoast.esm") and file("DLCNukaWorld.esm") and file("DLCRobot.esm") and file("DLCworkshop02.esm") and file("DLCworkshop03.esm")'
tag:
- Delev
- Relev
dirty:
- <<: *quickClean
crc: 0xCE32A0AE
util: '[FO4Edit v4.0.3h (Hotfix 1)](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 108
- name: 'AWKCR - (Automatron|Contraptions|Far Harbor|Nuka World|Vault-Tec)\.esp'
group: *frameworksGroup
- name: 'BakaFramework.esm'
url: [ 'https://www.nexusmods.com/fallout4/mods/43627/' ]
group: *frameworksGroup
msg:
- <<: *missingRequirementXforPlugin
subs: [ '[Address Library for F4SE Plugins](https://www.nexusmods.com/fallout4/mods/47327/)' ]
condition: 'not file("F4SE/Plugins/version-1-2-72-0.bin") and version("../Fallout4VR.exe", "1.2.72.0", ==)'
clean:
- crc: 0xE0F570D6
util: 'FO4Edit v4.0.3h (Hotfix 1)'
- name: 'HUDFramework.esm'
url: [ 'https://www.nexusmods.com/fallout4/mods/20309/' ]
group: *frameworksGroup
clean:
- crc: 0x67DBDE61
util: 'FO4Edit v4.0.3h (Hotfix 1)'
- name: 'WorkshopFramework(_ScriptOverride)?\.es[mp]'
url:
- link: 'https://www.nexusmods.com/fallout4/mods/35004/'
name: 'Workshop Framework (Nexus Mods)'
- link: 'https://bethesda.net/en/mods/fallout4/mod-detail/4081586/'
name: 'Workshop Framework (Bethesda.net Mods)'
- name: 'WorkshopFramework.esm'
group: *frameworksGroup
after: [ 'Unofficial Fallout 4 Patch.esp' ]
inc:
- name: 'Moddable Plasma Caster.esp'
detail: 'See Sim Settlements 2''s [compatibility notes](https://wiki.simsettlements2.com/getting-started/known-issues#the-p-113-a-highly-moddable-heavy-plasma-caster) on Workshop Framework'
- name: 'NeutralVertibirdsEN.esp'
detail: 'See Sim Settlements 2''s [compatibility notes](https://wiki.simsettlements2.com/getting-started/known-issues#neutral-vertibirds) on Workshop Framework'
- name: 'NeutralVertibirdsDE.esp'
detail: 'See Sim Settlements 2''s [compatibility notes](https://wiki.simsettlements2.com/getting-started/known-issues#neutral-vertibirds) on Workshop Framework'
clean:
- crc: 0x302EDF76
util: 'FO4Edit v4.0.4b'
- name: 'WorkshopFramework_ScriptOverride.esp'
group: *lateChangesGroup
- name: 'XDI.esm'
url:
- link: 'https://www.nexusmods.com/fallout4/mods/27216/'
name: 'Extended Dialogue Interface'
group: *frameworksGroup
msg:
- <<: *essentialFiles
subs: [ '**Interface/DialogueMenu.swf**' ]
# CRCs of XDI compatible "Interface/DialogueMenu.swf".
# XDI (v1.3.0+ 0xA0515C5F), XDI No Speech Bubble v1 (0xCDF0E1B6), Vault Girl Mod XDI Fix v1 (0x2B7DD8DF)
# Vault Girl Mod XDI Fix v1 & Vault Girl Interface v1.0.3 XDI Patches - (0x88DF4ABC, 0xA3BEB14D, 0xC2622A00)
condition: 'file("Interface/DialogueMenu.swf") and not checksum("Interface/DialogueMenu.swf", A0515C5F) and not checksum("Interface/DialogueMenu.swf", CDF0E1B6) and not checksum("Interface/DialogueMenu.swf", 2B7DD8DF) and not checksum("Interface/DialogueMenu.swf", 88DF4ABC) and not checksum("Interface/DialogueMenu.swf", A3BEB14D) and not checksum("Interface/DialogueMenu.swf", C2622A00)'
clean:
- crc: 0x55530D14
util: 'FO4Edit v4.0.4'
###### Fixes ######
- name: 'BoS Pilot Outfit Fix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/3098/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'Brawl Bug Fix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/16899/' ]
group: *fixesGroup
msg:
- <<: *alreadyInUFO4P
condition: 'active("Unofficial Fallout 4 Patch.esp") and version("Unofficial Fallout 4 Patch.esp", "2.0.5", >=)'
clean:
- crc: 0x193547FD
util: 'FO4Edit v3.2.65'
- name: 'bugfix_maglocks_terminal_delay.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/26353/' ]
group: *fixesGroup
msg:
- <<: *alreadyInUFO4P
condition: 'active("Unofficial Fallout 4 Patch.esp") and version("Unofficial Fallout 4 Patch.esp", "2.0.2", >=)'
- name: 'Combat Armor Weight Fix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/11541/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'CompanionBugfixExperimental.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/2679/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'Croup Manor NAVmesh Fix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/12561/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'DependencyQuestFix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/10892/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'fix_Perk_CombatMedic.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/10651/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'FixTeslaScience.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/10319/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'GlitchsFixes1.esl'
url:
- link: 'https://www.nexusmods.com/fallout4/mods/42112/'
name: 'Glitch''s Fixes'
msg:
- *alreadyInOrFixedByFCF
- *alreadyInOrFixedByPRPv0_59
- name: 'Glow Front Sight Ring Fix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/5205/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'hangmansalleypatch.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/12958/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'Idiot Savant Math Fix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/13558/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'ItemCapitalizationFixes.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/10416/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'itswear.esl'
url: [ 'https://www.nexusmods.com/fallout4/mods/33497/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
clean:
- crc: 0xC6B5B9B9
util: FO4Edit v3.2.3h
- name: 'InvisibleBridgeFix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/12491/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'KillshotFix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/1282/' ]
group: *fixesGroup
- name: 'LiveNLoveMagazinePerkPatch.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/11083/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'MakanarBigLeaguesFix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/6185/' ]
group: *fixesGroup
- name: 'MakanarPerkBigLeaguesFix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/5957/' ]
group: *fixesGroup
- name: 'Merchants stick with store - Unique Settlers.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/5343/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'ModdableGoodfeels.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/11500/' ]
dirty:
- <<: *quickClean
crc: 0x24BDA937
util: '[FO4Edit v4.0.4](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 3
- name: 'Mole Rat Disease Fix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/8908/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'MTM-CliffsEdgeHotelWallFix\.es[lp]'
url:
- link: 'https://www.nexusmods.com/fallout4/mods/40230/'
name: 'Far Harbor - Cliffs Edge Hotel Wall Rest Ring Lower Fixed'
msg:
- *alreadyInOrFixedByFCF
- *alreadyInOrFixedByPRPv0_59
- name: 'Perk Magazine Material Fix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/6906/' ]
group: *fixesGroup
msg:
- <<: *alreadyInUFO4P
condition: 'active("Unofficial Fallout 4 Patch.esp") and version("Unofficial Fallout 4 Patch.esp", "1.0.5", >=)'
- name: 'Pipe_Revolver_Tuned_Receiver.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/8570/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'RailroadGloryBugFix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/6389/' ]
group: *fixesGroup
- name: 'Recruitable NPC Dialogue Fixes.esp'
url:
- link: 'https://www.nexusmods.com/fallout4/mods/10960/'
name: 'Recruitable NPC Dialogue Fixes and Tweaks'
group: *fixesGroup
clean:
- crc: 0xD151F754
util: 'FO4Edit v4.0.4c'
- name: 'Remove Rads in Survival Fix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/15392/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'ScroungerFix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/3624/' ]
group: *fixesGroup
- name: 'Search&DestroyFixed.esp'
url:
- link: 'https://www.nexusmods.com/fallout4/mods/33127/'
name: 'Search and Destroy - Fixed'
group: *fixesGroup
dirty:
- <<: *quickClean
crc: 0xFFABD02C
util: '[FO4Edit v4.0.4](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 3
- name: 'SoldierToyFix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/10229/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'SynthArmorFix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/5054/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'Talk Yourself Sober Fix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/10173/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
- name: 'Targeting HUD Berry Mentats Fix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/8910/' ]
group: *fixesGroup
- name: 'Vault 111 Floor Guide Fix.esp'
url:
- link: 'https://www.nexusmods.com/fallout4/mods/28167/'
name: 'Vault 111 Floor Guide Fix'
msg: [ *alreadyInOrFixedByPRPv0_59 ]
- name: 'WeaveFix.esp'
url: [ 'https://www.nexusmods.com/fallout4/mods/5847/' ]
group: *fixesGroup
msg: [ *alreadyInUFO4P ]
###### Fixes - Stability & Performance ######
- name: '(BostonFPSFix(AIO|-Vanilla|Automatron|FarHarbor|-NukaWorld|VD|AIO_VD)|PaladinBaileyRedRocket)\.esp'
url:
- link: 'https://www.nexusmods.com/fallout4/mods/26286/'
name: 'Boston FPS Fix'
group: *preVisCombinedGroup
inc:
- 'FROST.esp'
- 'PRP.esp'
msg:
- *alreadyInOrFixedByFCF
- *useInsteadFCF
- name: 'BostonFPSFixAIO.esp'
url:
- link: 'https://www.nexusmods.com/fallout4/mods/59021/'
name: 'Boston FPS Fix - PRP Edition'
msg:
- <<: *patchUpdateAvailable
subs: [ '[Boston FPS Fix - PRP Edition](https://www.nexusmods.com/fallout4/mods/59021/)' ]
condition: 'version("BostonFPSFixAIO.esp", "0.33", <)'
- <<: *requiresResources
type: error
subs: [ '[Boston FPS Fix](https://www.nexusmods.com/fallout4/mods/26286/)' ]
condition: 'not file("BostonFPSFixAIO - Main.BA2")'
clean:
- crc: 0xCFB11F37
util: 'FO4Edit v4.0.3h (Hotfix 1)'
- crc: 0x139CED38
util: 'FO4Edit v4.0.4b'
- name: 'BostonFPSFix(Automatron|FarHarbor|-NukaWorld|-Vanilla|VD|AIO_VD)\.esp'
msg:
- <<: *alreadyInX
subs: [ 'BostonFPSFix AIO' ]
condition: 'file("BostonFPSFixAIO.esp")'
# Group load after rules - To avoid sorting errors. #
- name: '(BostonFPSFix(Automatron|FarHarbor|-NukaWorld|-Vanilla)|PaladinBaileyRedRocket)\.esp'
after:
- 'BostonFPSFixAIO_VD.esp'
- 'BostonFPSFixVD.esp'
- name: '(BostonFPSFix(Automatron|FarHarbor|-NukaWorld)|PaladinBaileyRedRocket)\.esp'
after: [ 'BostonFPSFix-Vanilla.esp' ]
- name: '(BostonFPSFix(FarHarbor|-NukaWorld)|PaladinBaileyRedRocket)\.esp'
after: [ 'BostonFPSFixAutomatron.esp' ]
- name: '(BostonFPSFix-NukaWorld|PaladinBaileyRedRocket)\.esp'
after: [ 'BostonFPSFixFarHarbor.esp' ]
# Boston FPS Fix - Standalone Modules & Optional Files #
- name: 'BostonFPSFix-Vanilla.esp'
dirty:
- <<: *quickClean
crc: 0x0DA102BE
util: '[FO4Edit v4.0.3h (Hotfix 1)](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 1
udr: 6
- name: 'BostonFPSFixAutomatron.esp'
dirty:
- <<: *quickClean
crc: 0xD991C9F2
util: '[FO4Edit v4.0.3h (Hotfix 1)](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 1
udr: 6
- name: 'BostonFPSFixFarHarbor.esp'
clean:
- crc: 0x98B6CE34
util: 'FO4Edit v4.0.3h (Hotfix 1)'
- name: 'BostonFPSFix-NukaWorld.esp'
clean:
- crc: 0x2A940662
util: 'FO4Edit v4.0.3h (Hotfix 1)'
- name: 'BostonFPSFixVD.esp'
msg:
- <<: *alreadyInX
subs: [ 'BostonFPSFixAIO_VD.esp' ]
condition: 'file("BostonFPSFixAIO_VD.esp")'
clean:
- crc: 0x970AEFEA
util: 'FO4Edit v4.0.3h (Hotfix 1)'
- name: 'BostonFPSFixAIO_VD.esp'
clean:
- crc: 0x06909110
util: 'FO4Edit v4.0.3h (Hotfix 1)'
- name: 'PaladinBaileyRedRocket.esp'
after:
- 'BostonFPSFixAIO.esp'
- 'BostonFPSFix-NukaWorld.esp'
inc: [ 'BTInteriors_Project.esp' ]
clean:
- crc: 0x0E248104
util: 'FO4Edit v4.0.3h (Hotfix 1)'
- name: '(PPF|PRP.*|Clean_and_Simple_and_Prevised_All_CAS|Eli_FactionHousingOverhaul_FarHarbor_Previs|ScrapEverythingUltimatePrevis)\.es[mp]'
url:
- link: 'https://www.nexusmods.com/fallout4/mods/46403/'
name: 'Previsibines Repair Pack'
- name: 'PPF.esm'
clean:
# English
- crc: 0x92CA557D
util: 'FO4Edit v4.0.4b'
- crc: 0x1CEB3329
util: 'FO4Edit v4.0.4b'
# Italian
- crc: 0x0CFF9FCA
util: 'FO4Edit v4.0.4b'
# Spanish
- crc: 0x4B439D9B
util: 'FO4Edit v4.0.4b'
- name: 'PRP.esp'
group: *preVisCombinedGroup
inc: [ 'FROST.esp' ]
msg:
- *alreadyInOrFixedByFCF
- <<: *patch3rdParty
subs: