-
Notifications
You must be signed in to change notification settings - Fork 16
/
masterlist.yaml
7891 lines (7429 loc) · 227 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.'
# Useful for when a plugin needs the MCM, but shouldn't load after it (e.g., when it's a master plugin).
- &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: '[FNVEdit](https://www.nexusmods.com/newvegas/mods/34703)'
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: '[FNVEdit](https://www.nexusmods.com/newvegas/mods/34703)'
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}.'
- &supersede
type: warn
content: 'You seem to be using **{0}**, but it has been superseded. It is recommended that you use **{1}** instead.'
common:
# Condition Anchors
- &condFileTTW
file("TaleOfTwoWastelands.esm")
- &condNotFileTTW
not file("TaleOfTwoWastelands.esm")
# File Anchors
- &anhNVSE
name: 'NVSE/Plugins/AnhNVSE.dll'
display: '[AnhNVSE](https://www.nexusmods.com/newvegas/mods/74012/)'
- &BaseObjectSwapper
name: 'NVSE/Plugins/BaseObjectSwapper.dll'
display: '[Base Object Swapper](https://www.nexusmods.com/newvegas/mods/83934/)'
- &ClimateControl
name: 'NVSE/Plugins/ClimateControl.dll'
display: '[ClimateControl](https://www.nexusmods.com/newvegas/mods/77205/)'
- &JIPLN
name: 'NVSE/Plugins/jip_nvse.dll'
display: '[JIP LN NVSE Plugin](https://www.nexusmods.com/newvegas/mods/58277/)'
- &johnnyGuitar
name: 'NVSE/Plugins/johnnyguitar.dll'
display: '[JohnnyGuitar NVSE](https://www.nexusmods.com/newvegas/mods/66927/)'
- &KEYWORDS
name: 'NVSE/Plugins/Scripts/gr_0KEYWORDS.txt'
display: '[KEYWORDS](https://www.nexusmods.com/newvegas/mods/83088/)'
- &kNVSE_Animation
name: 'NVSE/Plugins/kNVSE.dll'
display: '[kNVSE Animation Plugin](https://www.nexusmods.com/newvegas/mods/71336/)'
- &lStewieAlTweaks
name: 'NVSE/Plugins/nvse_stewie_tweaks.dll'
display: '[lStewieAl''s Tweaks and Engine Fixes](https://www.nexusmods.com/newvegas/mods/66347/)'
- &MCM
name: 'NVSE/Plugins/MCM.dll'
display: '[The Mod Configuration Menu](https://www.nexusmods.com/newvegas/mods/42507/)'
- &ShowOff
name: 'NVSE/Plugins/ShowOffNVSE.dll'
display: '[ShowOff xNVSE Plugin](https://www.nexusmods.com/newvegas/mods/72541/)'
- &supNVSE
name: 'NVSE/Plugins/supNVSE.dll'
display: '[SUP NVSE](https://www.nexusmods.com/newvegas/mods/73160/)'
- &TTWv320
name: 'TaleOfTwoWastelands.esm'
display: 'Tale Of Two Wastelands v3.2+'
condition: 'version("TaleOfTwoWastelands.esm", "3.2.0", >=)'
- &TTWv330
name: 'TaleOfTwoWastelands.esm'
display: 'Tale Of Two Wastelands v3.3+'
condition: 'version("TaleOfTwoWastelands.esm", "3.3.0", >=)'
- &UIO
name: 'NVSE/Plugins/ui_organizer.dll'
display: '[UIO - User Interface Organizer](https://www.nexusmods.com/newvegas/mods/57174/)'
- &yGTM
name: 'NVSE/Plugins/yGTM.dll'
display: '[yGTM - Gameplay Tweaks and Madness](https://www.nexusmods.com/newvegas/mods/72784/)'
# Sub-Anchors
# &requiresMCM_X
- &requiresMCM
<<: *requiresMCM_X
subs: [ '[The Mod Configuration Menu](https://www.nexusmods.com/newvegas/mods/42507/)' ]
condition: 'not active("The Mod Configuration Menu.esp") and not file("NVSE/Plugins/MCM.dll")'
# &requiresResources
- &requiresResourcesType3
<<: *requiresResources
type: say
subs: [ '[BEWARE OF GIRL Type 3 Replacer](https://www.nexusmods.com/newvegas/mods/34702/)' ]
# &requiresX
- &requiresNVSE
<<: *requiresX
type: error
subs: [ '[New Vegas Script Extender](http://nvse.silverlock.org/)' ]
condition: 'not file("../nvse_1_\d(ng)?\.dll")'
- &requires_xNVSE
<<: *requiresX
type: error
subs: [ '[New Vegas Script Extender (xNVSE)](https://github.com/xNVSE/NVSE/releases)' ]
condition: 'version("../nvse_1_4.dll", "0.6.0.0", <)'
# &useVersion
- &useVersionDeadMoney
<<: *useVersion
subs: [ 'Dead Money' ]
condition: 'active("DeadMoney.esm")'
- &useVersionHonestHearts
<<: *useVersion
subs: [ 'Honest Hearts' ]
condition: 'active("HonestHearts.esm")'
- &useVersionOldWorldBlues
<<: *useVersion
subs: [ 'Old World Blues' ]
condition: 'active("OldWorldBlues.esm")'
- &useVersionLonesomeRoad
<<: *useVersion
subs: [ 'Lonesome Road' ]
condition: 'active("LonesomeRoad.esm")'
- &useVersionClassicPack
<<: *useVersion
subs: [ 'Classic Pack' ]
condition: 'active("ClassicPack.esm")'
- &useVersionMercenaryPack
<<: *useVersion
subs: [ 'Mercenary Pack' ]
condition: 'active("MercenaryPack.esm")'
- &useVersionTribalPack
<<: *useVersion
subs: [ 'Tribal Pack' ]
condition: 'active("TribalPack.esm")'
- &useVersionCaravanPack
<<: *useVersion
subs: [ 'Caravan Pack' ]
condition: 'active("CaravanPack.esm")'
- &useVersionGunRunnersArsenal
<<: *useVersion
subs: [ 'Gun Runners Arsenal' ]
condition: 'active("GunRunnersArsenal.esm")'
# &useVersionNon
- &useVersionNonDeadMoney
<<: *useVersionNon
subs: [ 'Dead Money' ]
condition: 'not active("DeadMoney.esm")'
- &useVersionNonHonestHearts
<<: *useVersionNon
subs: [ 'Honest Hearts' ]
condition: 'not active("HonestHearts.esm")'
- &useVersionNonOldWorldBlues
<<: *useVersionNon
subs: [ 'Old World Blues' ]
condition: 'not active("OldWorldBlues.esm")'
- &useVersionNonLonesomeRoad
<<: *useVersionNon
subs: [ 'Lonesome Road' ]
condition: 'not active("LonesomeRoad.esm")'
- &useVersionNonClassicPack
<<: *useVersionNon
subs: [ 'Classic Pack' ]
condition: 'not active("ClassicPack.esm")'
- &useVersionNonMercenaryPack
<<: *useVersionNon
subs: [ 'Mercenary Pack' ]
condition: 'not active("MercenaryPack.esm")'
- &useVersionNonTribalPack
<<: *useVersionNon
subs: [ 'Tribal Pack' ]
condition: 'not active("TribalPack.esm")'
- &useVersionNonCaravanPack
<<: *useVersionNon
subs: [ 'Caravan Pack' ]
condition: 'not active("CaravanPack.esm")'
- &useVersionNonGunRunnersArsenal
<<: *useVersionNon
subs: [ 'Gun Runners Arsenal' ]
condition: 'not active("GunRunnersArsenal.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'
- 'WeaponMods'
globals:
# Latest LOOT Thread
- *latestLOOTThread
# ENBSeries - NVHR
- <<: *incompatible
subs:
- '[ENBSeries](http://enbdev.com/mod_falloutnv_v0451.htm)'
- '[NVHR - New Vegas Heap Replacer](https://www.nexusmods.com/newvegas/mods/69779/)'
condition: 'file("NVHR/nvhr_avx.dll") and (file("../ENBInjector.exe") or file("../enbhost.exe"))'
# ENBSeries - NVTF
- <<: *incompatible
subs:
- '[ENBSeries](http://enbdev.com/mod_falloutnv_v0451.htm)'
- '[NVTF - New Vegas Tick Fix](https://www.nexusmods.com/newvegas/mods/66537/)'
condition: 'file("NVSE/Plugins/NVTF.dll") and (file("../ENBInjector.exe") or file("../enbhost.exe"))'
# NVSE
# Missing
- <<: *scriptExtenderMissing
subs:
- 'NVSE'
- '[New Vegas Script Extender](http://nvse.silverlock.org/)'
condition: 'file("NVSE/Plugins/([^\.]+\.dll)") and not file("../nvse_1_\d(ng)?\.dll")'
# NVSR
- <<: *supersede
subs:
- '[New Vegas Stutter Remover](https://www.nexusmods.com/newvegas/mods/34832/)'
- '[NVTF - New Vegas Tick Fix](https://www.nexusmods.com/newvegas/mods/66537/)'
condition: 'file("NVSE/Plugins/sr_New_Vegas_Stutter_Remover.dll") and not file("NVSE/Plugins/NVTF.dll")'
- <<: *supersede
subs:
- '[New Vegas Stutter Remover](https://www.nexusmods.com/newvegas/mods/34832/)'
- '[New Vegas Heap Replacer](https://www.nexusmods.com/newvegas/mods/69779/)'
condition: 'file("NVSE/Plugins/sr_New_Vegas_Stutter_Remover.dll") and not file("NVHR/nvhr_avx.dll")'
- <<: *supersede
subs:
- '[New Vegas Stutter Remover](https://www.nexusmods.com/newvegas/mods/34832/)'
- '[lStewieAl''s Tweaks and Engine Fixes](https://www.nexusmods.com/newvegas/mods/66347/)'
condition: 'file("NVSE/Plugins/sr_New_Vegas_Stutter_Remover.dll") and not file("NVSE/Plugins/nvse_stewie_tweaks.dll")'
# Latest Version
# Fallout: New Vegas Game Runtime
- <<: *versionOldX
subs: [ '**Fallout: New Vegas**' ]
condition: 'readable("../FalloutNV.exe") and product_version("../FalloutNV.exe", "1.4.0.525", <)'
- <<: *versionUpToDateX
subs: [ '**Fallout: New Vegas**' ]
condition: 'readable("../FalloutNV.exe") and product_version("../FalloutNV.exe", "1.4.0.525", >=)'
# NVSE
- <<: *versionOldX
subs: [ '**[New Vegas Script Extender](http://nvse.silverlock.org/)**' ]
condition: 'not file("../nvse_1_4ng.dll") and (file("../nvse_1_[01]\.dll") or (file("../nvse_1_4.dll") and version("../nvse_1_4.dll", "0.6.3.5", <)))'
- <<: *versionUpToDateX
subs: [ '**New Vegas Script Extender**' ]
condition: 'not file("../nvse_1_4ng.dll") and version("../nvse_1_4.dll", "0.6.3.5", >=)'
# NVSE NoGore
- <<: *versionOldX
subs: [ '**[New Vegas Script Extender NoGore](http://nvse.silverlock.org/)**' ]
condition: 'file("../nvse_1_4ng.dll") and version("../nvse_1_4ng.dll", "0.5.1.4", <)'
- <<: *versionUpToDateX
subs: [ '**New Vegas Script Extender NoGore**' ]
condition: 'version("../nvse_1_4ng.dll", "0.5.1.4", >=)'
# Version Compatibility
# NVSE - Game Runtime
- <<: *versionXIncY
subs:
- '**[New Vegas Script Extender](http://nvse.silverlock.org/)**'
- '**Fallout: New Vegas**'
condition: 'readable("../FalloutNV.exe") and product_version("../FalloutNV.exe", "1.4.0.525", ==) and (file("../nvse_1_0.dll") or (file("../nvse_1_1.dll") and version("../nvse_1_1.dll", "0.2.0.6", <)))'
groups:
- name: &dlcGroup DLC
description: 'A group for official downloadable content.'
- name: &fixesGroup Fixes & Resources
description: 'A group for modules that fix issues and bugs or add resources for other mods.'
after: [ *dlcGroup ]
- name: &addonsPatchesGroup Add-ons & Expansions (Patches)
description: 'A group for patches of modules in Add-ons & Expansions.'
- name: &addonsGroup Add-ons & Expansions
description: 'A group for modules that add new content or expand the vanilla game.'
after:
- *addonsPatchesGroup
- *fixesGroup
- name: &earlyLoadersGroup Early Loaders
description: 'A group for modules that should load early before most other mods.'
after: [ *addonsGroup ]
- name: default
after: [ *earlyLoadersGroup ]
- name: &lightingGroup Interior Lighting Overhaul
after: [ default ]
- name: &lodGroup LOD
after: [ *lightingGroup ]
- name: &cellSettingsGroup Cell Settings
description: 'A group for modules that only modify cell settings.'
after: [ *lodGroup ]
- name: &weatherGroup Weather & Lighting
after: [ *cellSettingsGroup ]
- name: &lateChangesGroup Late Fixes & Changes
after: [ *weatherGroup ]
- name: &dynamicPatchGroup Dynamic Patches
after: [ *lateChangesGroup ]
plugins:
- name: 'DeadMoney.esm'
url: [ 'https://store.steampowered.com/app/72730/' ]
group: *dlcGroup
tag:
- Invent.Add
- Invent.Remove
- Sound
- Stats
dirty:
- <<: *quickClean
crc: 0xD70F165B
util: '[FNVEdit v4.1.5f](https://www.nexusmods.com/newvegas/mods/34703)'
itm: 403
udr: 51
- name: 'HonestHearts.esm'
url: [ 'https://store.steampowered.com/app/72740/' ]
group: *dlcGroup
after: [ 'DeadMoney.esm' ]
tag:
- C.Light
- Graphics
- Sound
dirty:
- <<: *quickClean
crc: 0x2352B189
util: '[FNVEdit v4.1.5f](https://www.nexusmods.com/newvegas/mods/34703)'
itm: 121
udr: 10
- name: 'OldWorldBlues.esm'
url: [ 'https://store.steampowered.com/app/72750/' ]
group: *dlcGroup
after:
- 'DeadMoney.esm'
- 'HonestHearts.esm'
tag:
- Graphics
- Invent.Add
- Invent.Remove
- Relev
- Sound
- Stats
dirty:
- <<: *quickClean
crc: 0x7F8F8225
util: '[FNVEdit v4.1.5f](https://www.nexusmods.com/newvegas/mods/34703)'
itm: 123
- name: 'LonesomeRoad.esm'
url: [ 'https://store.steampowered.com/app/72760/' ]
group: *dlcGroup
after:
- 'DeadMoney.esm'
- 'HonestHearts.esm'
- 'OldWorldBlues.esm'
tag:
- EffectStats
- Sound
- Stats
dirty:
- <<: *quickClean
crc: 0x30073D50
util: '[FNVEdit v4.1.5f](https://www.nexusmods.com/newvegas/mods/34703)'
itm: 243
udr: 6
- name: 'GunRunnersArsenal.esm'
url: [ 'https://store.steampowered.com/app/72840/' ]
group: *dlcGroup
after:
- 'DeadMoney.esm'
- 'HonestHearts.esm'
- 'OldWorldBlues.esm'
- 'LonesomeRoad.esm'
tag:
- Destructible
- Graphics
- Invent.Add
- Sound
dirty:
- <<: *quickClean
crc: 0x0AAC938D
util: '[FNVEdit v4.1.5f](https://www.nexusmods.com/newvegas/mods/34703)'
itm: 95
- name: 'ClassicPack.esm'
url: [ 'https://store.steampowered.com/app/901778/' ]
group: *dlcGroup
after:
- 'DeadMoney.esm'
- 'HonestHearts.esm'
- 'OldWorldBlues.esm'
- 'LonesomeRoad.esm'
- 'GunRunnersArsenal.esm'
- name: 'Zeta.esm'
condition: *condFileTTW
- name: 'CaravanPack.esm'
condition: *condFileTTW
clean:
- crc: 0x41F95714
util: 'FNVEdit v4.1.5f'
- name: 'MercenaryPack.esm'
url: [ 'https://store.steampowered.com/app/901778/' ]
group: *dlcGroup
after:
- 'DeadMoney.esm'
- 'HonestHearts.esm'
- 'OldWorldBlues.esm'
- 'LonesomeRoad.esm'
- 'GunRunnersArsenal.esm'
- 'ClassicPack.esm'
- name: 'Zeta.esm'
condition: *condFileTTW
clean:
- crc: 0xD377B2B9
util: 'FNVEdit v4.1.5f'
- name: 'TribalPack.esm'
url: [ 'https://store.steampowered.com/app/901778/' ]
group: *dlcGroup
after:
- 'DeadMoney.esm'
- 'HonestHearts.esm'
- 'OldWorldBlues.esm'
- 'LonesomeRoad.esm'
- 'GunRunnersArsenal.esm'
- 'ClassicPack.esm'
- 'MercenaryPack.esm'
- name: 'Zeta.esm'
condition: *condFileTTW
clean:
- crc: 0x0DE09873
util: 'FNVEdit v4.1.5f'
- name: 'CaravanPack.esm'
url: [ 'https://store.steampowered.com/app/901778/' ]
group: *dlcGroup
after:
- 'DeadMoney.esm'
- 'HonestHearts.esm'
- 'OldWorldBlues.esm'
- 'LonesomeRoad.esm'
- 'GunRunnersArsenal.esm'
- name: 'ClassicPack.esm'
condition: *condNotFileTTW
- name: 'MercenaryPack.esm'
condition: *condNotFileTTW
- name: 'TribalPack.esm'
condition: *condNotFileTTW
- name: 'Zeta.esm'
condition: *condFileTTW
clean:
- crc: 0x228740D1
util: 'FNVEdit v4.1.5f'
###### Base Game Patches ######
- name: 'Unofficial Patch NVSE Plus.esp'
url:
- link: 'https://www.nexusmods.com/newvegas/mods/71239/'
name: 'Unofficial Patch NVSE Plus'
group: *fixesGroup
req:
- *JIPLN
- *johnnyGuitar
inc: [ *TTWv320 ]
msg:
- <<: *alsoUseX
subs: [ '[Yukichigai Unofficial Patch](https://www.nexusmods.com/newvegas/mods/51664/)' ]
condition: 'not active("YUP - Base Game( \+ All DLC)?\.esm")'
- *requires_xNVSE
tag:
- EffectStats
- Enchantments
- EnchantmentStats
- Names
- Scripts
- Text
clean:
- crc: 0x894F29EC
util: 'FNVEdit v4.0.4c'
- name: 'YUP .*\.es[mp]'
url:
- link: 'https://www.nexusmods.com/newvegas/mods/51664/'
name: 'Yukichigai Unofficial Patch - YUP'
- name: 'YUP - Base Game( \+ All DLC)?\.esm'
inc: [ *TTWv320 ]
tag:
- Actors.ACBS
- Actors.AIData
- Actors.AIPackages
- Actors.Anims
- Actors.CombatStyle
- Actors.DeathItem
- Actors.Factions
- Actors.RecordFlags
- Actors.Spells
- Actors.Stats
- Actors.Voice
- C.Acoustic
- C.Encounter
- C.Light
- C.Owner
- C.Regions
- C.Water
- Creatures.Type
- Delev
- Destructible
- EffectStats
- Enchantments
- EnchantmentStats
- Graphics
- Invent.Add
- Invent.Change
- Invent.Remove
- Names
- R.Eyes
- R.Hair
- R.Head
- Relations.Add
- Relations.Remove
- Relev
- Scripts
- Sound
- SpellStats
- Stats
- Text
- WeaponMods
- name: 'YUP - Base Game + All DLC.esm'
group: *fixesGroup
msg:
- <<: *patchProvided
subs: [ 'New Vegas Uncut - Outside Bets' ]
condition: 'active("outsidebets.esp") and not active("YUP - Outside Bets Patch.esp")'
# Do not clean
- name: 'YUP - NPC Fixes \(Base Game( \+ All DLC)?\)\.esp'
group: *fixesGroup
tag:
- Actors.ACBS
- Actors.AIData
- Actors.AIPackages
- Actors.CombatStyle
- Actors.DeathItem
- Actors.Factions
- Actors.RecordFlags
- Actors.Skeleton
- Actors.Spells
- Actors.Stats
- Actors.Voice
- Invent.Add
- Invent.Change
- Invent.Remove
- Names
- NPC.Class
- NPC.Eyes
- NPC.FaceGen
- NPC.Hair
- NPC.Race
- Scripts
- name: 'YUP - NPC Fixes (Base Game + All DLC).esp'
clean:
- crc: 0xEC108C63
util: 'FNVEdit v4.0.4c'
- name: 'YUP - (Base Game|Dead Money|Honest Hearts|Old World Blues|Lonesome Road|Gun Runners Arsenal)\.esm'
group: *fixesGroup
msg:
- <<: *alreadyInX
subs: [ '**YUP - Base Game + All DLC.esm**' ]
condition: 'active("YUP - Base Game + All DLC.esm")'
- name: 'YUP - (Honest Hearts|Old World Blues|Lonesome Road|Gun Runners Arsenal)\.esm'
after: [ 'YUP - Dead Money.esm' ]
- name: 'YUP - (Old World Blues|Lonesome Road|Gun Runners Arsenal)\.esm'
after: [ 'YUP - Honest Hearts.esm' ]
- name: 'YUP - (Lonesome Road|Gun Runners Arsenal)\.esm'
after: [ 'YUP - Old World Blues.esm' ]
- name: 'YUP - Base Game.esm'
dirty:
- <<: *quickClean
crc: 0xAE5905C9
util: '[FNVEdit v4.0.4b](https://www.nexusmods.com/newvegas/mods/34703)'
itm: 1
- name: 'YUP - Dead Money.esm'
tag:
- Actors.ACBS
- Actors.AIPackages
- Actors.RecordFlags
- Actors.Skeleton
- Actors.Spells
- Destructible
- Enchantments
- Graphics
- Invent.Add
- Invent.Change
- Invent.Remove
- Names
- NPC.FaceGen
- NPC.Hair
- R.Hair
- Sound
- Stats
- Text
- WeaponMods
dirty:
- <<: *quickClean
crc: 0xAB893BAF
util: '[FNVEdit v4.0.4b](https://www.nexusmods.com/newvegas/mods/34703)'
itm: 3
- name: 'YUP - Honest Hearts.esm'
tag:
- Actors.ACBS
- Actors.AIPackages
- Actors.DeathItem
- Actors.RecordFlags
- Actors.Spells
- Delev
- Destructible
- EffectStats
- Enchantments
- EnchantmentStats
- Graphics
- Invent.Remove
- Names
- NPC.Class
- R.Hair
- Sound
- SpellStats
- Stats
- Text
- WeaponMods
clean:
- crc: 0x102B78E0
util: 'FNVEdit v4.0.4b'
- name: 'YUP - Old World Blues.esm'
tag:
- Actors.ACBS
- Actors.AIData
- Actors.AIPackages
- Actors.CombatStyle
- Actors.DeathItem
- Actors.Factions
- Actors.RecordFlags
- Actors.Spells
- Actors.Voice
- Creatures.Type
- Delev
- EffectStats
- Enchantments
- Graphics
- Invent.Remove
- Names
- NPC.Class
- NPC.Race
- R.Hair
- Relev
- Scripts
- Sound
- Stats
- Text
- WeaponMods
clean:
- crc: 0x80534E9C
util: 'FNVEdit v4.0.4b'
- name: 'YUP - Lonesome Road.esm'
tag:
- Actors.ACBS
- Actors.AIPackages
- Actors.CombatStyle
- Actors.DeathItem
- Actors.RecordFlags
- Actors.Spells
- Actors.Voice
- C.Acoustic
- Delev
- Destructible
- EffectStats
- Enchantments
- EnchantmentStats
- Graphics
- Invent.Remove
- Names
- NPC.Class
- NPC.Race
- R.Eyes
- R.Hair
- Relations.Add
- Sound
- SpellStats