-
Notifications
You must be signed in to change notification settings - Fork 46
/
masterlist.yaml
8720 lines (8244 loc) · 291 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'
- '[F4SE](https://f4se.silverlock.org)'
condition: 'file("F4SE/Plugins/([^\.]+\.dll)") and not file("../f4se_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'
- '[F4SE](https://f4se.silverlock.org)'
condition: 'not file("scripts/F4SE.pex") and file("../f4se_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: '../f4se_loader.exe'
display: '[F4SE](https://f4se.silverlock.org)'
- &RobCoPatcher
name: 'F4SE/Plugins/RobCo_Patcher.dll'
display: '[RobCo Patcher](https://www.nexusmods.com/fallout4/mods/69798/)'
# 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
- &alreadyInOrFixedByFATEFixes
<<: *alreadyInOrFixedByX
subs: [ 'FATE Core - Fixes' ]
condition: 'active("FATE Core - Fixes.esl")'
- &alreadyInOrFixedByFATETweaks
<<: *alreadyInOrFixedByX
subs: [ 'FATE Core - Tweaks' ]
condition: 'active("FATE Core - Tweaks.esp")'
- &alreadyInOrFixedByFO4
<<: *alreadyInOrFixedByX
subs: [ 'Fallout 4' ]
- &alreadyInOrFixedByFO4v1_3_47
<<: *alreadyInOrFixedByX
subs: [ 'Fallout 4 v1.3.47.0' ]
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.3.47.0", >=)'
- &alreadyInOrFixedByFO4v1_4_132
<<: *alreadyInOrFixedByX
subs: [ 'Fallout 4 v1.4.132.0' ]
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.4.132.0", >=)'
- &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", >=)'
# &disableAfterGeneratingXwithY
- &disableAfterGeneratingLODwithxLODGen
<<: *disableAfterGeneratingXwithY
subs:
- 'LOD'
- 'xLODGen'
# &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
<<: *versionXIncY
subs:
- '**[Fallout 4 Script Extender](https://f4se.silverlock.org)**'
- '**Fallout 4**'
bash_tags:
- 'Actors.ACBS'
- 'Actors.AIData'
- 'Actors.AIPackages'
- 'Actors.AIPackagesForceAdd'
- 'Actors.CombatStyle'
- 'Actors.DeathItem'
- 'Actors.Factions'
- 'Actors.RecordFlags'
- 'Actors.Spells'
- 'Actors.SpellsForceAdd'
- 'Actors.Stats'
- 'Actors.Voice'
- 'Deactivate'
- 'Delev'
- 'Destructible'
- 'EffectStats'
- 'EnchantmentStats'
- 'Enchantments'
- 'Filter'
- 'Invent.Add'
- 'Invent.Change'
- 'Invent.Remove'
- 'Keywords'
- 'MustBeActiveIfImported'
- 'NPC.AIPackageOverrides'
- 'NPC.AttackRace'
- 'NPC.Class'
- 'NPC.CrimeFaction'
- 'NPC.DefaultOutfit'
- 'NPC.Perks.Add'
- 'NPC.Perks.Change'
- 'NPC.Perks.Remove'
- 'NPC.Race'
- 'Names'
- 'ObjectBounds'
- 'Outfits.Add'
- 'Outfits.Remove'
- 'Relations.Add'
- 'Relations.Change'
- 'Relations.Remove'
- 'Relev'
globals:
# Latest LOOT Thread
- *latestLOOTThread
# F4SE
# Missing
- <<: *scriptExtenderMissing
subs:
- 'F4SE'
- '[F4SE](https://f4se.silverlock.org)'
condition: 'file("F4SE/Plugins/([^\.]+\.dll)") and not file("../f4se_loader.exe")'
# Required Scripts
- <<: *scriptExtenderRequiredScripts
subs:
- 'Fallout 4 Script Extender'
- '[F4SE](https://f4se.silverlock.org)'
condition: 'not file("scripts/F4SE.pex") and file("../f4se_loader.exe")'
# Fallout 4 - Latest Version
# Fallout 4 NG
- <<: *versionOldX
subs: [ '**Fallout 4 NG**' ]
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.163.0", >) and version("../Fallout4.exe", "1.10.984.0", <)'
- <<: *versionUpToDateX
subs: [ '**Fallout 4 NG**' ]
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.984.0", >=)'
# Fallout 4
- <<: *versionOldX
subs: [ '**Fallout 4 pre-NG**' ]
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.163.0", <)'
- <<: *versionUpToDateX
subs: [ '**Fallout 4 pre-NG**' ]
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.163.0", ==)'
# F4SE - Latest Version
- <<: *versionOldX
subs: [ '**[F4SE](https://www.nexusmods.com/fallout4/mods/42147/) NG**' ]
condition: 'version("../f4se_loader.exe", "0.0.7.2", <) and file("../f4se_loader.exe") and readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.984.0", >=)'
- <<: *versionUpToDateX
subs: [ '**F4SE NG**' ]
condition: 'version("../f4se_loader.exe", "0.0.7.2", >=) and readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.984.0", >=)'
- <<: *versionOldX
subs: [ '**[F4SE](https://f4se.silverlock.org) pre-NG**' ]
condition: 'version("../f4se_loader.exe", "0.0.6.23", <) and file("../f4se_loader.exe") and readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.163.0", <=)'
- <<: *versionUpToDateX
subs: [ '**F4SE pre-NG**' ]
condition: 'version("../f4se_loader.exe", "0.0.6.23", ==) and readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.163.0", <=)'
# F4SE - Runtime Compatibility
- <<: *versionF4SEIncFO4
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.984.0", ==) and version("../f4se_loader.exe", "0.0.7.2", <) and file("../f4se_loader.exe")'
- <<: *versionF4SEIncFO4
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.980.0", ==) and version("../f4se_loader.exe", "0.0.7.1", <) and file("../f4se_loader.exe")'
- <<: *versionF4SEIncFO4
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.163.0", ==) and version("../f4se_loader.exe", "0.0.6.20", <) and file("../f4se_loader.exe")'
- <<: *versionF4SEIncFO4
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.162.0", ==) and version("../f4se_loader.exe", "0.0.6.18", <) and file("../f4se_loader.exe")'
- <<: *versionF4SEIncFO4
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.138.0", ==) and version("../f4se_loader.exe", "0.0.6.17", <) and file("../f4se_loader.exe")'
- <<: *versionF4SEIncFO4
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.130.0", ==) and version("../f4se_loader.exe", "0.0.6.16", <) and file("../f4se_loader.exe")'
- <<: *versionF4SEIncFO4
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.120.0", ==) and version("../f4se_loader.exe", "0.0.6.14", <) and file("../f4se_loader.exe")'
- <<: *versionF4SEIncFO4
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.114.0", ==) and not version("../f4se_loader.exe", "0.0.6.13", ==)'
- <<: *versionF4SEIncFO4
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.111.0", ==) and not version("../f4se_loader.exe", "0.0.6.12", ==)'
# F4SE Plugins - Compatibility
- <<: *versionXIncY
subs:
- '**[Place Everywhere](https://www.nexusmods.com/fallout4/mods/9424)**'
- 'Fallout 4'
condition: 'file("F4SE/Plugins/place.dll") and file("../f4se_loader.exe") and readable("../Fallout4.exe") and ((version("F4SE/Plugins/place.dll", "1.18.0.1163", ==) and version("../Fallout4.exe", "1.10.163.0", !=)) or (version("F4SE/Plugins/place.dll", "1.18.0.1163", <) and version("../Fallout4.exe", "1.10.163.0", ==)))'
# Temporary warning: Performance Issues in FO4 Next Gen
- type: warn
content:
- lang: en
text: 'Fallout 4 Next Gen (version 1.10.984.0) has been found to experience performance issues such as stuttering and freezing in the presence of any mods overriding **NPC_** records. An official patch from Bethesda will need to address this issue.'
condition: 'file("../Fallout4.exe") and readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.984.0", ==)'
groups:
- name: &dlcGroup DLC
- name: &ccGroup Creation Club
after: [ *dlcGroup ]
- name: &texturesGroup Texture Overhauls
after: [ *ccGroup ]
- name: &unofficialPatchesGroup Unofficial Patches
after: [ *texturesGroup ]
- name: &fixesGroup Fixes
after: [ *unofficialPatchesGroup ]
- 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: &mediumPriorityGroup Medium Priority Overrides
after: [ *preVisCombinedGroup ]
- name: &coreGroup Core Mods
after: [ *mediumPriorityGroup ]
- name: &coreEarlyPatchesGroup Core Mods - Early Patches
after: [ *coreGroup ]
- name: &coreTweaksGroup Core Mods - Tweaks
after: [ *coreEarlyPatchesGroup ]
- name: &coreAddonsGroup Core Mods - Add-ons
after: [ *coreTweaksGroup ]
- name: &coreLatePatchesGroup Core Mods - Late Patches
after: [ *coreAddonsGroup ]
- name: &highPriorityGroup High Priority Overrides
after: [ *coreLatePatchesGroup ]
- name: &lateLoadersGroup Late Loaders
after: [ *highPriorityGroup ]
- name: &latePatchesGroup Late Patches
after: [ *lateLoadersGroup ]
- name: &folipBeforeGenGroup FOLIP - Before Generation
after: [ *latePatchesGroup ]
- name: &waterOverhaulsGroup Water Overhauls
description: 'A group for mods that change water textures and settings.'
after: [ *folipBeforeGenGroup ]
- name: &worldSettingsGroup Worldspace Settings
description: 'A group for modules that need to be loaded late to preserve worldspace settings.'
after: [ *waterOverhaulsGroup ]
- name: &conflictResPatchGroup Conflict Resolution Patches
description: 'A group for patches that resolve conflicts.'
after: [ *worldSettingsGroup ]
- name: &dynamicPatchesGroup Dynamic Patches
after: [ *conflictResPatchGroup ]
- name: &lateChangesGroup Late Fixes & Changes
after: [ *dynamicPatchesGroup ]
plugins:
###### Official DLC plugins ######
- name: 'DLCRobot.esm'
group: *dlcGroup
dirty:
# v1.10.163
- <<: *quickClean
crc: 0xD69027EA
util: '[FO4Edit v4.1.5 EXPERIMENTAL](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 50
udr: 38
nav: 1
# v1.10.980
- <<: *quickClean
crc: 0x8287509F
util: '[FO4Edit v4.1.5f](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 51
udr: 38
nav: 1
- name: 'DLCworkshop01.esm'
group: *dlcGroup
after: [ 'DLCRobot.esm' ]
dirty:
# v1.10.163
- <<: *quickClean
crc: 0x47BAE27E
util: '[FO4Edit v4.1.5 EXPERIMENTAL](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 3
# v1.10.980
- <<: *quickClean
crc: 0x7EECAA24
util: '[FO4Edit v4.1.5f](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 3
- name: 'DLCCoast.esm'
group: *dlcGroup
after:
- 'DLCRobot.esm'
- 'DLCworkshop01.esm'
dirty:
- <<: *quickClean
crc: 0xF1F28026
util: '[FO4Edit v4.1.5f](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 83
udr: 86
- name: 'DLCworkshop02.esm'
group: *dlcGroup
after:
- 'DLCRobot.esm'
- 'DLCworkshop01.esm'
- 'DLCCoast.esm'
clean:
- crc: 0x83ABC821
util: 'FO4Edit v4.1.5f'
- name: 'DLCworkshop03.esm'
group: *dlcGroup
after:
- 'DLCRobot.esm'
- 'DLCworkshop01.esm'
- 'DLCCoast.esm'
- 'DLCworkshop02.esm'
dirty:
- <<: *quickClean
crc: 0xE0089FBB
util: '[FO4Edit v4.1.5f](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 20
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.1.5f](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 193
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.1.5f'
###### Creation Club ######
- name: 'cc[A-Z]{3}F(O|0)4[0-9]{3}.*\.es(l|m)'
group: *ccGroup
## Base Game ##
# Armor Paint Job - Enclave
- name: 'ccbgsfo4096-as_enclave.esl'
clean:
- crc: 0x9FEEDC55
util: 'FO4Edit v4.1.5f'
# Enclave Remnants
- name: 'ccOTMFO4001-Remnants.esl'
dirty:
- <<: *quickClean
crc: 0x7F5B1357
util: '[FO4Edit v4.1.5f](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 1
# Halloween Workshop
- name: 'ccFSVFO4007-Halloween.esl'
clean:
- crc: 0x794E415B
util: 'FO4Edit v4.1.5f'
# Heavy Incinerator
- name: 'ccbgsfo4116-heavyflamer.esl'
tag: [ Delev ]
clean:
- crc: 0x46D8EE37
util: 'FO4Edit v4.1.5f'
# Hellfire Power Armor
- name: 'ccbgsfo4044-hellfirepowerarmor.esl'
tag: [ Delev ]
clean:
- crc: 0xE1873D15
util: 'FO4Edit v4.1.5f'
# Makeshift Weapon Pack
- name: 'ccSBJFO4003-Grenade.esl'
clean:
- crc: 0xACD2EE1A
util: 'FO4Edit v4.1.5f'
# Tesla Cannon
- name: 'ccbgsfo4046-tescan.esl'
tag: [ Delev ]
dirty:
- <<: *quickClean
crc: 0x6A178F10
util: '[FO4Edit v4.1.5f](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 10
# Weapon Paint Job - Enclave
- name: 'ccbgsfo4110-ws_enclave.esl'
clean:
- crc: 0x6F3E5A0A
util: 'FO4Edit v4.1.5f'
# X-02 Power Armor
- name: 'ccbgsfo4115-x02.esl'
tag: [ Delev ]
dirty:
- <<: *quickClean
crc: 0x0B9FC240
util: '[FO4Edit v4.1.5f](https://www.nexusmods.com/fallout4/mods/2737)'
itm: 7
## Creation Club ##
# Armor Paint Job - Aquatic Camo
- name: 'ccbgsfo4092-as_camoblue.esl'
clean:
- crc: 0x445BAB6B
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Army
- name: 'ccgcafo4023-factionas12army.esl'
clean:
- crc: 0x23E23B29
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Atom Cats
- name: 'ccgcafo4012-factionas01acat.esl'
clean:
- crc: 0xC501A97C
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Bats
- name: 'ccbgsfo4091-as_bats.esl'
clean:
- crc: 0x9457F735
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Brotherhood of Steel
- name: 'ccgcafo4013-factionas02bos.esl'
clean:
- crc: 0xA9553100
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Children of Atom
- name: 'ccbgsfo4095-as_childrenofatom.esl'
clean:
- crc: 0x1D131110
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Desert Camo
- name: 'ccbgsfo4094-as_camotan.esl'
clean:
- crc: 0xABFEDE4F
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Gunners
- name: 'ccgcafo4014-factionas03gun.esl'
clean:
- crc: 0x1BD5A572
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Hot Rod Flames
- name: 'ccgcafo4021-factionas10hrflames.esl'
clean:
- crc: 0x003EFA40
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Hot Rod Pink
- name: 'ccgcafo4015-factionas04hrpink.esl'
clean:
- crc: 0x5A4E5142
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Hot Rod Shark
- name: 'ccgcafo4016-factionas05hrshark.esl'
clean:
- crc: 0xA88739AD
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Institute
- name: 'ccgcafo4017-factionas06inst.esl'
clean:
- crc: 0x52D787A3
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Jack 0'Lantern
- name: 'ccbgsfo4097-as_jack-olantern.esl'
clean:
- crc: 0xDD63622B
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Minutemen
- name: 'ccgcafo4018-factionas07mm.esl'
clean:
- crc: 0x62E57AE9
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Nuka Cherry
- name: 'ccgcafo4019-factionas08nuk.esl'
clean:
- crc: 0x37D90FD3
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Pickmen
- name: 'ccbgsfo4098-as_pickman.esl'
clean:
- crc: 0xB6901016
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Railroad
- name: 'ccgcafo4020-factionas09rr.esl'
clean:
- crc: 0x6A83CD0E
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Reilly's Rangers
- name: 'ccbgsfo4099-as_reillysrangers.esl'
clean:
- crc: 0x61CDF452
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Shi
- name: 'ccbgsfo4101-as_shi.esl'
clean:
- crc: 0xB67B25C2
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Swamp Camo
- name: 'ccbgsfo4093-as_camogreen.esl'
clean:
- crc: 0x5AF9653D
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Tunnel Snakes
- name: 'ccbgsfo4103-as_tunnelsnakes.esl'
clean:
- crc: 0x99A6C21D
util: 'FO4Edit v4.0.2j'
# Armor Paint Job - Vault-Tec
- name: 'ccgcafo4022-factionas11vt.esl'
clean:
- crc: 0x3BFFC8C6
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Abraxo
- name: 'ccbgsfo4070-pipabra.esl'
clean:
- crc: 0xB133B927
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Adventure
- name: 'ccbgsfo4086-pipadventure.esl'
clean:
- crc: 0xA828C2D2
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Aquatic Camo
- name: 'ccbgsfo4005-bluecamo.esl'
clean:
- crc: 0xED47F966
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - ArcJet
- name: 'ccbgsfo4071-piparc.esl'
clean:
- crc: 0x74A7285C
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Art Deco
- name: 'ccbgsfo4083-pipartdeco.esl'
clean:
- crc: 0x2D8540AB
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Blue
- name: 'ccbgsfo4002-pipboy(blue).esl'
clean:
- crc: 0x27E9BDE1
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Children of Atom
- name: 'cccrsfo4001-pipcoa.esl'
clean:
- crc: 0xA0A61B6C
util: 'FO4Edit v4.0.3'
# Pip-Boy Paint Job - Chrome
- name: 'ccbgsfo4006-pipboy(chrome).esl'
clean:
- crc: 0xB699105C
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Corvega
- name: 'ccbgsfo4084-pipretro.esl'
clean:
- crc: 0xF43AC41E
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Cruiser
- name: 'ccygpfo4001-pipcruiser.esl'
clean:
- crc: 0x0C03A954
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Desert Camo
- name: 'ccbgsfo4003-pipboy(camo01).esl'
clean:
- crc: 0xA3FBAED9
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Five-Star Red
- name: 'ccbgsfo4082-pipprc.esl'
clean:
- crc: 0x45727D5D
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Green
- name: 'ccbgsfo4008-pipgrn.esl'
clean:
- crc: 0x281C0782
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Grey Tortoise
- name: 'ccgrcfo4001-pipgreytort.esl'
clean:
- crc: 0x69E636C0
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Grognak
- name: 'ccbgsfo4072-pipgrog.esl'
clean:
- crc: 0x3C07D64B
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Haida
- name: 'ccbgsfo4087-piphaida.esl'
clean:
- crc: 0x242795FF
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Hawaii
- name: 'ccbgsfo4085-piphawaii.esl'
clean:
- crc: 0xFECB0185
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Manta Man
- name: 'ccbgsfo4073-pipmman.esl'
clean:
- crc: 0xF6081D60
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Mistress of Mystery
- name: 'ccbgsfo4076-pipmystery.esl'
clean:
- crc: 0x3FAFF472
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Neon Sunrise
- name: 'ccbgsfo4089-pipsynthwave.esl'
clean:
- crc: 0x631C8C06
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Nuka-Cola
- name: 'ccswkfo4002-pipnuka.esl'
clean:
- crc: 0xB6A07FA4
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Nuka-Cola Quantum
- name: 'ccswkfo4003-pipquan.esl'
clean:
- crc: 0xA2F66832
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Onyx
- name: 'ccbgsfo4001-pipboy(black).esl'
clean:
- crc: 0x7CA905AC
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Orange
- name: 'ccbgsfo4009-piporan.esl'
clean:
- crc: 0x876594B1
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Overseer's Edition
- name: 'ccrzrfo4003-pipover.esl'
clean:
- crc: 0xE1A3C2E0
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Patriotic
- name: 'ccbgsfo4062-pippat.esl'
clean:
- crc: 0x4114664F
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Phenol Resin
- name: 'ccbgsfo4081-pipphenolresin.esl'
clean:
- crc: 0x1ACF4045
util: 'FO4Edit v4.0.2j'
# Pip-Boy Paint Job - Pink