-
Notifications
You must be signed in to change notification settings - Fork 5
/
masterlist.txt
5744 lines (5373 loc) · 154 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/ in 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("FO3 Wanderers Edition - Main File.esm") SET: FWE
IF FILE("FOOK2 - Main.esm") SET: FOOK2
// 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.
// Deprecation message
GLOBAL WARN: BOSS support for Fallout 3 is no longer maintained. Users are strongly advised to use "http://loot.github.io/ LOOT" instead when sorting their Fallout 3 load orders.
BEGINGROUP: ESMs
//------------
Fallout3.esm
Anchorage.esm
ThePitt.esm
StreetLights.esm
SAY: Do not use with latest FOOK2, it is already integrated.
BrokenSteel.esm
TAG: {{BASH: Actors.ACBS,Actors.AIPackages,Relev,C.Water,Delev,Factions,Stats}}
PointLookout.esm
Zeta.esm
Lings.esm
TAG: {{BASH: Hair}}
Unofficial Fallout 3 Patch.esm
TAG: {{BASH: C.Music, Deflst, Delev, Relev, Factions, Invent, Names, Relations, Stats}}
LingsDLC.esm
TAG: {{BASH: Hair, Eyes}}
HairPack.esm
TAG: {{BASH: Hair, Eyes}}
Hairday.esm
RI_Core.esm
FNNsys.esm
TAG: {{BASH: Scripts}}
Inventory Access.esm
IMCN.esm
FaceMe.esm
TAG: {{BASH: NPC.Race, NpcFaces, Hair, Eyes}}
Destruction.esm
TAG: {{BASH: Destructible, Scripts}}
S.T.A.L.K.E.R. Call of D.C..esm
ARSENAL MOD.esm
SShop.esm
FallsChurchMetroFix.esm
ObjectPlacementFix.esm
Phalanx-PointLookout-Navmesh.esm
PointLookout-FollowersGetToGo.esm
REQ: PointLookout.ESM
aHUD.esm
iHUD.esm
The Librarian.esm
TalonExtraArmor.esm
Impervious Power Armour.esm
H.E.R.K..esm
CINEMATECH.esm
CRAFT.esm
CALIBR.esm
xCALIBR.esm
TAG: {{BASH: Names, Graphics, Stats}}
xCALIBRuniverse.esm
TAG: {{BASH: Names, Graphics, Invent, Sound, Stats}}
CRAFTHelper.esm
Project Beauty HD version.esm
IF VAR(FOOK2) ERROR: Old. Download the latest Project Beauty files.
Project Beauty.esm
TAG: {{BASH: NPC.Race, NpcFaces, Hair, Eyes, Voice-M, Voice-F, Body-M, Body-F, R.Teeth, R.Mouth}}
FACE3.esm
TAG: {{BASH: NPC.Race, NpcFaces, Hair, Eyes, Voice-M, Voice-F, Body-M, Body-F, R.Teeth, R.Mouth}}
CFWRv4.esm
TAG: {{BASH: Deflst, Delev, Invent, Names, Graphics, Scripts, Stats}}
20thCenturyWeapons.esm
20th Century Weapons.esm
WeaponRepairKits-Main.esm
Weapon Repair Kits - Final.esm
[DC RANGER ARSENAL v3 MASTER].esm
TAG: {{BASH: Deflst}}
CMRS.esm
CFWR.esm
TAG: {{BASH: Delev, Graphics, Stats, Relev}}
Ammo Bench.esm
Refurbishes [ALL].esm
SAY: Do not use with latest FOOK2, it is already integrated.
Megaton Expansion Project V03.esm
REQ: CALIBR.esm
ArefuExpandedByAzar.esm
AWorldOfPainFO3.esm
Canterbury Commons Interiors Embiggened.esm
tubrrCompound.esm
Big Town Overhaul.esm
COMM.esm
Cotozic's Vault Home.esm
TheInstitute.esm
Vault 101 Revisited.esm
vault64.esm
Bunker72 v3.esm
FOW - The Last Child of Gallifrey v2.esm
The Bunker.esm
UndiscoveredCapital.esm
UndiscoveredCapital - 'Experiencing Turbulence'.esm
MMZombieCemetery.esm
MMFastZombieCemetery-NotRecommended.esm
Vault 101 Revisited.esm
CubeExperimental (EN).esm
Project Genesis.esm
RatTrapRemastered.esm
NewCairo.esm
GNRBuilding_BoS.esm
TAG: {{BASH: Invent}}
All Your Bananas.esm
Mothership Crew.esm
TSC Air Support.esm
Advanced Recon Tech.esm
NecronomiconExMortis 5.6.esm
FortFreeway.esm
Bridge Town.esm
BridgeTown.esm
Alton, IL.esm
Malos_Arena_EV.esm
RoadWardens.esm
TAG: {{BASH: Actors.ACBS, Actors.AIData, Actors.AIPackages, Actors.CombatStyle, Actors.Stats, Factions, Invent, Scripts, ScriptContents}}
EVE.esm
TAG: {{BASH: Graphics, Invent, Sound, Scripts}}
EWE Energy Weapons Enhanced.esm
TAG: {{BASH: Deflst, Graphics, Invent, Relev, Stats, Scripts}}
Apocalypse Armory.esm
FOOK2 - Main.esm
TAG: {{BASH: Invent, Stats, Relations, Factions}}
REQ: CALIBR.esm
FOOK.ESM
IF VAR(FOOK2) ERROR: Get FOOK2
FOOK2 - [WANK] World And Neighbourhood Kit.esm
REQ: CALIBR.esm
REQ: FOOK2 - Main.ESM
IF VAR(FOOK2) ERROR: Remove if using FOOK2 1.1 and above
FOOK2 - [DIK] DLC Improvement Kit.esm
REQ: Anchorage.esm
REQ: ThePitt.esm
REQ: BrokenSteel.esm
REQ: PointLookout.esm
REQ: CALIBR.esm
REQ: FOOK2 - Main.ESM
FO3 Wanderers Edition - Main File.esm
TAG: {{BASH: Actors.ACBS, Actors.Stats, Deflst, Delev, Invent, Names, Relations, Relev, Stats}}
SAY: Suggested to remove the names tag if using MMM
REQ: CRAFT.esm
REQ: CALIBR.esm
Fallout3Tactics.esm
Fallout3Tactics Creatures.esm
FWE - Combat Overhaul_Core.esm
TAG: {{BASH: Graphics, Names}}
REQ: FO3 Wanderers Edition - Main File.esm
REQ: RH_IronSights resources
INC: Weapon Mod Kits
INC: EVE
INC: RH IronSights Basic VanillaPlugin.esp
Mart's Mutant Mod.esm
TAG: {{BASH: Delev, Invent, Names, Relations, Scripts}}
FNNIguana.esm
Arwen_Core.esm
TAG: {{BASH: Actors.Animations}}
LingsFinerThings.esm
LingsMMMpatch3-3.esm
BnB special armors.esm
vaps.esm
K2_RaiderDolls.esm
COCOA.esm
Companion Core.esm
Companion Share & Recruit.esm
REQ: Companion Core.esm
RobCo Certified v2.esm
REQ: Companion Core.esm
Wasteland Whisperer v2.esm
REQ: Companion Core.esm
Summer_2.5.esm
RHKBrisaAlmodovar.esm
JHBCloverPlus.esm
mesme.esm
Enhanced Weather - Rain and Snow.esm
Xepha's Dynamic Weather.esm
TAG: {{BASH: C.Climate, Sound}}
Globaltravelsystem.esm
GTSEssentials.esm
GTSDeathCanyon.esm
CT_FalloutAdvanced.esm
RTS.esm
INC: ArefuExpandedByAzar.esm
INC: 1PipboyPDA.esp
RTS NW.esm
INC: ArefuExpandedByAzar.esm
INC: 1PipboyPDA.esp
Nos' Cosmetic Resource.esm
RRCompanionVault.esm
RRGuards.esm
RR5MoreMales.esm
RR5MoreFemales.esm
RR All Vanilla Companions.esm
Nos' RR Companions.esm
Herculine's RR Scouts.esm
Herculine's RR Scouts DLC.esm
RR Vault 1 Alternate Guards.esm
AmyWong.esm
EnclaveCommander-Steel.esm
EnclaveCommander-OA-Steel.esm
EnclaveCommander-OA-Pitt-Steel.esm
EnclaveCommander-NoFreeRide.esm
CrossModData.esm
BHR&M.esm
PB mika.esm
IF VAR(FOOK2) ERROR: Old. Download the latest Project Beauty files.
K2_CompLance.esm
Animy_prostitution.esm
REQ: CrossModData.esm
sc_lovers_resource.esm
sc_wasteland_pimp.esm
ParadiseHome.esm
aMpPlants_2_eng.esm
Asset - Brahmin Milk.esm
ActionFigures.esm
DCInteriors_ComboEdition.ESM
INC: DCInteriors components.
DCInteriors_Georgtown.esm
INC: DCInteriors_ComboEdition.ESM
DCInteriors_LEnfntPl.esm
INC: DCInteriors_ComboEdition.ESM
DCInteriors_Mason.esm
INC: DCInteriors_ComboEdition.ESM
DCInteriors_SewardSq.esm
INC: DCInteriors_ComboEdition.ESM
DCInteriors_Takoma.esm
INC: DCInteriors_ComboEdition.ESM
DCInteriors_SideQuests.esm
DCXpansion - Stanton Park.esm
Scannadd5000.esm
Selected Containers Respawn.esm
AngelRaces.esm
SeducingWomen.esm
Shojo Race.esm
TAG: {{BASH: Hair, Eyes}}
XENH.esm
TAG: {{BASH: Hair, Eyes}}
EZCompanion.esm
EZ_citizens.esm
EnhancedChildren.esm
TAG: {{BASH: Hair, Eyes}}
AliciasCuteShop.esm
TAG: {{BASH: Stats}}
CEH.esm
IbIui.esm
Sharing and Caring Companions.esm
Fallout 3 Sexus.esm
ChildrenEmpire.esm
MiniVault+Race.esm
RH_IRONSIGHTS.esm
Zumbs' Overhauled Real Time Security.esm
PunisherGear.esm
Thermal Vision.esm
Abbreviated Effects.esm
TAG: {{BASH: Names}}
SAY: Do not use with latest FWE, it is already integrated.
Detect Traps.esm
FNNCQ.esm
FNNCQ_DavidsLab.esm
WYB.esm
CMF-Zeta.esm
REQ: Zeta.esm
FEM.esm
SS Master File.esm
SS Creature Compendium.esm
Ambient Temperature.esm
BobbleHead Collectors Book.esm
AgeBasedBodys.esm
VATSCINEMATICSGONE.esm
Firefly RRCompanion.esm
Punisher RRCompanion.esm
MyDog - Globals (keep this active).esm
MyDog.esm
FACE2.esm
Herculine's Shojo Companions.esm
Tau Ammo.esm
Star Paladin Praetus.esm
TSC Lincoln Memorial.esm
TheSKINNYwearShopDC.esm
My Utility World.esm
KKOFour.esm
SimpleNeeds.esm
Survival of the Fittest - Needs.esm
Sexout.esm
Children of the Wasteland.esm
busworld.esm
Bunker 72 V4 Beta 2.esm
ENDGROUP: ESMs
BEGINGROUP: Unofficial Patches and Fixes
//-----------
Selected Containers Respawn - Emptied Trash Cans in Player Homes.esp
DALCO Inventory Sorter - Fallout 3 & All DLCs.esp
TAG: {{BASH: NoMerge, Names}}
REQ: Anchorage.esm
REQ: ThePitt.esm
REQ: BrokenSteel.esm
REQ: PointLookout.esm
REQ: Zeta.esm
DALCO Inventory Sorter - Unofficial Fallout 3 Patch (Base Game).esp
TAG: {{BASH: NoMerge, Names}}
Unofficial Fallout 3 Patch - Operation Anchorage.esp
TAG: {{BASH: Deflst, Names}}
IFNOT FILE("Anchorage.esm") REQ: Anchorage.esm
Unofficial Fallout 3 Patch - The Pitt.esp
TAG: {{BASH: Deflst, Names}}
IFNOT FILE("ThePitt.esm") REQ: ThePitt.esm
Unofficial Fallout 3 Patch - Broken Steel.esp
TAG: {{BASH: Deflst, Names}}
TAG: {{BASH: NoMerge, Names}}
IFNOT FILE("BrokenSteel.esm") REQ: BrokenSteel.esm
Unofficial Fallout 3 Patch - Point Lookout.esp
TAG: {{BASH: Deflst, Names, Invent, Stats}}
IFNOT FILE("PointLookout.esm") REQ: PointLookout.esm
Unofficial Fallout 3 Patch - Mothership Zeta.esp
TAG: {{BASH: Deflst, Names}}
IFNOT FILE("Zeta.esm") REQ: Zeta.esm
EVE - UF3P Patch.esp
SAY: Paradox Ignition EVE-merger - compatibility patch for the Unofficial Fallout 3 Patch.
Broken Steel Early Enclave Fix.esp
REQ: BrokenSteel.esm
BrokenSteel_StarPaladinCross_Fix.esp
REQ: BrokenSteel.esm
BrokenSteelFix-GNRAnnouncements.esp
UF3P Crane Fix.esp
Citadel Crane Fix.esp
ObjectPlacementFix.esp
sialivi v1.1.esp
CinderBlockRockFix.esp
INC: CinderblockRockFix2.esp
INC: ConcreteSlabFix.esp
INC: ConcreteSlabFix2.esp
CinderblockRockFix2.esp
INC: CinderBlockRockFix.esp
INC: ConcreteSlabFix.esp
INC: ConcreteSlabFix2.esp
ConcreteSlabFix.esp
INC: CinderBlockRockFix.esp
INC: CinderblockRockFix2.esp
INC: ConcreteSlabFix2.esp
ConcreteSlabFix2.esp
INC: CinderBlockRockFix.esp
INC: CinderblockRockFix2.esp
INC: ConcreteSlabFix.esp
Error Correction.esp
TAG: {{BASH: Scripts}}
REQ: Requires: Anchorage.esm
REQ: ThePitt.esm
REQ: BrokenSteel.esm
REQ: PointLookout.esm
REQ: Zeta.esm
Error Correction - All Transparency.esp
Error Correction - All Transparency & Trees.esp
INC: Error Correction - All Transparency.esp
Error Correction - Transparency Megaton.esp
INC: Error Correction - All Transparency.esp
INC: Error Correction - All Transparency & Trees.esp
Error Correction - Transparency RC.esp
INC: Error Correction - All Transparency.esp
INC: Error Correction - All Transparency & Trees.esp
Error Correction - Transparency Rubble Piles.esp
INC: Error Correction - All Transparency.esp
INC: Error Correction - All Transparency & Trees.esp
Error Correction - Trees.esp
INC: Error Correction - All Transparency & Trees.esp
OADLCfix.esp
REQ: Anchorage.esm
DrySewrOurLadyOfHopeHospitalRequestedFix.esp
James Invisible wall bugs remove.esp
James Invisible wall bugs remove V2.esp
James Invisible wall bugs remove V3.esp
NavMesh Generation Filter.esp
zetabugfix.esp
REQ: Zeta.esm
BenTweaks-FO3.esp
BenTweaks-OAE.esp
REQ: Anchorage.esm
BenTweaks-TPE.esp
REQ: ThePitt.esm
BenTweaks-AAF.esp
REQ: ThePitt.esm
BenTweaks-BSE.esp
REQ: BrokenSteel.esm
BenTweaks-PLE.esp
REQ: PointLookout.esm
BenTweaks-MZE.esp
REQ: Zeta.esm
BenTweaks-CWS.esp
FireLightFix.esp
TAG: {{BASH: C.Light}}
QuickFix.esp
REQ: Anchorage.esm
REQ: ThePitt.esm
REQ: BrokenSteel.esm
REQ: PointLookout.esm
REQ: Zeta.esm
BringBackBael.esp
SAY: Obsolete - Now intergrated into Fallout Remastered.esp, upgrade to latest version
BlackWidowBurkeFix.esp
TAG: {{BASH: Scripts}}
PyromaniacFix-Burnmaster.esp
TAG: {{BASH: Deflst}}
SAY: Do not use with Unofficial Fallout 3 Patch - Already Included
PyromaniacFix-Burnmaster-BS.esp
TAG: {{BASH: Deflst}}
REQ: BrokenSteel.esm
SAY: Do not use with Unofficial Fallout 3 Patch - Already Included
PyromaniacFix-Both.esp
TAG: {{BASH: Deflst}}
SAY: Do not use with Unofficial Fallout 3 Patch - Already Included
PyromaniacFix-Both-BS.esp
TAG: {{BASH: Deflst}}
REQ: BrokenSteel.esm
SAY: Do not use with Unofficial Fallout 3 Patch - Already Included
PyromaniacFix-Both+Nuka.esp
TAG: {{BASH: Deflst}}
SAY: Do not use with Unofficial Fallout 3 Patch - Already Included
PyromaniacFix-Both+Nuka-BS.esp
REQ: BrokenSteel.esm
TAG: {{BASH: Deflst}}
SAY: Do not use with Unofficial Fallout 3 Patch - Already Included
PlunkettsValidPointsRepairFix.esp
DemolitionExpertFix-Nuka.esp
SAY: Do not use with Unofficial Fallout 3 Patch - Already Included
MS11fix.esp
TAG: {{BASH: Actors.AIPackages, C.Light, Invent, Scripts}}
Gnr Cleaned.esp
GNRKarmaFix.esp
Megaton Cleaned.esp
RCmarketNoFire.esp
Rivet City Cleaned.esp
Underworld Cleaned.esp
OutcastCasdinArmorFix.esp
Project Cleaned Patch V1.0.esp
Project Clean FOOK 2 Patch V1.0.esp
REQ: CALIBR.esm
REQ: FOOK2 - Main.ESM
RangerHelmet.esp
SniperAimCorrected - nodemo.esp
SniperAimCorrected.esp
Sniper's Bliss.esp
enhancedsnipersandsilent.esp
LessRocks.esp
Reduced Dust Particles.esp
BetterGamePerformance.esp
TAG: {{BASH: Deflst, Delev}}
Megatonnavmesh.esp
BSMovieSkip.esp
Dialogue Tweaks.esp
SGsUA - No Borders v.1.0-EN.esp
SGsUA - No Borders v.1.0-DE.esp
Stop Insulting Me Outcasts.esp
TAG: {{BASH: Factions}}
ENDGROUP: Unofficial Patches and Fixes
BEGINGROUP: Early Loading Mods
//-----------
DALCO Inventory Sorter - Fallout 3 (Base Game).esp
TAG: {{BASH: NoMerge, Names}}
DALCO Inventory Sorter - Operation Anchorage.esp
TAG: {{BASH: NoMerge, Names}}
DALCO Inventory Sorter - Unofficial Fallout 3 Patch (Operation Anchorage).esp
TAG: {{BASH: NoMerge, Names}}
DALCO Inventory Sorter - The Pitt.esp
TAG: {{BASH: NoMerge, Names}}
DALCO Inventory Sorter - Unofficial Fallout 3 Patch (The Pitt).esp
TAG: {{BASH: NoMerge, Names}}
DALCO Inventory Sorter - Broken Steel.esp
TAG: {{BASH: NoMerge, Names}}
DALCO Inventory Sorter - Point Lookout.esp
TAG: {{BASH: NoMerge, Names}}
DALCO Inventory Sorter - Unofficial Fallout 3 Patch (Point Lookout).esp
TAG: {{BASH: NoMerge, Names}}
DALCO Inventory Sorter - Mothership Zeta.esp
TAG: {{BASH: NoMerge, Names}}
DALCO Inventory Sorter - Unofficial Fallout 3 Patch (Mothership Zeta).esp
TAG: {{BASH: NoMerge, Names}}
DALCO Inventory Sorter - Unofficial Fallout 3 Patch (Fallout 3 & All DLCs).esp
TAG: {{BASH: NoMerge, Names}}
DALCO Inventory Sorter - CALIBR.esp
TAG: {{BASH: NoMerge, Names}}
DarNifiedUIF3.esp
Ambient Temperature HUD.esp
Ambient Temperature - OA.esp
REQ: Anchorage.esm
Selective Fire.esp
PIMP.esp
Project Beauty.esp
IF VAR(FOOK2) ERROR: Old. Download the latest Project Beauty files.
Project Beauty- Broken Steel.esp
TAG: {{BASH: NPC.Race, NpcFaces, NoMerge, Deactivate}}
Project Beauty- Point Lookout.esp
TAG: {{BASH: NPC.Race, NpcFaces, NoMerge, Deactivate}}
Raider preset beta.esp
TAG: {{BASH: NPC.Race, NpcFaces, NoMerge, Deactivate}}
Project Beauty HD version [Hair Fix].esp
TAG: {{BASH: NPC.Race, NpcFaces, NoMerge, Deactivate}}
FACE3 - NPCS.esp
TAG: {{BASH: NPC.Race, NpcFaces, NoMerge, Deactivate}}
FACE3 - DLC04 Point Lookout.esp
TAG: {{BASH: NPC.Race, NpcFaces, NoMerge, Deactivate}}
FACE3 NPCS - DLC03 Broken Steel.esp
TAG: {{BASH: NPC.Race, NpcFaces, NoMerge, Deactivate}}
Fast VATS 1.esp
INC: Fast VATS 2.esp
Fast VATS 2.esp
INC: Fast VATS 1.esp
VATS_Normal_dmg_to_player.esp
INC: Fast VATS X.esp.
VATS Normal Weapon Degradation.esp
Fast_but_dramatic_VATS_0.9.esp
QuickerMessages.esp
QuickerMessagesOA.esp
REQ: Anchorage.esm
QuickerMessagesPITT.esp
REQ: ThePitt.esm
QuickerMessagesBS.esp
REQ: BrokenSteel.esm
QuickerMessagesPL.esp
REQ: PointLookout.esm
Clear Cell Buffers every Cell.esp
Arwen_Reduced_QuestXPR.esp
Headshot_Balance.esp
actionpoints_instant_regen.esp
playbackdelay_001.esp
CT_FalloutAdvanced - DLC.esp
CT_FalloutAdvanced - AAOFF.esp
Noise Filter.esp
IbIui - BS.esp
IbIui - OA.esp
IbIui - Pitt.esp
IbIui - PL.esp
IbIui.esp
PIDL-lite.esp
PIDL-lite(metric).esp
Crosshair Toggle.esp
DynamicCrosshair.esp
DALCO Inventory Sorter - Dynamic Crosshair.esp
TAG: {{BASH: Names}}
Stimpak Counter.esp
FaceMe.esp
TAG: {{BASH: NPC.Race, NpcFaces, NoMerge, Deactivate}}
FaceMe-Broken Steel.esp
TAG: {{BASH: NPC.Race, NpcFaces, NoMerge, Deactivate}}
eyes_hairpack_en.esp
hair_add_npc.esp
Dalls_Sex_in_City.esp
Shojo NPC.esp
TAG: {{BASH: Invent, NPC.Race, NpcFaces}}
Moira-EXSP.esp
TAG: {{BASH: NPC.Race, NpcFaces, NoMerge, Deactivate}}
norepairneededv2.esp
BatteriesPlusV1_2.esp
TAG: {{BASH: Graphics}}
Realistic icons.esp
TAG: {{BASH: Graphics}}
StreetLights - Wasteland.esp
SAY: Do not use with latest FOOK2, it is already integrated.
SAY: Obselete - upgrade to "http://fallout3.nexusmods.com/mods/8069 Fallout Streetlights"
RK-Skelette-3.0.esp
SAY: Do not use with latest FOOK2, it is already integrated.
praiseatom.esp
SAY: Do not use with latest FOOK2, it is already integrated.
Internet Mod.esp
SAY: Do not use with latest FOOK2, it is already integrated.
TakingOutTheTrash.esp
TOTTPointLookoutEdition.esp
YearlingsGlasses.esp
MaxLevelWorkaround-BS.esp
Max Level 99 V2.esp
MaxLevel100.esp
NoLockTopic.esp
LockMan.esp
QZ No VATS Radial Blur.esp
no blur on hit.esp
Advanced Visionary Effects.esp
VisionEnabler.esp
DoF-PureLow.esp
DoF-PureNormal.esp
DoF-PureStrong.esp
DoF-PureStronger.esp
=Extreme+Close=DOF1.1.esp
=Extreme+Far=DOF1.1.esp
=Extreme+Very Far=DOF1.1.esp
=Insane+Close=DOF1.1.esp
=Insane+Far=DOF1.1.esp
=Insane+Very Far=DOF1.1.esp
=Medium+Close=DOF1.1.esp
=Medium+Far=DOF1.1.esp
=Medium+Very Far=DOF1.1.esp
=Strong+Close=DOF1.1.esp
=Strong+Far=DOF1.1.esp
=Strong+Very Far=DOF1.1.esp
=Subtle+Close=DOF1.1.esp
=Subtle+Far=DOF1.1.esp
=Subtle+Very Far=DOF1.1.esp
=Extreme=MotionBlur1.1.esp
=Insane=MotionBlur1.1.esp
=Medium=MotionBlur1.1.esp
=Strong=MotionBlur1.1.esp
=Subtle=MotionBlur1.1.esp
SN_Depth_Of_Field.esp
krzymar-MoonSize_040%.esp
krzymar-MoonSize_060%.esp
krzymar-MoonSize_120%.esp
krzymar-MoonSize_080%.esp
krzymar-MoonSize_200%.esp
krzymar-MoonSize_160%.esp
krzymar-MoonSize_300%.esp
krzymar-MoonSize_400%.esp
krzymar-MoonSize_500%.esp
V.A.T.S. Depth of Field v1.0.esp
CASM.esp
DALCO Inventory Sorter - CASM.esp
TAG: {{BASH: NoMerge, Names}}
Fallout Safe Exit v1.1.esp
ASU.esp
BTBearTrap-EN.esp
CRAFT - Activation Perk.esp
REQ: CRAFT.ESM
CRAFT -Zeta - Activation Perk.esp
REQ: CRAFT.ESM
CRAFT - Workbench and Crafting Expansion combined.esp
REQ: CRAFT.esm
TinCanCRAFTing.esp
CRAFT - EnergyAmmo.esp
CRAFT - Clutter Conversions.esp
REQ: CRAFT.esm
CALIBRxMerchant.esp
REQ: CALIBR.ESM
DelayAnchorage.esp
REQ: Anchorage.ESM
DelayThePitt.esp
REQ: ThePitt.ESM
DelaySteel.esp
REQ: BrokenSteel.ESM
delaypl.esp
REQ: PointLookout.ESM
delayzeta.esp
REQ: Zeta.ESM
Delay ThePitt + Anchorage.esp
REQ: ThePitt.ESM
REQ: Anchorage.ESM
More Hotkeys.esp
LMDExpandedHotkeysFO3.esp
QuickClothes.esp
Console Key Binder.esp
Princess Better Prompts v1pt1.esp
PCIdles.esp
Arwen_Camera.esp
Vanity Camera Mod.esp
KTs_Centercamera.esp
Centered 3P Cam.esp
Overhead3PCamera.esp
ROTS2.esp
ROTS3.esp
Pip-Boy Remover.esp
Remove That Glove.esp
Zumbs' Equipable Pip Boy.esp
INC: That Glove.esp
INC: Pip Boy Be Gone Mark II.esp
INC: Pip Boy Be Gone Mark II 1.1.esp
INC: PipBegone.esp
INC: PipBoyBeGone.esp
INC: 1PipboyPDA.esp
LongerDeathCamera.esp
DK_BulletTime.esp
SAY: DO not use with latest FWE, it is already integrated.
Sprint Mod.esp
SAY: DO not use with latest FWE, it is already integrated.
Auto Aim Fix v1.1.esp
SAY: DO not use with latest FWE, it is already integrated.
ArmageddonVATSAutoaimfixonly.esp
KHWeaponscanner.esp
SAY: DO not use with latest FWE, it is already integrated.
DBAS.esp
AlternateStart.esp
Alternate Start.esp
Alternate Start - Roleplayers.esp
SAY: DO not use with latest FWE, it is already integrated.
Selected Containers Respawn.esp
SAY: DO not use with latest FWE, it is already integrated.
Containers Respawn.esp
Precision_AutoAim_6000.esp
Precise Aim.esp
AlternateEnding.esp
Zombie Sounds V2.esp
choose_XP_FOSE.esp
RH_IronSights_Basic_VanillaPlugin.esp
RH_IronSights_Basic_AnchoragePlugin.esp
RH_IronSights_Basic_PittPlugin.esp
RH_IronSights_Basic_BrokenSteelPlugin.esp
RH_IronSights_Basic_PointLookoutPlugin.esp
RH_IronSights_Basic_ZetaPlugin.esp
RH_Ironsights_Basic_DLC.esp
RH_IronSights_Pitt_NewRifleSights.esp
RH_IronSights_PL_HatAndShotgun.esp
RH_IronSights_RemoveReticule.esp
RH_IronSights_PL_NewItems.esp
RH_IronSights_Vanilla_BetterUniques.esp
RH_IronSights_Vanilla_NewWeapons.esp
EVE - RH Ironsights Patch.esp
TAG: {{BASH: Graphics}}
sc_slaves_stick_around.esp
sc_slaves_stick_around_original_mezz.esp
sc_slaves_stick_around_original_mezz_chance.esp
1alexscorpionFPSanimations.esp
OneKeyArmor.esp
Automated FOV.esp
Lights.esp
LightBall.esp
Feng Shui.esp
Feng Shui - Keymap Template.esp
PAL - MERGED.esp
INC: PAL - BASE File.esp
PAL - BASE File.esp
INC: PAL - MERGED.esp
PAL - Operation Anchorage.esp
REQ: Anchorage.esm
PAL - The Pitt.esp
REQ: ThePitt.esm
PAL - Broken Steel.esp
REQ: BrokenSteel.esm
PAL - Point Lookout.esp
REQ: PointLookout.esm
PAL - Mothership Zeta.esp
REQ: Zeta.esm
Achievements for All.esp
Achievements for All - Anchorage.esp
REQ: Anchorage.esm
Achievements for All - The Pitt.esp
REQ: ThePitt.esm
Achievements for All - Broken Steel.esp
REQ: BrokenSteel.esm
Achievements for All - Point Lookout.esp
REQ: PointLookout.esm
Reduced Dust Particles V01.esp
Reduced Dust Particles V02.esp
PCB.esp
PurgeCellBuffers.esp
Pause.esp
WMMP_Master.esp
YetAnotherPurgeCellBuffersPlugin.esp
ENDGROUP: Early Loading Mods
BEGINGROUP: Sounds
//-----------
Agatha Radio Enhanced.esp
Agatha_Radio_Station_Airship.esp
ArefuExpandedByAzar-Radio.esp
CivilDefenseBroadcastSystem.esp
Enclave Radio Enhanced.esp
GNR Enhanced.esp
GeneratorSound.esp
GalaxyNewsRadioFix[N].esp
INC: GalaxyNewsRadioXXX[M].esp
INC: GalaxyNewsRadioFix[S].esp
GalaxyNewsRadioFix[S].esp
INC: GalaxyNewsRadioXXX[M].esp
INC: GalaxyNewsRadioFix[N].esp
Radio Active.esp
GalaxyNewsRadio100[M].esp
INC: GalaxyNewsRadioXXX[M].esp
INC: GalaxyNewsRadioFix[N].esp
INC: GalaxyNewsRadioFix[S].esp
GalaxyNewsRadio80[M].esp
INC: GalaxyNewsRadioXXX[M].esp
INC: GalaxyNewsRadioFix[N].esp
INC: GalaxyNewsRadioFix[S].esp
GalaxyNewsRadio60[M].esp
INC: GalaxyNewsRadioXXX[M].esp
INC: GalaxyNewsRadioFix[N].esp
INC: GalaxyNewsRadioFix[S].esp
GalaxyNewsRadio40[M].esp
INC: GalaxyNewsRadioXXX[M].esp
INC: GalaxyNewsRadioFix[N].esp
INC: GalaxyNewsRadioFix[S].esp
GalaxyNewsRadio20[M].esp
INC: GalaxyNewsRadioXXX[M].esp
INC: GalaxyNewsRadioFix[N].esp
INC: GalaxyNewsRadioFix[S].esp
GhostRadio.esp
GNR Fix.esp
GNR-MWTCF BS.esp
HamadaRadioStation.esp
InvasionRadio.esp
KBATRadio.esp
Moshman's Wasteland Ambiance.esp
mutantradio.esp
Ol Hick Radio.esp
People_Radio.esp
R.A.C.E. Station.esp
RadioBlues.esp
RadioTenpenny.esp
ReneersRadioMod.esp
TAG: {{BASH: Scripts}}
SAY: Do not use with latest FOOK2, it is already integrated.
PointRadio.esp
LookoutRadio.esp
S.I.K.esp
VTAP25.esp
VTAP50.esp
VTAP75.esp
VTAP100.esp
VTAP125.esp
VTAP150.esp
VTAP175.esp
VTAP200.esp
VTAP225.esp
VTAP250.esp
WAR_radio.esp
Wasteland Music Injector.esp
We Jazz.esp
Radio Stutter fix.esp
RadioHotkey.esp
SAY: Load RadioHotkey after all other radio mods
RadioHotkey_RadioBluesAddon.esp
SAY: Load RadioHotkey after all other radio mods
IPip.esp
ENDGROUP: Sounds
BEGINGROUP: Early Misc A (Perks)
//-----------
Attack of the 50 Foot Woman4.0.esp
ZZ_TP.esp
XSPerkMod.esp
ReloadAmmo.esp
Consistent Books.esp
RemoteControlCompanionsPlus.esp
TCOS.esp
FollowersRelax.esp
Relax.esp
CONELRAD 640-1240.esp
Existence2.0.esp
UPP - Pack 1.esp
UPP - Pack 1 fix.esp
UPP - Pack 2.esp
UPP - Original Perks.esp
UPP - Experience Perks.esp
UPP - Quest Perks.esp
UPP - Quest Perks.esp
UPP - Beverage Perks.esp
UPP Addon - Quest Perks.esp
MME Universal Whiz Perk.esp
You're Special.esp
FalloutPerks.esp
PreWar Book Titles and Perks.esp
Ex Libris - PreWar Book Titles.esp
Perk Revamp Mod - Broken Steel - Perks Only.esp
AccuracyPerks.esp
Detect Traps - The Traponator 4000.esp
Detect Traps - Perk.esp
Detect Traps.esp
Detect Traps - DLC.esp
Dree Perks.esp
Dree Perks Anchorage.esp
Dree Perks Pitts.esp
Dree Perks Broken Steel.esp
Dree Perks Point Lookout.esp
Dree Perks Mothership Zeta.esp
Dree Perks Requested by Fans .esp
Combat Style Perks.esp
BookPerks.esp
BookPerkBarterMOD.esp
VDSP-01.esp
implants.esp
Cyber-Enhancements.esp
PRFEW.esp
SRFBG.esp
PointLookOutGoodies.esp
Double Perks.esp
Double Perks Half.esp
goat_perks.esp
Slayer Of Grelok.esp
super_jump_perk.esp
Bicurious.esp
gender perks unlocked.esp
Makes Sense Bounty Hunter 0.91.esp
ImprovedCovertOpsPerk.esp
REQ: Anchorage.esm
Ice Cold Nuka, Converted.esp
REQ: BrokenSteel.esm
Almost Perfect Anytime Bobbleheads + No Level.esp
REQ: BrokenSteel.esm
Almost Perfect Anytime Bobbleheads.esp
REQ: BrokenSteel.esm
Perfectly SPECIAL + No Level.esp
REQ: BrokenSteel.esm
Perfectly SPECIAL.esp
REQ: BrokenSteel.esm
PowerArmorTraining.esp
PowerArmorTraining_MedicArmor.esp
XtraSPECIAL.esp
Bloodless Mess.esp
ENDGROUP: Early Misc A (Perks)
BEGINGROUP: Global Traveling System
//-----------
ClawPeak.esp
REQ: GlobalTravelSystem.esm
GTSPointLookOut.esp
REQ: GlobalTravelSystem.esm
REQ: PointLookout.esm
GTSThePitt.esp
REQ: GlobalTravelSystem.esm
REQ: ThePitt.esm
GTSCOMM.esp
REQ: GlobalTravelSystem.esm
REQ: COMM.esm
GTSFawkesWeapons.esp
REQ: GlobalTravelSystem.esm
REQ: GTEssentials.esm
Fallout 1+2 All in One Locations.esp
REQ: GlobalTravelSystem.esm
GTS - Military Base.esp
REQ: GlobalTravelSystem.esm
GTS - San Francisco.esp
REQ: GlobalTravelSystem.esm
GTS - Cathedral.esp
REQ: GlobalTravelSystem.esm
GTS - Arroyo.esp
REQ: GlobalTravelSystem.esm
GTS - Toxic Caves.esp
REQ: GlobalTravelSystem.esm
GTS - Klamath.esp
REQ: GlobalTravelSystem.esm
GTS - The Den.esp
REQ: GlobalTravelSystem.esm
GTS - Ghost Farm.esp
REQ: GlobalTravelSystem.esm
GTS - Redding.esp
REQ: GlobalTravelSystem.esm
GTS - Modoc.esp
REQ: GlobalTravelSystem.esm
GTS - Vault City.esp
REQ: GlobalTravelSystem.esm