-
Notifications
You must be signed in to change notification settings - Fork 1
/
boss_fallout3.xml
9752 lines (9752 loc) · 431 KB
/
boss_fallout3.xml
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
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "http://bugzilla.darkcreations.org/bugzilla.dtd">
<bugzilla version="4.2"
urlbase="http://bugzilla.darkcreations.org/"
maintainer="[email protected]"
>
<bug>
<short_desc>ThemeTerminal.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/6625</thetext>
</long_desc>
</bug>
<bug>
<short_desc>100% speech chance.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/16333</thetext>
</long_desc>
</bug>
<bug>
<short_desc>PopulatedMegaton.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17825/</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17825</thetext>
</long_desc>
</bug>
<bug>
<short_desc>russian.esp</short_desc>
<long_desc isprivate="0">
<thetext>Official Russification plugin from 1C should be loaded after mods that change vanilla names and dialogues</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>d:моды для fallout</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>Файл в комплекте Fallout золотое издание</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>Стандартный файл Fallout алмазное издание</thetext>
</long_desc>
</bug>
<bug>
<short_desc>The Coalition Alpha 1.0.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/download/85187/</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Type3MClothing.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://newvegas.nexusmods.com/mods/44711</thetext>
</long_desc>
</bug>
<bug>
<short_desc>RecieveTenpennySuite.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/922</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/922</thetext>
</long_desc>
</bug>
<bug>
<short_desc>TrueVampireStat.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/1565</thetext>
</long_desc>
</bug>
<bug>
<short_desc>100000caps.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/16879</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/16879</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/16879</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/16879/?</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/16879/?</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Colossus Hvy Armor.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/5564
Fallout 3 armor mod, adds armor that requires Operation Anchorage.</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/5564/?tab=2&navtag=%2Fajax%2Fmodfiles%2F%3Fid%3D5564&pUp=1</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>E:\Steam\SteamApps\common\Fallout 3 goty\Data</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>E:\Steam\SteamApps\common\Fallout 3 goty\Data</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>E:\Steam\SteamApps\common\Fallout 3 goty\Data</thetext>
</long_desc>
</bug>
<bug>
<short_desc>FACE [Eyelashes] All Eyes.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/6843</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>*** Bug 3490 has been marked as a duplicate of this bug. ***</thetext>
</long_desc>
</bug>
<bug>
<short_desc>PowerArmorImproved.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/790</thetext>
</long_desc>
</bug>
<bug>
<short_desc>FO3_WRP.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133/</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133/?tab=3&navtag=%2Fajax%2Fmodimages%2F%3Fuser%3D0%26id%3D18133</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133/</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133/</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133/?</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://newvegas.nexusmods.com/mods/38285/?</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133/?tab=2&navtag=%2Fajax%2Fmodfiles%2F%3Fid%3D18133&pUp=1</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133/?
It's Weapon Retexture Project from Fallout 3 Nexus.</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133/?tab=2&navtag=%2Fajax%2Fmodfiles%2F%3Fid%3D18133&pUp=1</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133/?</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18133/?tab=2&navtag=%2Fajax%2Fmodfiles%2F%3Fid%3D18133&pUp=1</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/mods/18133/?</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/mods/18133/?</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/mods/18133/?</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/mods/18133/?
FO3-WRP - Weapon Retexture Project by Millenia
Fallout 3 » Weapons
Sniper rifle
.44 magnum
10mm pistol
10mm SMG
Hunting rifle
Sawed-off shotgun</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/mods/18133/?tab=2&navtag=http%3A%2F%2Fwww.nexusmods.com%2Ffallout3%2Fajax%2Fmodfiles%2F%3Fid%3D18133&pUp=1</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/mods/18133/?tab=2&navtag=http%3A%2F%2Fwww.nexusmods.com%2Ffallout3%2Fajax%2Fmodfiles%2F%3Fid%3D18133&pUp=1</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>E:\Steam\SteamApps\common\Fallout 3 goty\Data</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>E:\Steam\SteamApps\common\Fallout 3 goty\Data</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>E:\Steam\SteamApps\common\Fallout 3 goty\Data</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/mods/18133/?
Weapon texture pack</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>E:\Steam\SteamApps\common\Fallout 3 goty\Data</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>E:\Steam\SteamApps\common\Fallout 3 goty\Data</thetext>
</long_desc>
</bug>
<bug>
<short_desc>GunImpactLODIncreased.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17811</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17811/?</thetext>
</long_desc>
</bug>
<bug>
<short_desc>HolographicArmor - FO3.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17551</thetext>
</long_desc>
</bug>
<bug>
<short_desc>USMC_Weapons.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17488</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17488</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17488</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/mods/17488/?
This adds a re-spawning container located in Springvale under the rocket.
In the Container you will find very accurate and deadly weapons that are within the realms of real world effects.</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Starlight.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/12838</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/download/7705\</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/12838</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/12838
Weather mod. Make the night darker. Should be at near bottom of the load order.</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/12838</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/12838</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>E:\Steam\SteamApps\common\Fallout 3 goty\Data</thetext>
</long_desc>
</bug>
<bug>
<short_desc>No Blur Effect.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/5051</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/5051</thetext>
</long_desc>
</bug>
<bug>
<short_desc>AimInFirst.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/13933</thetext>
</long_desc>
</bug>
<bug>
<short_desc>RealisticBulletsTracers.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18156
The Regular version for Vanilla users without WMK, With Tracers.</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>*** Bug 4626 has been marked as a duplicate of this bug. ***</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18156/?tab=2&navtag=%2Fajax%2Fmodfiles%2F%3Fid%3D18156&pUp=1</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Vampire race V2.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/12619</thetext>
</long_desc>
</bug>
<bug>
<short_desc>My Utility World.esm</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17478</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>Added</thetext>
</long_desc>
</bug>
<bug>
<short_desc>EvenMorePeopleHP.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/11354</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/11354</thetext>
</long_desc>
</bug>
<bug>
<short_desc>SCC BunchapeopleHP.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/11354</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Animated Prostitution Mesmatron Recruitment.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/15350</thetext>
</long_desc>
</bug>
<bug>
<short_desc>big town house.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/12633</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Katana.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/8965</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Katana_High_Damage.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/8965</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Millenia_AKS74U.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/785</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18137</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18137</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>E:\Steam\SteamApps\common\Fallout 3 goty\Data</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/mods/18137/?
Adds weapon AKS74U</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Modern weapons.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/3925</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Camo Uniforms Remix.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/4132</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Camo Uniforms Remix Reduced Effects.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/4132</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Camo Uniforms Remix Reduced Effects & DR.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/4132</thetext>
</long_desc>
</bug>
<bug>
<short_desc>MyUtilityWorld.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17478</thetext>
</long_desc>
</bug>
<bug>
<short_desc>TG Armor Collection.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/15131</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/15131//?</thetext>
</long_desc>
</bug>
<bug>
<short_desc>DSClothingStorageSystem.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://s1.nexusmods.com/dn.php?file=Anchorage%20Camoflage%20Combat%20Armor%20v3%20-%20FOMOD-10614.rar&domain=fallout3nexus.com&dl=1</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Maria_essential-prettyV1.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/2788</thetext>
</long_desc>
</bug>
<bug>
<short_desc>RR Companions 200 Follow Distance.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/3644</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/3644//?</thetext>
</long_desc>
</bug>
<bug>
<short_desc>RR Companions 250 Follow Distance.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/3644</thetext>
</long_desc>
</bug>
<bug>
<short_desc>RR Companions 300 Follow Distance.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/3644</thetext>
</long_desc>
</bug>
<bug>
<short_desc>RR Companions 100 Follow Distance.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/3644</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/3644</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Mesmetron Works on Everyone.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/1750</thetext>
</long_desc>
</bug>
<bug>
<short_desc>AB-VirtualizedStorageSystem.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://s1.nexusmods.com/dn.php?file=Megaton-Tenpenny%20Grate-18012-1-0.zip&domain=fallout3nexus.com&dl=1</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fs4.nexusmods.com/dn.php?file=Virtualized%20Storage%20System-11508.zip&domain=fallout3nexus.com&dl=1</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3nexus.com/file.php?id=11508</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/11508/?tab=2&navtag=%2Fajax%2Fmodfiles%2F%3Fid%3D11508&pUp=1</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/11508//?
When cleaning with FO3Edit 3.0.31 Exp the results showed 3 ITM records and 0 UDR</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Herculine's_RR Scouts_Locker_Fix.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/12899
Plugin order:
Fallout3.esm
LingsFinerThings.esm
Lings.esm
Nos´Cosmetic Resource.esm
RRCompanionVault.esm
Gerculine´s RR Scouts.esm
But I think, this is the correct load order
Masters:
Fallout3.esm
Lings.esm
LingsfinerThings.esm
Nos´CosmeticResource.esm
RRCompanionVault.esm
Herculine´s RR Scouts.esm
lookt at: http://fallout3.nexusmods.com/mods/12899</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Taurus Walker.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://s1.nexusmods.com/dn.php?file=The%20Taurus%20Walker-13789.rar&domain=fallout3nexus.com&dl=1</thetext>
</long_desc>
</bug>
<bug>
<short_desc>newhome.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/12917</thetext>
</long_desc>
</bug>
<bug>
<short_desc>SimpleNeeds_DUI_Plugin.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/11329</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Solar's Bottled Water v2.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/11163</thetext>
</long_desc>
</bug>
<bug>
<short_desc>QuantumStorage.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/11687</thetext>
</long_desc>
</bug>
<bug>
<short_desc>AnimatedIngestibleFo3.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17788
I have no info on the particulars you asked for. Thanks!</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17378</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Standardized Alien Ammo.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/8232</thetext>
</long_desc>
</bug>
<bug>
<short_desc>1CazyTestEsp.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/16792
Bash Tags: Hair</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>E:\Steam\SteamApps\common\Fallout 3 goty</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Fellout Brighter Nights.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859
Only increases ambient lightning at night time to half vanilla value. You can still see, but you know it's night time. All colors are fellout default.
Requires Fellout. Load this after.
Point Lookout is the only DLC that required a change. The others are brighter than my default.</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859
Only increases ambient lightning at night time to half vanilla value. You can still see, but you know it's night time. All colors are fellout default.
Requires Fellout; Load this after.</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859
A mod for a mod, it restores half of vanilla nights to Fellout.</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859/</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859/?</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859/?tab=2&navtag=%2Fajax%2Fmodfiles%2F%3Fid%3D17859&pUp=1</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859/?tab=2&navtag=%2Fajax%2Fmodfiles%2F%3Fid%3D17859&pUp=1</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859/?tab=2&navtag=%2Fajax%2Fmodfiles%2F%3Fid%3D17859&pUp=1</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/9853/?tab=2&navtag=%2Fajax%2Fmodfiles%2F%3Fid%3D9853&pUp=1</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859/?tab=1&navtag=%2Fajax%2Fmoddescription%2F%3Fid%3D17859%26preview%3D&pUp=1
Requires Fellout. Load this after.</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/mods/17859/?tab=2&navtag=http%3A%2F%2Fwww.nexusmods.com%2Ffallout3%2Fajax%2Fmodfiles%2F%3Fid%3D17859&pUp=1</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Ghoulbear.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/4059</thetext>
</long_desc>
</bug>
<bug>
<short_desc>LittleFirstPersonMesmetron.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/7621</thetext>
</long_desc>
</bug>
<bug>
<short_desc>The Librarian - Market Music.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/13106</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/mods/13106/?
Optional music file for Market</thetext>
</long_desc>
</bug>
<bug>
<short_desc>UnarmedNinja.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/13131</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/13131</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/13131</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/13131</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/mods/13131/?tab=2&navtag=http%3A%2F%2Fwww.nexusmods.com%2Ffallout3%2Fajax%2Fmodfiles%2F%3Fid%3D13131&pUp=1</thetext>
</long_desc>
</bug>
<bug>
<short_desc>FalloutPerksOptional.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17087</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17087</thetext>
</long_desc>
</bug>
<bug>
<short_desc>fgScrapMetalCrafting.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/12688
Requires CRAFT.esm</thetext>
</long_desc>
</bug>
<bug>
<short_desc>BoudicaVoicedCompanion.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/12954</thetext>
</long_desc>
</bug>
<bug>
<short_desc>SKINNY SpaceSuit.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/16197</thetext>
</long_desc>
</bug>
<bug>
<short_desc>HOTRS.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/14933</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Radio Stutter Fix v0_85.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/7876</thetext>
</long_desc>
</bug>
<bug>
<short_desc>RepairIt!.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/7486</thetext>
</long_desc>
</bug>
<bug>
<short_desc>EBAR Prototype Suit.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/6951</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/6951</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/download/51398</thetext>
</long_desc>
</bug>
<bug>
<short_desc>EnslavementFixesWithSlavesLingering.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/15795
Optional Download</thetext>
</long_desc>
</bug>
<bug>
<short_desc>BillyCreelMaggie_Quest.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17940</thetext>
</long_desc>
</bug>
<bug>
<short_desc>EvilSlaves.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/2114</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/2114</thetext>
</long_desc>
</bug>
<bug>
<short_desc>RivetCityHome1_0.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18057</thetext>
</long_desc>
</bug>
<bug>
<short_desc>UndergroundHideout_PearPatch.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/16246</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/download/80178
Pear Harvest Fix for Underground Hideout
This simply fixes a bug in the pear tree which only allowed them to be harvested once.
Install:
Extract the esp into your Fallout\Data directory.
Activate it in FOMM and place after the UndergroundHideout.esp.
Note:this should be compatible with both the DLC and Non-DLC versions, but you do need to have Point Lookout for the sound.</thetext>
</long_desc>
</bug>
<bug>
<short_desc>AhzrukhalCapsOnCorpse.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/16770</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Zan_AutoPurge_SmartAgro.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/14575
Should be loaded near the bottom of the "Error Corrections - Reduce CTD" section of the load order.</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/14575
An improved version of ZAPCB that will try purge the cell buffer to increase stability and performance.</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.fallout3nexus.com/downloads/file.php?id=14575
This is a stability mod mainly for people using the hi-res texture packs. The clearest sign that this mod will help you is if you keep getting crashed while walking around outside.</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Geo_The_Hero_Race.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/6173
Player-only race addon.</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/mods/6173/?tab=2&navtag=http%3A%2F%2Fwww.nexusmods.com%2Ffallout3%2Fajax%2Fmodfiles%2F%3Fid%3D6173&pUp=1</thetext>
</long_desc>
</bug>
<bug>
<short_desc>BlackMountainThugArmorT6m.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17442
I'm putting this in among the other armors in my list.</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17442</thetext>
</long_desc>
</bug>
<bug>
<short_desc>TrentonTowers.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18179
I put it after the General's Franklin Mall mod.</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18179</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/mods/18179/?</thetext>
</long_desc>
</bug>
<bug>
<short_desc>SG001 Alternate Mechanists Forge V1.01.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/7663
Redesigns the vanilla Mechanist's Forge into a player-owned home. Should be loaded with Places.</thetext>
</long_desc>
</bug>
<bug>
<short_desc>No Scopeless Zooming - PPA Edition.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/download/76018</thetext>
</long_desc>
</bug>
<bug>
<short_desc>CRAFT - WCE FWE ONLY Patch.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/download/79345</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Fellout Brighter Nights - Point Lookout.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859
Only increases ambient lightning at night time to half vanilla value. You can still see, but you know it's night time. All colors are Fellout default.
Requires Fellout; Load this after Fellout-Full.esp and Fellout DLC patches
Point Lookout is the only DLC that required a change, so there is a separate mod .esp for that. The others are brighter than the original Fellout default.
Place below FOOK2 (if installed)</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859
Only increases ambient lightning at night time to half vanilla value. You can still see, but you know it's night time. All colors are fellout default.
Requires Fellout; Load this after.</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/17859</thetext>
</long_desc>
</bug>
<bug>
<short_desc>sc_blackmailing_silver.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/2273</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>*** Bug 4837 has been marked as a duplicate of this bug. ***</thetext>
</long_desc>
</bug>
<bug>
<short_desc>sc_acquiring_mei.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/2273</thetext>
</long_desc>
</bug>
<bug>
<short_desc>sc_toying_with_angela.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/2273</thetext>
</long_desc>
</bug>
<bug>
<short_desc>sc_wp_captives.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/2273</thetext>
</long_desc>
</bug>
<bug>
<short_desc>sc_wp_luring_lucy.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/2273</thetext>
</long_desc>
</bug>
<bug>
<short_desc>sc_saving_nova.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/2273</thetext>
</long_desc>
</bug>
<bug>
<short_desc>sc_wp_red.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/2273</thetext>
</long_desc>
</bug>
<bug>
<short_desc>VATS Long Range.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/16874</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://www.nexusmods.com/fallout3/download/81741
I cannot report any issues with this MoD at this time</thetext>
</long_desc>
</bug>
<bug>
<short_desc>DTO4BROTHERHOOD.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/16249
Equips BOS soldiers with Dragonskin Tactical armor (requires Dragonskin Tactical Outfits). Load after Dragonskin Tactical .esp and merge into Bash patch.</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Fallout3ModPatch.esp</short_desc>
<long_desc isprivate="0">
<thetext>Merged Patch created using Fallout 3 Edit.</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Megaton_Campsite_MapMarkerfix.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18214</thetext>
</long_desc>
</bug>
<bug>
<short_desc>hackrate.x4.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/2745
Comes in a few versions; this is just the one I use.</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Destructibles.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/6093</thetext>
</long_desc>
</bug>
<bug>
<short_desc>PlasmaRifleAwesomefied.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/3484</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/3484</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Kukri by MadCat and AJ.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/14643</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Find Ingots.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/11738</thetext>
</long_desc>
</bug>
<bug>
<short_desc>clovernewlook.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/6341/?tab=3&navtag=%2Fajax%2Fmodimages%2F%3Fuser%3D0%26id%3D6341#content</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/6341/</thetext>
</long_desc>
</bug>
<bug>
<short_desc>Laulas More Food.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18183
===README===
Laulas More Food
A modifikation for Fallout 3 by Laulajatar
Version: 1.1
Download: http://tes.laulajatar.de
Description
===========
Adds 45 new food items to the wasteland.
There are two optional ESPs in this download:
· More Food - Broken Steel Patch.esp - Patch for Broken Steel
· More Food - Distributed.esp - Places 700 new food items throughout the wasteland.
The optional files must be loaded after Laulas More Food.esp.
Only use the Broken Steel Patch if Broken Steel is installed and active!
For the new items to appear in vendors' inventorys and containers you have to wait somewhere inside for them to respawn; usually about 3 days.
Bon appetit!</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18183/</thetext>
</long_desc>
</bug>
<bug>
<short_desc>More Food - Broken Steel Patch.esp</short_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18183</thetext>
</long_desc>
<long_desc isprivate="0">
<thetext>http://fallout3.nexusmods.com/mods/18183/</thetext>
</long_desc>
</bug>
<bug>
<short_desc>More Food - Distributed.esp</short_desc>
<long_desc isprivate="0">