-
Notifications
You must be signed in to change notification settings - Fork 2
/
masterlist.txt
5710 lines (5646 loc) · 189 KB
/
masterlist.txt
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
/*
Masterlist Syntax Notes
Only the basics of the most commonly-used parts of the syntax are covered here. See the BOSS Masterlist Syntax.html documentation file in data/boss-common/ on the BOSS code repository for full details.
* Use blank lines to separate mods that are grouped together or where it helps readability.
* Use silent comments when you think something needs clarification to others reading the masterlist (such as when a mod looks like it is misspelled, but is correct).
* Only make edits/additions you're confident about - otherwise discuss the issue on the official forum threads.
* If you're unsure on how to write something in the correct syntax, check the masterlists for examples, and don't be afraid to ask other committers for help.
* When you include a web link in a message, enclose it in double quotes "", for example: www.example.org should be written "www.example.org".
* When you list Bash Tags for a mod, separate them using ", " and not just ",". Eg. {{BASH: Graphics,NoMerge}} should be written {{BASH: Graphics, NoMerge}}. This improves readability in the BOSSlog and the masterlist itself.
* Don't include any HTML formatting in messages. In particular, web links do not need to be formatted as HTML hyperlinks, as BOSS will do this automatically.
* Put variable lines at the top of the masterlist, just under this section of text.
* Put global messages at the top of the masterlist, just under any variable lines.
Silent Comments:
Silent comments are ignored by BOSS, and may be written by starting a line with "//" (not including quotes).
You cannot start a silent comment part-way into a line, only whole lines may be silent.
Message Type Keyword Description
=====================================================================
General message SAY A general message for the mod above.
Bash Tag suggestion TAG A Bash Tag suggestion for the mod above.
Requirement REQ An installation requirement for the mod above.
Incompatibility INC A specific incompatibility for the mod above.
Dirty mod message DIRTY A message relating to dirty edits in the mod above.
Warning WARN A message used to display a non-critical warning for the mod above.
Error ERROR A message used to display a critical (ie. install-breaking) error for the mod above.
Message keywords should be indented by two spaces and followed by a colon ':' then the message string.
*/
// Masterlist variable setup for BOSS v1.7+.
IF FILE("NVSE") SET: NVSE
IF FILE("nVamp - Core.esm") SET: NVAMP
IF FILE("EVE FNV.esp") || IF FILE("EVE FNV - ALL DLC.esp") SET: EVE
IF FILE("Weapon Mod Expansion.esm") SET: WME
IF FILE("Project Nevada - Core.esm") SET: PN-C
IF FILE("Project Nevada - Rebalance.esp") SET: PN-R
IF FILE("Project Nevada - Equipment.esm") SET: PN-E
IF FILE("ProjectBrazil.esm") SET: PRJB
IF FILE("FOOK - New Vegas.esm") SET: FOOK
IF FILE("Mission Mojave - Ultmate Edition.esp") SET: MM
IF FILE("TaleOfTwoWastelands.esm") SET: TTW
IF VAR(TTW) && IFNOT CHECKSUM("TaleOfTwoWastelands.esm", 8104A5CA) SET: TTW-WARN
// DLC variable setup.
IF FILE("DeadMoney.esm") SET: DM
IF FILE("HonestHearts.esm") SET: HH
IF FILE("OldWorldBlues.esm") SET: OWB
IF FILE("LonesomeRoad.esm") SET: LR
IF FILE("GunRunnersArsenal.esm") SET: GRA
IF FILE("ClassicPack.esm") SET: CLP
IF FILE("MercenaryPack.esm") SET: MEP
IF FILE("TribalPack.esm") SET: TRP
IF FILE("CaravanPack.esm") SET: CAP
IF VAR(LR) && IF VAR(OWB) && IF VAR(HH) && IF VAR(DM) SET: DLC
IF VAR(CLP) && IF VAR(MEP) && IF VAR(TRP) && IF VAR(CAP) SET: PACK
IF VAR(DLC) && IF VAR(PACK) SET: DLC-P
IF VAR(DLC) && IF VAR(GRA) SET: DLC-G
IF VAR(DLC-G) && IF VAR(PACK) SET: DLC-A
// Upgrade message for 1.7+ users:
IF VERSION("BOSS", "2.3.2.0", <) GLOBAL WARN: An update for BOSS (v2.3.2) has been released. Download it at "http://boss-developers.github.io". With this release, the BOSS Log plugin submitter is now operational again and this is the last release that will support XP. This also fixes a crash with the User List and an issue with line-endings. Users are advised to upgrade to maintain functionality.
// BOSS Thread
GLOBAL SAY: "http://forums.bethsoft.com/topic/1313081-rel-boss-for-fallout-new-vegas/ Latest BOSS thread"
// Deprecation message
GLOBAL WARN: BOSS support for Fallout: New Vegas is no longer maintained. Users are strongly advised to use "http://loot.github.io/ LOOT" instead when sorting their Fallout: New Vegas load orders.
BEGINGROUP: ESMs
//------------
FalloutNV.esm
DeadMoney.esm
IF CHECKSUM("DeadMoney.esm", D70F165B) DIRTY: 403 ITM, 51 UDR records. Needs "http://newvegas.nexusmods.com/mods/34703 FNVEdit" cleaning. A cleaning guide is available "http://www.creationkit.com/TES5Edit_Cleaning_Guide_-_TES5Edit here".
HonestHearts.esm
IF CHECKSUM("HonestHearts.esm", 2352B189) DIRTY: 121 ITM, 10 UDR records. Needs "http://newvegas.nexusmods.com/mods/34703 FNVEdit" cleaning. A cleaning guide is available "http://www.creationkit.com/TES5Edit_Cleaning_Guide_-_TES5Edit here".
OldWorldBlues.esm
IF CHECKSUM("OldWorldBlues.esm", 7F8F8225) DIRTY: 124 ITM, 0 UDR records. Needs "http://newvegas.nexusmods.com/mods/34703 FNVEdit" cleaning. A cleaning guide is available "http://www.creationkit.com/TES5Edit_Cleaning_Guide_-_TES5Edit here".
LonesomeRoad.esm
IF CHECKSUM("LonesomeRoad.esm", 30073D50) DIRTY: 240 ITM, 6 UDR records. Needs "http://newvegas.nexusmods.com/mods/34703 FNVEdit" cleaning. A cleaning guide is available "http://www.creationkit.com/TES5Edit_Cleaning_Guide_-_TES5Edit here".
GunRunnersArsenal.esm
IF CHECKSUM("GunRunnersArsenal.esm", AAC938D) DIRTY: 97 ITM, 0 UDR records. Needs "http://newvegas.nexusmods.com/mods/34703 FNVEdit" cleaning. A cleaning guide is available "http://www.creationkit.com/TES5Edit_Cleaning_Guide_-_TES5Edit here".
Fallout3.esm
Anchorage.esm
ThePitt.esm
BrokenSteel.esm
PointLookout.esm
Zeta.esm
TaleOfTwoWastelands.esm
IF VAR(TTW-WARN) WARN: Need check for Tale of Two Wastelands load order
IF VAR(TTW-WARN) GLOBAL WARN: Need check for Tale of Two Wastelands load order
ACES - Casino Data Extension.esm
Community Bugfix Compilation Patch.esm
SAY: Outdated. Consider using the latest version of Mission Mojave - Ultimate Edition instead.
TAG: {{BASH: Actors.AIPackages, Delev, Relev, Sound, Stats, Scripts, Invent}}
CBC Dead Money Patch.esm
IFNOT VAR(DM) REQ: DeadMoney.esm
// Order needs verification, is it important?
ClassicPack.esm
MercenaryPack.esm
TribalPack.esm
CaravanPack.esm
// Yukichigai Unofficial Patch - YUP
YUP - Base Game + All DLC.esm
TAG: {{BASH: Actors.ACBS, Actors.AIData, Actors.CombatStyle, Actors.DeathItem, Actors.Stats, C.Light, C.Owner, C.Water, Deflst, Delev, Destructible, Factions, Eyes, Graphics, Hair, Invent, Names, Relev, Scripts, Sound, Stats}}
YUP - Base Game.esm
YUP - Dead Money.esm
YUP - Honest Hearts.esm
YUP - Old World Blues.esm
YUP - Lonesome Road.esm
YUP - Gun Runners Arsenal.esm
YUP - Courier's Stash.esm
Machienzo-PreOrdAlt#1.esm
IFNOT VAR(NVAMP) MOD: Machienzo - NPC Cosmetic Fixes - Ver 1.55.esm
TAG: {{BASH: NpcFaces, Hair, Eyes, Voice-M, Voice-F, Body-M, Body-F, R.Teeth, R.Mouth}}
INC: Old, update to NVCE.
IFNOT VAR(NVAMP) MOD: Machienzo - NPC Cosmetic Fixes - Ver 1.57.esm
TAG: {{BASH: NpcFaces, Hair, Eyes, Voice-M, Voice-F, Body-M, Body-F, R.Teeth, R.Mouth}}
SAY: Old, update to NVCE.
IFNOT VAR(NVAMP) MOD: Machienzo - NPC Cosmetic Fixes.esm
TAG: {{BASH: NpcFaces, Hair, Eyes, Voice-M, Voice-F, Body-M, Body-F, R.Teeth, R.Mouth}}
SAY: Old, update to NVCE.
IFNOT VAR(NVAMP) MOD: NVCE Main.esm
TAG: {{BASH: Actors.ACBS, Actors.AIPackages, Invent, NPC.Race, NpcFaces}}
IFNOT VAR(NVAMP) MOD: NVCE Main (Faces Only).esm
TAG: {{BASH: Actors.ACBS, Deactivate, Filter, NPC.Race, NpcFaces}}
OFT_Merge_All.esm
SAY: Outdated. Consider using the latest version of Mission Mojave - Ultimate Edition instead.
INC: All other OFT plugins are merged with it.
OFT_Merge_Base.esm
SAY: Outdated. Consider using the latest version of Mission Mojave - Ultimate Edition instead.
INC: OFT_Merge_All.esm
INC: OFT_Base.esp
INC: OFT_Base_Interiors.esp
INC: OFT_IWR_Base.esp
INC: OFT_Coordinate_Finder.esp
OFT_Merge_HonestHearts.esm
SAY: Outdated. Consider using the latest version of Mission Mojave - Ultimate Edition instead.
INC: OFT_Merge_All.esm
INC: OFT_HonestHearts.esp
INC: OFT_HonestHearts_Interiors.esp
OFT_Merge_OldWorldBlues.esm
SAY: Outdated. Consider using the latest version of Mission Mojave - Ultimate Edition instead.
INC: OFT_Merge_All.esm
INC: OFT_OldWorldBlues.esp
INC: OFT_IWR_OldWorldBlues.esp
Ambient Temperature.esm
AmmoSpreadEffectFixer.esm
IFNOT VAR(NVSE) REQ: New Vegas Script Extender
Companion Core.esm
IFNOT VAR(NVSE) REQ: New Vegas Script Extender
SAY: Loaded early in the event Companion .esm mods require this.
IWR.esm
SAY: Loaded early to let other mods override boundaries if needed.
SAY: Does the same thing as OWNB - Open World.esm; Use one or the other.
INC: These resources are now in OFT_IWR_Base.esp
IFNOT VAR(NVAMP) MOD: IWS-Core.esm
TAG: {{BASH: Delev}}
SAY: Loaded early to let other mods override spawn points if needed.
NosCo Companion System.esm
SAY: Loaded early in the event Companion .esm mods require this.
OWNB - Open World.esm
SAY: Loaded early to let other mods override boundaries if needed.
SAY: Does the same thing as IWR.esm; Use one or the other.
RBX.esm
SAY: Needs to be before any mod using a reloading bench including a lot of house mods.
RRCompanionVault.esm
SAY: Loaded early in the event Companion .esm mods require this.
FNVToolkit.esm
20th Century Weapons.esm
ACM NCCS Companion Wheel.esm
REQ: NosCo Companion System.esm
Achievement Remover.esm
Active Wasteland.esm
AccuRifles.esm
REQ: NVSE
Advanced Recon Tech.esm
Alice Armor.esm
Badlands.esm
BinocularsOverhaul.esm
IFNOT VAR(NVAMP) MOD: BoulderCityFaceliftProject.esm
CALIBR.esm
IFNOT VAR(NVAMP) MOD: Caliber.esm
TAG: {{BASH: Delev, Graphics, Invent, Names, Stats}}
IFNOT VAR(NVAMP) MOD: HonestHearts-CaliberX.esm
IFNOT VAR(HH) REQ: HonestHearts.esm
IFNOT VAR(NVAMP) MOD: CaliberXhonesthearts.esm
IFNOT VAR(HH) REQ: HonestHearts.esm
TAG: {{BASH: Deflst, Delev, Invent, Names}}
IFNOT VAR(NVAMP) MOD: CaliberXgunrunners.esm
TAG: {{BASH: Invent, Names}}
campgolfharbor-fortified.esm
IFNOT VAR(NVAMP) MOD: CFWNV.esm
IFNOT VAR(NVAMP) MOD: CFWNV-DLC.esm
IFNOT VAR(DM) || IFNOT VAR(HH) REQ: DeadMoney.esm, HonestHearts.esm
CHEMS.esm
IFNOT VAR(NVAMP) MOD: CINEMATECH.esm
REQ: New Vegas Script Extender and The Mod Configuration Menu for Version 1.5+
CompanionInfAmmo.esm
Companion Share & Recruit.esm
REQ: New Vegas Script Extender and Companion Core.esm
Corvega.esm
CreatureAdditions.esm
Creature Add-On XIII.esm
IFNOT VAR(NVAMP) MOD: dangame.esm
DarNifiedUI.esm
decwithreg.esm
Decrucifixion.esm
Detect Traps.esm
Docs Sexy Nurse.esm
domecity.esm
domecity_Kaz_plugin.esm
drgNV - Melissa Companion.esm
DWCNV.esm
DXEAmigoCafeNV.esm
EnclaveCommanderMarine.esm
EnergyShield.esm
Eve.esm
IF CHECKSUM("Eve.esm", A4084FA6) SAY: Recommended that you upgrade to the official EVE FNV mod.
IFNOT CHECKSUM("Eve.esm", A4084FA6) REQ: RRCompanionVault.esm
EVE-900.esm
IFNOT VAR(NVAMP) MOD: EZ_CompanionNVSE.esm
IFNOT VAR(NVAMP) MOD: EZ_CompanionNVSE_Killable_Normal.esm
SAY: Old
IFNOT VAR(NVAMP) MOD: EZ_Face_TEMPLATE.esm
IFNOT VAR(NVAMP) MOD: OutfitsReColorNVMaster.esm
FalloutNV_Camera_Control.esm
Fiends, With Style.esm
TAG: {{BASH: Delev}}
FONVAMoreSpawns.esm
FNVChristmasSpecial.esm
FPT EDE Lings Lisbet Brunette.esm
FreesideOpen.esm
IFNOT VAR(NVAMP) MOD: FOOK - New Vegas.esm
TAG: {{BASH: Deflst, Delev, Graphics, Names, Relev, Sound, Stats, Scripts}}
IFNOT VAR(NVAMP) MOD: FOOK - New Vegas DLCs.esm
IFNOT VAR(DM) || IFNOT VAR(HH) REQ: DeadMoney.esm, HonestHearts.esm
Frequency.esm
Frys_Freehold.esm
GaussAmmo.esm
Ghouls Attack Test.esm
Goodsprings Hideout.esm
GunSmith.esm
HAM-Spawns.esm
Improved Lucky 38-Suite 2.0.esm
Inventory Access.esm
IFNOT VAR(PN-C) MOD: JIP Selective-Fire.esm
Kaya47NF.esm
LDFemalePowerArmorPack.esm
INC: LDFemalePowerArmorPack.esp
Lucky38Suite_Reloaded.esm
LW Companion.esm
SAY: The custom esp file that is created by this mod needs to be sorted manually. Place after any beauty pack or hair mods.
IFNOT VAR(NVAMP) MOD: Mo'.esm
REQ: Caliber.esm and NVSE Version 1 Beta 6 or newer.
Military Explansion Program.esm
Military NV Backpacks.esm
M.M.A.T - Core Module.esm
Moddable Unique Weps.esm
TAG: {{BASH: WeaponMods}}
INC: Moddable Unique Weps.esp
IFNOT VAR(NVAMP) MOD: AWorldOfPain(Preview).esm
TAG: {{BASH: Invent, Deflst}}
IFNOT VAR(NVAMP) MOD: AWorldOfPain(LowLoot).esm
SAY: Outdated. Consider using the latest version along with the low loot patches instead.
IFNOT VAR(NVAMP) MOD: MoMod.esm
TAG: {{BASH: Relev}}
INC: monsterrach.esp
IFNOT VAR(NVAMP) MOD: More Perks.esm
IFNOT VAR(NVAMP) MOD: More Perks for Companions.esm
IFNOT VAR(NVAMP) MOD: More Perks for Dead Money.esm
IFNOT VAR(DM) REQ: DeadMoney.esm and More Perks.esm
IFNOT VAR(NVAMP) MOD: More Perks for Honest Hearts.esm
IFNOT VAR(HH) REQ: HonestHearts.esm and More Perks.esm
IFNOT VAR(NVAMP) MOD: More Perks for Old World Blues.esm
IFNOT VAR(OWB) REQ: OldWorldBlues.esm and More Perks.esm
IFNOT VAR(NVAMP) MOD: More Traits.esm
IFNOT VAR(NVAMP) MOD: More Challenges.esm
New Vegas Error Corrections Complete - NO DLC.esm
IF VAR(MM) INC: Mission Mojave - Ultimate Edition.esp
New Vegas Error Corrections Complete - DLC + GRA.esm
New Vegas Error Corrections Complete - DLC + GRA + NVCE + MM.esm
New Vegas Error Corrections BugFixes - NO DLC.esm
IF VAR(MM) INC: Mission Mojave - Ultimate Edition.esp
New Vegas Error Corrections BugFixes - DLC + GRA.esm
IF VAR(MM) INC: Mission Mojave - Ultimate Edition.esp
New Vegas Error Corrections BugFixes - DLC + GRA + NVCE + MM.esm
IF VAR(MM) INC: Mission Mojave - Ultimate Edition.esp
NVEC Complete.esm
NVEC Complete + NVCE.esm
NVEC BugFixes.esm
NVEC BugFixes + NVCE.esm
NCCS Nos' Premade Companions.esm
REQ: NosCo Companion System.esm
ACM Fem Fatales of FO3.esm
ACMFemFatalesMore.esm
NPC Project.esm
Nevada Skies.esm
NevadaSkies.esm
NSkies - Vanilla Edition.esm
TAG: {{BASH: C.Climate, C.Light}}
SAY: Choose only one of NSkies - Vanilla Edition.esm and NSkies URWLified.esm, not both
NSkies URWLified.esm
TAG: {{BASH: C.Climate, C.Light}}
SAY: Choose only one of NSkies - Vanilla Edition.esm and NSkies URWLified.esm, not both
NV Child - Shojo Headgear.esm
NVInteriors_Core.esm
NVInteriors_WastelandEditon.esm
SAY: Choose only one of NVInteriors_WastelandEditon.esm and NVInteriors_WastelandEditonAWOP.esm, not both
NVInteriors_WastelandEditonAWOP.esm
SAY: Choose only one of NVInteriors_WastelandEditon.esm and NVInteriors_WastelandEditonAWOP.esm, not both
NVInteriors_ComboEdition.esm
REQ: NVInteriors_Core.esm
SAY: Merge of NVInteriors_WastelandEdition, NVInteriorsUrbanEdition, and NVInteriors_Tweeks
INC: NVInteriors_ComboEdition_AWOP.esm
TAG: {{BASH: Graphics}}
NVInteriors_ComboEdition_AWOP.esm
REQ: NVInteriors_Core.esm
SAY: Merge of NVInteriors_WastelandEdition, NVInteriorsUrbanEdition, and NVInteriors_Tweeks
INC: NVInteriors_ComboEdition.esm
NVInteriors_Urban_Edition.esm
REQ: NVInteriors_Core.esm
NVInteriors_Urban_Edition_AWOP.esm
Interior Lighting Overhaul - Core.esm
TAG: {{BASH: C.Climate, C.Light, C.Owner, Destructible}}
Interior Lighting Overhaul - L38PS.esm
TAG: {{BASH: C.Light}}
NVR - Extra Actions Lib.esm
NVStripOpen.esm
NVR-Strip.esm
PipboyRemover.esm
Playthings.esm
Primary Needs HUD.esm
IFNOT VAR(NVAMP) MOD: Project Nevada - Core.esm
TAG: {{BASH: Invent}}
IFNOT VAR(NVSE) REQ: New Vegas Script Extender
IFNOT VAR(NVAMP) MOD: Project Nevada - Equipment.esm
TAG: {{BASH: Actors.ACBS, Delev, Graphics, Invent, Names, Relev, Scripts, Stats}}
REQ: New Vegas Script Extender and Project Nevada - Core.esm
IFNOT VAR(NVAMP) MOD: Project Nevada - Extra Options.esm
IF VAR(PN-C) MOD: JIP Selective-Fire.esm
ProjectBrazil.esm
Psiclones.esm
TAG: {{BASH: Names}}
ReactivePeople.esm
rePopulated Wasteland.esm
RH_IRONSIGHTS_NV.esm
RobCo Certified.esm
Run the Lucky 38.esm
RZW_Master.esm
RZW_Television.esm
REQ: RZW_Master.esm
SCAV.esm
SelectFire.esm
IFNOT VAR(NVSE) REQ: New Vegas Script Extender
Selective Fire.esm
IFNOT VAR(NVSE) REQ: New Vegas Script Extender
Sexout.esm
SexoutCommonResources.esm
SexoutSlavery.esm
SexoutLegion.esm
SexoutSlavery.esm
SexoutStore.esm
SomeguySeries.esm
Sortomatic.esm
SpeedyResources.esm
SRDG.esm
Stalker Weapons Pack.esm
SunnyCompanion.esm
SAY: Outdated. Consider Updating.
Survivalist Bunker.esm
T6M Equipment Replacer NV.esm
TAG: {{BASH: Graphics, Names}}
TAC-SHOP.esm
TalonPack.esm
IFNOT VAR(NVAMP) MOD: Tales from the Burning Sands.esm
IF CHECKSUM("Tales from the Burning Sands.esm", 35F7BAE7) DIRTY: 17 ITM, 0 UDR records. Needs "http://newvegas.nexusmods.com/mods/34703 FNVEdit" cleaning. A cleaning guide is available "http://www.creationkit.com/TES5Edit_Cleaning_Guide_-_TES5Edit here".
TAG: {{BASH: Factions, Names, Relev, Scripts}}
The.Armory.esm
Thermal Vision.esm
IFNOT VAR(NVAMP) MOD: The Roost.esm
TSC Vegas.esm
VMods - Master.esm
War Never Changes.esm
WARZONES - Misanthropy Pure.esm
WARZONES Respawner.esp
TAG: {{BASH: Actors.ACBS, Actors.AIPackages}}
WARZONES RespawnerLITE.esp
TAG: {{BASH: Actors.ACBS, Actors.AIPackages}}
IFNOT VAR(NVAMP) MOD: Weapon Mod Expansion.esm
TAG: {{BASH: Names}}
IFNOT VAR(NVAMP) MOD: WME - Dead Money.esm
IFNOT VAR(DM) || IFNOT VAR(WME) IFNOT VAR(DM) REQ: DeadMoney.esm and Weapon Mod Expansion.esm
IFNOT VAR(NVAMP) MOD: WME - Honest Hearts.esm
IFNOT VAR(HH) || IFNOT VAR(WME) IFNOT VAR(HH) REQ: HonestHearts.esm and Weapon Mod Expansion.esm
IFNOT VAR(NVAMP) MOD: WME - Old World Blues.esm
IFNOT VAR(OWB) || IFNOT VAR(WME) IFNOT VAR(OWB) REQ: OldWorldBlues.esm and Weapon Mod Expansion.esm
IFNOT VAR(NVAMP) MOD: WME - GRA.esm
IFNOT VAR(GRA) || IFNOT VAR(WME) IFNOT VAR(GRA) REQ: GunRunnersArsenal.esm and Weapon Mod Expansion.esm
IFNOT VAR(NVAMP) MOD: WME - GRA Light.esm
IFNOT VAR(GRA) || IFNOT VAR(WME) IFNOT VAR(GRA) REQ: GunRunnersArsenal.esm and Weapon Mod Expansion.esm
IFNOT VAR(NVAMP) MOD: WME - DLCs.esm
IFNOT VAR(DLC) || IFNOT VAR(WME) REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm and Weapon Mod Expansion.esm
INC: WME - Dead Money.esm, WME - Honest Hearts.esm, WME - Old World Blues.esm
Weapons.of.the.New.Millenia.esm
WMVM.esm
wsex.esm
Afterschool Special.esm
IFNOT VAR(NVAMP) MOD: ELECTRO-CITY - CompletedWorkorders.esm
TAG: {{BASH: Actors.ACBS, Actors.AIData, Actors.AIPackages, Destructible, Invent, Names, NpcFaces, Stats}}
IFNOT VAR(NVAMP) MOD: ELECTRO-CITY - Highways and Byways.esm
Clean-Deluxe FNV.esm
INC: Performance of the Gods.esp
aHUD.esm
IFNOT VAR(NVSE) REQ: New Vegas Script Extender
IFNOT VAR(NVAMP) MOD: iHUD.esm
IFNOT VAR(NVSE) REQ: New Vegas Script Extender
oHUD.esm
IFNOT VAR(NVSE) REQ: New Vegas Script Extender
INC: aHUD.esm, iHUD.esm, Primary Needs HUD.esm
UWHNV-Core.esm
IFNOT VAR(NVSE) REQ: New Vegas Script Extender
// nVamp stuff
IF VAR(NVAMP) MOD: Machienzo - NPC Cosmetic Fixes - Ver 1.55.esm
TAG: {{BASH: NpcFaces, Hair, Eyes, Voice-M, Voice-F, Body-M, Body-F, R.Teeth, R.Mouth}}
SAY: Old, update to NVCE.
IF VAR(NVAMP) MOD: Machienzo - NPC Cosmetic Fixes - Ver 1.57.esm
TAG: {{BASH: NpcFaces, Hair, Eyes, Voice-M, Voice-F, Body-M, Body-F, R.Teeth, R.Mouth}}
SAY: Old, update to NVCE.
IF VAR(NVAMP) MOD: Machienzo - NPC Cosmetic Fixes.esm
TAG: {{BASH: NpcFaces, Hair, Eyes, Voice-M, Voice-F, Body-M, Body-F, R.Teeth, R.Mouth}}
SAY: Old, update to NVCE.
IF VAR(NVAMP) MOD: NVCE Main.esm
TAG: {{BASH: Actors.ACBS, Actors.AIPackages, Invent, NPC.Race, NpcFaces}}
IF VAR(NVAMP) MOD: NVCE Main (Faces Only).esm
TAG: {{BASH: Actors.ACBS, Deactivate, Filter, NPC.Race, NpcFaces}}
IF VAR(NVAMP) MOD: IWS-Core.esm
TAG: {{BASH: Delev}}
IF VAR(NVAMP) MOD: Tales from the Burning Sands.esm
IF CHECKSUM("Tales from the Burning Sands.esm", 35F7BAE7) DIRTY: 17 ITM, 0 UDR records. Needs "http://newvegas.nexusmods.com/mods/34703 FNVEdit" cleaning. A cleaning guide is available "http://www.creationkit.com/TES5Edit_Cleaning_Guide_-_TES5Edit here".
TAG: {{BASH: Factions, Names, Relev, Scripts}}
IF VAR(NVAMP) MOD: EZ_CompanionNVSE.esm
IF VAR(NVAMP) MOD: EZ_CompanionNVSE_Killable_Normal.esm
SAY: Old
IF VAR(NVAMP) MOD: EZ_Face_TEMPLATE.esm
IF VAR(NVAMP) MOD: OutfitsReColorNVMaster.esm
IF VAR(NVAMP) MOD: More Perks.esm
IF VAR(NVAMP) MOD: More Perks for Companions.esm
IF VAR(NVAMP) MOD: More Perks for Dead Money.esm
IFNOT VAR(DM) REQ: DeadMoney.esm and More Perks.esm
IF VAR(NVAMP) MOD: More Perks for Honest Hearts.esm
IFNOT VAR(HH) REQ: HonestHearts.esm and More Perks.esm
IF VAR(NVAMP) MOD: More Perks for Old World Blues.esm
IFNOT VAR(OWB) REQ: OldWorldBlues.esm and More Perks.esm
IF VAR(NVAMP) MOD: More Traits.esm
IF VAR(NVAMP) MOD: More Challenges.esm
IF VAR(NVAMP) MOD: Project Nevada - Core.esm
TAG: {{BASH: Invent}}
IFNOT VAR(NVSE) REQ: New Vegas Script Extender
IF VAR(NVAMP) MOD: iHUD.esm
IFNOT VAR(NVSE) REQ: New Vegas Script Extender
IF VAR(NVAMP) MOD: ELECTRO-CITY - CompletedWorkorders.esm
TAG: {{BASH: Actors.ACBS, Actors.AIData, Actors.AIPackages, Destructible, Invent, Names, NpcFaces, Stats}}
IF VAR(NVAMP) MOD: ELECTRO-CITY - Highways and Byways.esm
IF VAR(NVAMP) MOD: CINEMATECH.esm
IFNOT VAR(NVSE) REQ: New Vegas Script Extender
IF VAR(NVAMP) MOD: Caliber.esm
TAG: {{BASH: Invent, Names}}
IF VAR(NVAMP) MOD: CFWNV.esm
IF VAR(NVAMP) MOD: Weapon Mod Expansion.esm
TAG: {{BASH: Names}}
IF VAR(NVAMP) MOD: FOOK - New Vegas.esm
TAG: {{BASH: Deflst, Delev, Graphics, Names, Relev, Sound, Stats, Scripts}}
IF VAR(NVAMP) MOD: FOOK - New Vegas DLCs.esm
IF VAR(NVAMP) MOD: Mo'.esm
REQ: Caliber.esm and NVSE Version 1 Beta 6 or newer.
nVamp - Very Voracious Vermin.esm
nVamp - Really Awesome Travels.esm
nVamp - Pathway To Glory.esm
nVamp - Art Of War.esm
nVamp - Gizmos n' Gadgets.esm
nVamp - Effects nVamped.esm
SAY: Optional for the nVamp graphics effects.
nVamp - Hardcore nVamped.esm
REQ: Separate resource files.
SAY: Optional for a more difficult experience.
nVamp - Hardcore Really nVamped.esm
REQ: nVamp - Hardcore nVamped.esm, nVamp - Hardcore nVamped.esp and optional resource files.
SAY: Optional for a more difficult experience.
nVamp - Crafted And Dangerous.esm
nVamp - Combat nVamped.esm
nVamp - More Of Everything.esm
nVamp - Performance nVamped.esm
SAY: Optional file designed to increase game performance for those with older computers.
nVamp - DLCs.esm
nVamp - Dead Money.esm
nVamp - Dead Money - WME.esm
nVamp - Dead Money - WMX.esm
nVamp - Core.esm
nVamp - Vaernus's Voracious Vermin.esm
SAY: Old, consider upgrading to nVamp version 0.15
// nVamp end
IF VAR(NVAMP) MOD: HonestHearts-CaliberX.esm
IFNOT VAR(HH) REQ: HonestHearts.esm
TAG: {{BASH: Names}}
IF VAR(NVAMP) MOD: BoulderCityFaceliftProject.esm
IF VAR(NVAMP) MOD: dangame.esm
IF VAR(NVAMP) MOD: The Roost.esm
IF VAR(NVAMP) MOD: AWorldOfPain(Preview).esm
TAG: {{BASH: Invent, Deflst}}
IF VAR(NVAMP) MOD: AWorldOfPain(LowLoot).esm
SAY: Outdated. Consider using the latest version along with the low loot patches instead.
IF VAR(NVAMP) MOD: MoMod.esm
TAG: {{BASH: Relev}}
INC: monsterrach.esp
IF VAR(NVAMP) MOD: Project Nevada - Equipment.esm
TAG: {{BASH: Actors.ACBS, Delev, Graphics, Invent, Names, Relev, Scripts, Stats}}
REQ: New Vegas Script Extender and Project Nevada - Core.esm
IF VAR(NVAMP) MOD: Project Nevada - Extra Options.esm
IF VAR(NVAMP) MOD: CFWNV-DLC.esm
IFNOT VAR(DM) || IFNOT VAR(HH) IFNOT VAR(DM) REQ: DeadMoney.esm and HonestHearts.esm
IF VAR(NVAMP) MOD: WME - Dead Money.esm
IFNOT VAR(DM) || IFNOT VAR(WME) IFNOT VAR(DM) REQ: DeadMoney.esm and Weapon Mod Expansion.esm
IF VAR(NVAMP) MOD: WME - Honest Hearts.esm
IFNOT VAR(HH) || IFNOT VAR(WME) IFNOT VAR(HH) REQ: HonestHearts.esm and Weapon Mod Expansion.esm
IF VAR(NVAMP) MOD: WME - Old World Blues.esm
IFNOT VAR(OWB) || IFNOT VAR(WME) IFNOT VAR(OWB) REQ: OldWorldBlues.esm and Weapon Mod Expansion.esm
IF VAR(NVAMP) MOD: WME - GRA.esm
IFNOT VAR(GRA) || IFNOT VAR(WME) IFNOT VAR(GRA) REQ: GunRunnersArsenal.esm and Weapon Mod Expansion.esm
IF VAR(NVAMP) MOD: WME - GRA Light.esm
IFNOT VAR(GRA) || IFNOT VAR(WME) IFNOT VAR(GRA) REQ: GunRunnersArsenal.esm and Weapon Mod Expansion.esm
IF VAR(NVAMP) MOD: WME - DLCs.esm
IFNOT VAR(DLC) || IFNOT VAR(WME) REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm and Weapon Mod Expansion.esm
IF FILE("WME - Dead Money.esm") || IF FILE("WME - Honest Hearts.esm") || IF FILE("WME - Old World Blues.esm") INC: WME - Dead Money.esm, WME - Honest Hearts.esm, WME - Old World Blues.esm
CCO - Gameplay Changes.esm
CCO - Classic Perks.esm
New Vegas Redesigned.esm
TAG: {{BASH: NpcFaces, Hair, Eyes, Body-M, Body-F}}
New Vegas Redesigned II.esm
TAG: {{BASH: NpcFaces, Hair, Eyes, Body-M, Body-F}}
Lings.esm
TAG: {{BASH: Hair, Eyes}}
IFNOT FILE("RHKGilbertCompanion.esm") MOD: MikotoBeauty.esm
TAG: {{BASH: Hair, Eyes, Graphics}}
Herculine's NCCS Companions Volume 1.esm
IFNOT FILE("Lings.esm") REQ: Lings.esm
Shojo Race Vegas.esm
IFNOT FILE("Lings.esm") REQ: Lings.esm
AngelicaRace.esm
AngelRaces.esm
AEVegas.esm
AngelPark.esm
CodeOfSteelBase.esm
D.E.I.M.O.S..esm
DFB - Random Encounters.esm
FCOMaster.esm
TAG: {{BASH: Actors.ACBS, NpcFaces, NPC.Race}}
LawlessVegas.esm
NV GameStabilizerA8.esm
TAG: {{BASH: NoMerge}}
SAY: Outdated. Consider Updatng.
RedRockRanch.esm
ENDGROUP: ESMs
BEGINGROUP: Earliest
//-----------
// Yuki patch NPC files, need to be loaded the earliest possible position after ESM files.
YUP - NPC Fixes (Base Game).esp
TAG: {{BASH: Actors.ACBS, Actors.AIData, Actors.AIPackages, Actors.CombatStyle, Actors.DeathItem, Actors.Stats, Delev, Factions, Invent, Names, NpcFaces, NPC.Class, NPC.Race, Scripts}}
YUP - NPC Fixes (Base Game + All DLC).esp
TAG: {{BASH: Actors.ACBS, Actors.AIData, Actors.AIPackages, Actors.CombatStyle, Actors.DeathItem, Actors.Stats, Delev, Factions, Invent, Names, NpcFaces, NPC.Class, NPC.Race, Scripts}}
TTW_StashPackOptions.esp
TTW_NoKarmaDCFollowers.esp
TTW_Bobbleheads.esp
TTW_MoreCookingItems.esp
TTW_XPReduction.esp
{FalloutNV v1.2.0.285 [Unpatched Records]}.esp
FalloutNV_lang.esp
SAY: Translation file.
ENDGROUP: Earliest
BEGINGROUP: Unofficial Patches and Fixes
//-----------
MM-Main.esp
SAY: Outdated. Consider using the latest version of Mission Mojave - Ultimate Edition instead.
MM-HonestHearts.esp
SAY: Outdated. Consider using the latest version of Mission Mojave - Ultimate Edition instead.
MM-OldWorldBlues.esp
SAY: Outdated. Consider using the latest version of Mission Mojave - Ultimate Edition instead.
MM-LonesomeRoad.esp
SAY: Outdated. Consider using the latest version of Mission Mojave - Ultimate Edition instead.
MM-InvisibleWallRemover.esp
MM-Coordinate-Gun.esp
Mission Mojave - Ultimate Edition.esp
TAG: {{BASH: Actors.AIPackages, NoMerge, Sound, Stats, Scripts}}
INC: Compiled Patch.esp, Compiled Patch All_DLCs.esp, Community Bugfix Compilation Patch.esp
IFNOT VAR(DLC-G) REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm, GunRunnersArsenal.esm
MMUE - Deutsch.esp
TAG: {{BASH: Actors.AIPackages, NoMerge, Sound, Stats, Scripts}}
INC: Compiled Patch.esp, Compiled Patch All_DLCs.esp, Community Bugfix Compilation Patch.esp, Mission Mojave - Ultimate Edition.esp
IFNOT VAR(DLC-G) REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm, GunRunnersArsenal.esm
Mission Mojave - Ultimate Edition Plus.esp
IFNOT VAR(MM) REQ: Mission Mojave - Ultimate Edition.esp
MMUE+.esp
IFNOT VAR(MM) REQ: Mission Mojave - Ultimate Edition.esp
SAY: Plugin is old. Please update it.
MMUE POP.esp
IFNOT VAR(MM) REQ: Mission Mojave - Ultimate Edition.esp
MMUE-GRA-Standard.esp
IFNOT VAR(MM) REQ: Mission Mojave - Ultimate Edition.esp
MMUE-Tools-InvisibleWallRemover.esp
IFNOT VAR(MM) REQ: Mission Mojave - Ultimate Edition.esp
INC: IWR.esm
MMUE-Tools-CoordinateGun.esp
IFNOT VAR(MM) REQ: Mission Mojave - Ultimate Edition.esp
MMUE-CP-Electrocity.esp
REQ: ELECTRO-CITY - CompletedWorkorders.esm
MMUE-CP-NVInteriors.esp
REQ: NVInteriors_ComboEdition.esm
MMUE-CP-rePopulated.esp
REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm, rePopulated Wasteland.esm
Community Bugfix Compilation Patch.esp
TAG: {{BASH: Actors.AIPackages, Delev, Relev, Sound, Stats, Scripts, Invent}}
INC: Compiled Patch.esp, Compiled Patch All_DLCs.esp, Mission Mojave - Ultimate Edition.esp
SAY: Outdated. Consider using the latest version of Mission Mojave - Ultimate Edition instead.
CBC Dead Money Patch.esp
IFNOT VAR(DM) REQ: DeadMoney.esm
INC: Compiled Patch - DeadMoney.esp
Compiled Patch.esp
TAG: {{BASH: Actors.AIPackages, Delev, Relev, Sound, Stats, Scripts}}
INC: Community Bugfix Compilation Patch.esp, Compiled Patch All_DLCs.esp, Mission Mojave - Ultimate Edition.esp
Compiled Patch - DeadMoney.esp
IFNOT VAR(DM) REQ: DeadMoney.esm
INC: CBC Dead Money Patch.esm AND CBC Dead Money Patch.esp
Compiled Patch - HonestHearts.esp
IFNOT VAR(HH) REQ: HonestHearts.esm
Compiled Patch - Old World Blues.esp
IFNOT VAR(OWB) REQ: OldWorldBlues.esm
Compiled Patch - OldWorldBlues.esp
IFNOT VAR(OWB) REQ: OldWorldBlues.esm
Compiled Patch - LonesomeRoad.esp
IFNOT VAR(LR) REQ: LonesomeRoad.esm
Compiled Patch - Gunrunners Arsenal.esp
IFNOT VAR(GRA) REQ: GunRunnersArsenal.esm
Compiled Patch All_DLCs.esp
IFNOT VAR(DLC-G) REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm, GunRunnersArsenal.esm
INC: Compiled Patch.esp, Community Bugfix Compilation Patch.esp, Mission Mojave - Ultimate Edition.esp
SAY: Outdated. Consider using the latest version of Mission Mojave - Ultimate Edition instead.
NVEC Compiled Patch PATCH.esp
NVEC Compiled Patch PATCH - DLC.esp
IFNOT VAR(DM) REQ: Dead Money.esm, Compiled Patch All_DLCs.esp
26_fixes.esp
Abandoned Bunker Fix.esp
AndyRaulFix.esp
Atomic Wrangler Suite Fix.esp
BathFix.esp
BlackMountainRadioRhonda.esp
BMNeilFix.esp
Broad Machete VATS Fix.esp
IFNOT FILE("TribalPack.esm") REQ: TribalPack.esm
BoxFix.esp
BrotherhoodArmorDistributionFix.esp
Brotherhood Fix.esp
CaesarsFavorFoeHireFix.esp
CaravanCardFix.esp
SAY: Obsolete with latest patch
ClassicPackFix.esp
CrimsonCaravanInvoiceBugFix.esp
CompanionHoldouts.esp
Companion Hostility Fix.esp
CompanionWeaponCasinoFix.esp
Davisonnoattack.esp
DeadMoneyEquipmentFixes.esp
IFNOT VAR(DM) REQ: DeadMoney.esm
DeadMoneyGasFix.esp
IFNOT VAR(DM) REQ: DeadMoney.esm
DeadMoneyWeaponFixes.esp
IFNOT VAR(DM) REQ: DeadMoney.esm
Distant Gunfire Sound Fix V2.1 - Machienzo.esp
DistantCompanionsFix.esp
DLM_Dead Money Deans Blackmail holo fix.esp
IFNOT VAR(DM) REQ: DeadMoney.esm
DLM_QuestItemsFix_1.3b_Eng.esp
SAY: Outdated. Consider Updating.
DLM_QuestItemsFix_1.3b-DLC_DM.esp
IFNOT VAR(DM) REQ: DeadMoney.esm
SAY: Outdated. Consider Updating.
DLM_QuestItemsFix_1.4.esp
DLM_QuestItemsFix_1.4-DLC_DM.esp
IFNOT VAR(DM) REQ: DeadMoney.esm
DLM_QuestItemsFix_1.4-DLC_HH.esp
IFNOT VAR(HH) REQ: HonestHearts.esm
DonationFix.esp
ED-EUpgradeInventoryFix.esp
SAY: Obsolete with latest patch
FactionArmorFixes.esp
FatigueWeaponsFix.esp
Fix - Boulder City Negotiator.esp
Fix - Laser Rifle Beam Splitter Item Mod (v2).esp
FNV-BeardEyebrowFixV1_0.esp
FOB.esp
Followers-NCR Alliance Fix.esp
Followers+NCR=Alliance.fix.esp
Four Eyes Fix.esp
FreesideKingsGiftGiverFix.esp
FreesideKingsGiftGiverFix14Days.esp
FreesideKingsGiftGiverFix999Days.esp
headgearfix.esp
HeliosLaserTripWireFix.esp
HuntingRifleMeshFixes.esp
IsolatingVirusFix.esp
I Put A Spell On You Fix.esp
I Put a Spell on You - Temporary Fix.esp
I've Got Sturdy Caravan Shotgun Fix.esp
JacknDianeFix.esp
TAG: {{BASH: Invent}}
JBrightExodusFix.esp
jsawyer.esp
Khan Rumor Fix.esp
L38Aggressivefix.esp
LFox Sink Bug Fixes.esp
LFox Stealth Suit Bug Fixes.esp
Lucky38ContainersFix.esp
Lucky 38 Suite Respawn Fix.esp
Machienzo-[DM]ReturnItemFix+SMArmorFix.esp
MarcusInvFix.esp
TAG: {{BASH: Invent}}
McCarranFixes.esp
MeyersFix.esp
MissFortuneFix.esp
Motor-RunnerJackDianeFix.esp
MrCuddles.esp
MushroomCloudFix.esp
SAY: Obsolete with latest patch
NCRRCombatFix.esp
new vegas radios.esp
NV_Fixpack_Perks.esp
NV_Fixpack_Items.esp
NV_Fixpack_Companions.esp
NV Error Fixes DLCs 1.0.esp
SAY: Old, update to latest version.
NV Error Fixes FNV 1.1.esp
SAY: Old, update to latest version.
NV Error Fixes FNV 1.1 - FOOK Patch.esp
SAY: Old, update to latest version.
NV Error Fixes Merged 1.1.esp
SAY: Old, update to latest version.
NV Error Corrections FNV.esp
SAY: Old, update to latest version 1.7+.
NV Error Corrections FNV - FOOK Patch.esp
IFNOT VAR(FOOK) REQ: FOOK - New Vegas.esm
SAY: Old, update to latest version 1.7+.
NV Error Corrections Merged.esp
IFNOT VAR(DLC) REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm
SAY: Old, update to latest version 1.7+.
NV Error Corrections Merged - FOOK Patch.esp
REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm, FOOK - New Vegas.esm
SAY: Old, update to latest version 1.7+.
New Vegas Error Corrections - NO DLC.esp
New Vegas Error Corrections - DLC.esp
IFNOT VAR(DLC) REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm
New Vegas Error Corrections - DLC + GRA.esp
IFNOT VAR(DLC-G) REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm, GunRunnersArsenal.esm
New Vegas Error Corrections - DLC - GRS.esp
New Vegas Error Corrections - GRA ONLY.esp
IFNOT VAR(GRA) REQ: GunRunnersArsenal.esm
NVEC Enhancements.esp
NVEC Reduce CTD.esp
NVEC Complete FOOK Patch.esp
IFNOT VAR(DLC-G) || IFNOT VAR(FOOK) REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm, GunRunnersArsenal.esm, FOOK - New Vegas.esm
NVEC FOOK PATCH - DLC.esp
REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm, FOOK - New Vegas.esm
NVEC FOOK PATCH - NO DLC.esp
IFNOT VAR(FOOK) REQ: FOOK - New Vegas.esm
NVEC FOOK Patch - DLC + GRA.esp
IFNOT VAR(DLC-G) || IFNOT VAR(FOOK) REQ: FOOK - New Vegas.esm, DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm, GunRunnersArsenal.esm
NVEC LINGS PATCH - DLC.esp
IFNOT VAR(DLC-G) || IFNOT FILE("Lings.esm") REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm, GunRunnersArsenal.esm, Lings.esm
NVEC LINGS PATCH - DLC + GRA.esp
IFNOT VAR(DLC-G) || IFNOT FILE("Lings.esm") REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm, GunRunnersArsenal.esm, Lings.esm
NVEC Complete Lings Patch.esp
IFNOT VAR(DLC) || IFNOT FILE("Lings.esm") REQ: DeadMoney.esm, HonestHearts.esm, OldWorldBlues.esm, LonesomeRoad.esm, Lings.esm
NVEC LINGS PATCH - NO DLC.esp
IFNOT FILE("Lings.esm") REQ: Lings.esm
NVEC Extras.esp
Performance Of The Gods.esp
NVVariousFixes - Honest Hearts.esp
IFNOT VAR(HH) REQ: HonestHearts.esm
OWB Companion Teleport.esp
IFNOT VAR(OWB) REQ: OldWorldBlues.esm
OWB Moddable FIDO.esp
IFNOT VAR(OWB) REQ: OldWorldBlues.esm
OWB More Vendor Caps.esp
IFNOT VAR(OWB) REQ: OldWorldBlues.esm
OWB Stealth Field Suit.esp
IFNOT VAR(OWB) REQ: OldWorldBlues.esm
OWB Valence Extra.esp
IFNOT VAR(OWB) REQ: OldWorldBlues.esm
OWB Valence Mask.esp
IFNOT VAR(OWB) REQ: OldWorldBlues.esm
PackWeaponsFix.esp
Primm_Rumor_Fix.esp
RadioComputerPartsFix.esp
Raul Ranger Andy fix.esp
ReloadBugFix.esp
SAY: Obsolete with latest patch
Reload Speed Game Start Fix.esp
IFNOT VAR(NVSE) REQ: "http://nvse.silverlock.org/ New Vegas Script Extender"
RepairKitFix.esp
SAY: This fix does not currently work for custom weapon durability mods which increase the weapon's health by anything other than 50%.
RHKBooneWarnFix.esp
ScotchBottleFix.esp
TravelingMerchantFix.esp
Ultra-LuxeFixes.esp
Vance's Gun Quest Full Patch.esp
Vance's Gun Quest Patch.esp
vangraf fix.esp
VanGraff Vendor Fix.esp
VanGraffHostilityQuestFix.esp
Vault11HouseFix.esp
Vault22ElevatorFix.esp
Vault3DoorNameFix.esp
Vault34Fix.esp
VendorAmmo45-70Fix.esp
SAY: Obsolete with latest patch
VendorBulkBuyFixer.esp
VMS44Fixed.esp
WeAllGoTogether.esp
Weathered10mmFixes.esp
WorkingCrimsonCaravanTraders.esp
WRObjectFixes.esp
PO10mmFix.esp
BEGINGROUP: Operation Fixed Terrain
OFT_Merge_All.esp
INC: All other OFT plugins are merged with it.
OFT_Merge_Base.esp
INC: OFT_Merge_All.esp
INC: OFT_Base.esp
INC: OFT_Base_Interiors.esp
INC: OFT_IWR_Base.esp
INC: OFT_Coordinate_Finder.esp
OFT_Merge_HonestHearts.esp
INC: OFT_Merge_All.esp
INC: OFT_HonestHearts.esp
INC: OFT_HonestHearts_Interiors.esp
OFT_Merge_OldWorldBlues.esp
INC: OFT_Merge_All.esp
INC: OFT_OldWorldBlues.esp
INC: OFT_IWR_OldWorldBlues.esp
OFT_NoIWR_Merge_All.esp
INC: OFT_Merge_All.esp
INC: OFT_Base.esp
INC: OFT_Base_Interiors.esp
INC: OFT_HonestHearts.esp
INC: OFT_HonestHearts_Interiors.esp
INC: OFT_OldWorldBlues.esp
INC: OFT_Coordinate_Finder.esp
OFT_NoIWR_Merge_Base.esp
INC: OFT_Merge_All.esp
INC: OFT_Base.esp
INC: OFT_Base_Interiors.esp
INC: OFT_Coordinate_Finder.esp
OFT_Base.esp
INC: OFT_Merge_All.esp
INC: OFT_Merge_Base.esp
OFT_Base_Interiors.esp
INC: OFT_Merge_All.esp
INC: OFT_Merge_Base.esp
OFT_HonestHearts.esp
INC: OFT_Merge_All.esp
INC: OFT_Merge_HonestHearts.esp
OFT_HonestHearts_Interiors.esp
INC: OFT_Merge_All.esp
INC: OFT_Merge_HonestHearts.esp
OFT_OldWorldBlues.esp
INC: OFT_Merge_All.esp
INC: OFT_Merge_OldWorldBlues.esp
OFT_IWR_Base.esp
INC: OFT_Merge_All.esp
INC: OFT_Merge_Base.esp
OFT_IWR_OldWorldBlues.esp
INC: OFT_Merge_All.esp
INC: OFT_Merge_OldWorldBlues.esp
OFT_Coordinate_Finder.esp
INC: OFT_Merge_All.esp
INC: OFT_Merge_Base.esp
OFT_Deutsche_Uebersetzung.esp
REQ: OFT_Merge_All.esp
ENDGROUP: Operation Fixed Terrain
ENDGROUP: Unofficial Patches and Fixes
BEGINGROUP: Early Loading Mods
//-----------
DarNifiedUINV.esp
The Chicken and the Egg.esp
AutoSaverNV.esp
SAY: Do not use with other Auto Savers as they serve the same purpose.
RX-Auto Incremental Save.esp
SAY: Do not use with CASM; has the same purpose.
CASM.esp
SAY: Do not use with Auto Incremental Save; has the same purpose.
Achievement Remover.esp
Arwen_Camera.esp
ASEF - Project Nevada Dynamic Crosshair Patch.esp
REQ: AmmoSpreadEffectFixer.esm and Project Nevada - Core.esm
Automated Reloading Bench.esp
BetterLoadingText.esp
Better Performance for Older PCs - Bundle.esp
BIS - Brumbek's Inventory Sorting.esp
TAG: {{BASH: Names}}
BIS - Dead Money.esp
TAG: {{BASH: Names}}
IFNOT VAR(DM) REQ: DeadMoney.esm
BIS - Honest Hearts.esp
TAG: {{BASH: Names}}
IFNOT VAR(HH) REQ: HonestHearts.esm
BIS - Old World Blues.esp
TAG: {{BASH: Names}}
IFNOT VAR(OWB) REQ: OldWorldBlues.esm
BIS - Lonesome Road.esp
TAG: {{BASH: Names}}
IFNOT VAR(LR) REQ: LonesomeRoad.esm
BIS - Gun Runners Arsenal.esp
TAG: {{BASH: Names}}
IFNOT VAR(GRA) REQ: GunRunnersArsenal.esm
BIS - Community Bugfix Comp ESM.esp
TAG: {{BASH: Names}}
REQ: Community Bugfix Compilation Patch.esm
INC: BIS - Community Bugfix Comp ESP.esp
BIS - CBC Dead Money Patch ESM.esp
TAG: {{BASH: Names}}
IFNOT VAR(DM) REQ: DeadMoney.esm and CBC Dead Money Patch.esm
INC: BIS - CBC Dead Money Patch ESP.esp
BIS - Community Bugfix Comp ESP.esp
TAG: {{BASH: Names}}
REQ: Community Bugfix Compilation Patch.esp
INC: BIS - Community Bugfix Comp ESM.esp
BIS - CBC Dead Money Patch ESP.esp
TAG: {{BASH: Names}}
IFNOT VAR(DM) REQ: DeadMoney.esm and CBC Dead Money Patch.esp
INC: BIS - CBC Dead Money Patch ESM.esp
BIS - Promo DLC Caravan Pack.esp
TAG: {{BASH: Names}}
IFNOT FILE("CaravanPack.esm") REQ: CaravanPack.esm
BIS - Promo DLC Classic Pack.esp
TAG: {{BASH: Names}}
IFNOT FILE("ClassicPack.esm") REQ: ClassicPack.esm
BIS - Promo DLC Mercenary Pack.esp
TAG: {{BASH: Names}}
IFNOT FILE("MercenaryPack.esm") REQ: MercenaryPack.esm
BIS - Promo DLC Tribal Pack.esp
TAG: {{BASH: Names}}
IFNOT FILE("TribalPack.esm") REQ: TribalPack.esm
BIS - CFWNV.esp
TAG: {{BASH: Names}}
REQ: CFWNV.esm
BIS - CFWNV-DLC.esp
TAG: {{BASH: Names}}
IFNOT VAR(HH) REQ: HonestHearts.esm and CFWNV-DLC.esm
BIS - Primary Needs HUD.esp
TAG: {{BASH: Names}}
REQ: Primary Needs HUD.esm
BIS - More Cactus Water Recipes.esp
TAG: {{BASH: Names}}
BIS - Compiled Patch.esp
TAG: {{BASH: Names}}
REQ: Compiled Patch.esp
BIS - Compiled Patch - DeadMoney.esp
TAG: {{BASH: Names}}
REQ: Compiled Patch - DeadMoney.esp
BIS - Compiled Patch - HonestHearts.esp
TAG: {{BASH: Names}}
REQ: Compiled Patch - HonestHearts.esp
Bobblehunt.esp
Bobblehunt (german).esp
BIS - Bobblehunt Patch.esp
TAG: {{BASH: Names}}
REQ: Bobblehunt.esp
CamOne.esp
CameraShakingReduction.esp
Centered 3rd Person Camera.esp
INC: FOOK - New Vegas.esm
Centered 3rd Person Camera - Unraised.esp
INC: FOOK - New Vegas.esm
CFWWpnDmgIncTweaker.esp
REQ: CFWNV.esm and Caliber.esm
Choose_XP.esp
Corvega -Electrocity.esp
REQ: Corvega.esm and ELECTRO-CITY - CompletedWorkorders.esm
DuggelzMenuFix.esp
DynamiCamera.esp
EZ_Force_Killable_NormalMode.esp
EZ_GLUE.esp
FairyRadar.esp