This repository has been archived by the owner on Sep 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
changelog.html
984 lines (975 loc) · 43.7 KB
/
changelog.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="preload" href="./css/style.css" as="style" />
<link rel="stylesheet" href="./css/style.css">
<link rel="icon" href="img/logo.webp">
<link rel="canonical" href="https://dragonbornsfate.moddinglinked.com">
<script src="https://kit.fontawesome.com/baff4f2fd4.js" crossorigin="anonymous"></script>
<script src="javascript.js"></script>
<title>Changelog | A Dragonborn's Fate</title>
<meta name="keywords" content="Fallout New Vegas, FNV, Fallout NV, Fallout, New Vegas, The Elder Scrolls, FO4, SSE, SkyrimSE, Skyrim Special Edition, Guide, Mod, Mods, Modding Guide, Bethesda, Stable, Performance, Fix, Help, DXVK, Fast, Easy, Tutorial, Mod Organizer, Nexus, Fallout 4, Skyrim, Tale of Two Wastelands, Wabbajack">
<meta name="description" content="Catalog of all changes made to the guide.">
<meta http-equiv='content-language' content='en-us'>
<meta name="twitter:card" value="summary_large_image">
<meta property="og:site_name" content="ModdingLinked">
<meta property="og:title" content="A Dragonborn's Fate">
<meta property="og:type" content="article">
<meta property="og:url" content="https://dragonbornsfate.moddinglinked.com">
<meta property="og:image" content="https://dragonbornsfate.moddinglinked.com/img/card.webp">
<meta property="og:description" content="Catalog of all changes made to the guide.">
</head>
<body>
<!-- Titlebar -->
<div class="titlecontainer">
<div id="sideButton" onclick="toggleNav()">
<i class="fa-solid fa-bars"></i>
</div>
<img src="./img/logo.webp" alt="Logo">
<a href="./index.html">A Dragonborn's Fate</a>
<div class="guideLinks">
<a href="https://vivanewvegas.moddinglinked.com" target="_blank" rel="nofollow">Fallout New Vegas</a>
<a href="https://thebestoftimes.moddinglinked.com" target="_blank" rel="nofollow">Tale of Two Wastelands</a>
<a href="https://themidnightride.moddinglinked.com" target="_blank" rel="nofollow">Fallout 4</a>
</div>
</div>
<!-- Left Sidebar -->
<div id="sidenavLeft">
<div>
<ul>
<li>
<a href="./index.html">Home</a>
</li>
<li>
<a href="./intro.html">Introduction</a>
</li>
<li>
<a href="./setup.html">Setup</a>
</li>
<li>
<a href="./mo2.html">MO2</a>
</li>
<li>
<a href="./utilities.html">Utilities</a>
</li>
<li>
<a href="./bugfix.html">Bug Fixes</a>
</li>
<li>
<a href="./basefinish.html">Base Finish</a>
</li>
</ul>
<hr>
</div>
<div class="extended-background">
<ul>
<h3 id="extended-separator">DBF Extended</h3>
<li>
<a href="./tweaks.html">Tweaks</a>
</li>
<li>
<a href="./hud.html">User Interface</a>
</li>
<li>
<a href="./gameplay.html">Gameplay</a>
</li>
<li>
<a href="./content.html">Content</a>
</li>
<li>
<a href="./visuals.html">Visuals</a>
</li>
<li>
<a href="./finish.html">DBFE Finish</a>
</li>
</ul>
</div>
<div>
<hr>
<ul>
<li>
<a href="./changelog.html" class="active">Changelog</a>
</li>
<li>
<a href="./resources.html">Resources</a>
</li>
<li>
<a href="./faq.html">FAQ</a>
</li>
<li>
<a href="./avoid-tools.html">Tools to Avoid</a>
</li>
<li>
<a href="./avoid-mods.html">Mods to Avoid</a>
</li>
<!-- <li>
<a href="./wabbajack.html">Wabbajack</a>
</li> -->
</ul>
</div>
<!-- Guide Links -->
<div class="guideLinks">
<hr>
<ul>
<li>
<a href="https://vivanewvegas.moddinglinked.com" target="_blank" rel="nofollow">Fallout New Vegas</a>
</li>
<li>
<a href="https://thebestoftimes.moddinglinked.com" target="_blank" rel="nofollow">Tale of Two Wastelands</a>
</li>
<li>
<a href="https://themidnightride.moddinglinked.com" target="_blank" rel="nofollow">Fallout 4</a>
</li>
</ul>
</div>
<!-- Footer -->
<div id="footer">
<ul>
<li class="discord">
<a href="https://discord.gg/S99Ary5eba" target="_blank">
<i class="fab fa-discord"></i>
Discord
</a>
</li>
<li class="kofi">
<a href="https://ko-fi.com/wall_sogb" target="_blank">
<i class="fa fa-coffee"></i>
Support us
</a>
</li>
<li class="github">
<a href="https://github.com/ModdingLinked/Dragonborns-Fate" target="_blank">
<i class="fab fa-github"></i>
GitHub
</a>
</li>
</ul>
</div>
</div>
<div class="deprecationBanner">
<p>
Due to constant game updates and the community split regarding which game versions to support, the guide has been discontinued and will be longer being updated.
<br>
The website will remain available for archival purposes.
</p>
</div>
<!-- Content -->
<div class="content">
<div class="section">
<h1>Changelog</h1>
<h2>Time formatted in DD/MM/YY</h2>
<hr>
<h2 class="install">06/05/24</h2>
<h2><strong>Whole guide</strong></h2>
<ul>
<li>The guide has been discontinued.</li>
</ul>
<hr>
<h2 class="install">26/11/23</h2>
<h3>Partially Safe Mid-game (Check Artificer's Posts)</h3>
<h2><strong>Tweaks</strong></h2>
<ul>
<li>Added Enemy Friendly Fire.</li>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Added SMIM - USSEP Patch.</li>
</ul>
<h2><strong>Wabbajack</strong></h2>
<ul>
<li>Updated to reflect the changes above.</li>
<li>Updated the following mods:
<ul>
<li>Crash Logger SSE AE VR - PDB support (1.11.1)</li>
<li>PO3 Tweaks DBF Configuration (Disabled the sound tweaks)</li>
<li>Adamant - A Perk Overhaul (5.8.6)</li>
<li>Adamant - Bard Perks Addon (1.0.2)</li>
<li>Blade and Blunt - A Combat Overhaul (3.2.0)</li>
<li>Apothecary - An Alchemy Overhaul (1.3.8)</li>
<li>Thaumaturgy - An Enchanting Overhaul (1.4.4)</li>
<li>Stormcrown - A Shout Overhaul (1.1.12)</li>
<li>Gourmet - A Cooking Overhaul (1.1.6)</li>
<li>Gourmet - Fishing Patch (1.0.3)</li>
<li>Artificer - An Artifact Overhaul (1.0.10)</li>
<li>Azurite Weathers (2.48)</li>
<li>Simplicity of Snow (16)</li>
<li>Simplicity of Sea - Water Mod with ENB Displacement Textures (7)</li>
<li>Community Shaders (7.3)</li>
</ul>
</li>
<li>Regenerated the shader cache for Community Shaders 7.3.</li>
</ul>
<hr>
<h2 class="install">20/11/23</h2>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Removed the warning about Community Shaders now requiring AVX2 support because CS 7.3 permanently switched to AVX for broader compatibility.</li>
</ul>
<hr>
<h2 class="install">19/11/23</h2>
<h2><strong>Resources</strong></h2>
<ul>
<li>Restructured to host 3 new pages on ModdingLinked (these pages were previously on the Wasteland Survival Guide and are universal).</li>
<li>Added a guide on how to batch flag your load order as ESL.</li>
</ul>
<hr>
<h2 class="install">17/11/23</h2>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Removed Stay At The System Page NG because of the lack of controller compatibility and because it's not that great for most users who just want to play like in vanilla.</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Added Simonrim Attack Speed Fix for redundancy.</li>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Removed Noble Skyrim because of some visual issues.</li>
<li>Added a warning about Community Shaders now requiring AVX2 support.</li>
</ul>
<h2><strong>Wabbajack</strong></h2>
<ul>
<li>Updated to reflect the changes above.</li>
<li>Updated the following mods:
<ul>
<li>ConsolePlusPlus (1.4)</li>
<li>Manbeast - A Werewolf Overhaul (2.1.1)</li>
<li>Thaumaturgy - An Enchanting Overhaul (1.4.2)</li>
<li>Artificer - An Artifact Overhaul (1.0.6)</li>
<li>Community Shaders (7.1)</li>
</ul>
</li>
<li>Packed the following mods into BSA:</li>
<ul>
<li>Quest Journal Limit Bug Fixer - Recover Disappeared Quests</li>
<li>Zero Bounty Hostility Fix</li>
<li>Stuck on Screen Load Door Prompt Fix</li>
<li>Azurite Weathers</li>
</ul>
<li>Regenerated the shader cache for Community Shaders 7.1.</li>
</ul>
<h2 class="install">13/11/23</h2>
<h2><strong>Wabbajack</strong></h2>
<ul>
<li>Updated the following mods:
<ul>
<li>Community Shaders (7)</li>
<li>Tree LOD Lighting (1.2)</li>
<li>Grass Lighting (1.3.3)</li>
<li>Grass Collision (1.2)</li>
<li>Screen-Space Shadows (1.1.2)</li>
<li>Water Blending (1.1)</li>
<li>Light Limit Fix (1.2)</li>
</ul>
</li>
<li>Regenerated the shader cache for Community Shaders 7.</li>
</ul>
<h2 class="install">12/11/23</h2>
<h2><strong>Utilities</strong></h2>
<ul>
<li>Improved configuration steps for Display Tweaks.</li>
</ul>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Removed DPI Scaling Fix for consistency with The Midnight Ride.</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Removed the following mods:
<ul>
<li>Mysticism - Survival Spells Addon (Replaced by Starfrost's addon)</li>
<li>Scion - A Vampire Overhaul - USSEP Patch (No longer needed with Scion 2.2)</li>
<li>Manbeast - A Werewolf Overhaul - USSEP Patch (No longer needed with Manbeast 2.1)</li>
<li>Vestige (Replaced by Artificier)</li>
</ul>
</li>
<li>Added the following mods:
<ul>
<li>Starfrost - A Survival Overhaul</li>
<li>Candlehearth - An Inn Overhaul</li>
<li>Artificer - An Artifact Overhaul</li>
</ul>
</li>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Removed the following mods:
<ul>
<li>Blended Roads</li>
<li>Assorted Mesh Fixes - SMIM - Really Blended Roads Patch</li>
</ul>
</li>
<li>Added the following mods:
<ul>
<li>Azurite Weathers</li>
<li>Simplicity of Snow</li>
<li>ERM - Enhanced Rocks and Mountains</li>
<li>Light Limit Fix</li>
<li>LLF Particle Lights instead of Fake Glow</li>
</ul>
</li>
</ul>
<h2><strong>Wabbajack</strong></h2>
<ul>
<li>Updated to reflect the changes above.</li>
<li>Forwarded a missing change from the guide (1/8/23).</li>
<li>Bundled the generated shader cache for fast startup.</li>
<li>Updated the following mods:
<ul>
<li>Crash Logger (1.10)</li>
<li>Spell Perk Item Distributor (6.6.2)</li>
<li>Keyword Item Distributor (3.0.4)</li>
<li>powerofthree's Tweaks (1.8.1)</li>
<li>PO3 Tweaks DBF Configuration</li>
<li>Zero Bounty Hostility Fix (3)</li>
<li>Comprehensive Attack Speed Patch (1.1.2.6)</li>
<li>Better Third Person Selection (5.9)</li>
<li>Survival Mode Improved (1.3.1)</li>
<li>Mysticism - A Magic Overhaul (2.3.4)</li>
<li>Adamant - A Perk Overhaul (5.8.5)</li>
<li>Scion - A Vampire Overhaul (2.2)</li>
<li>Manbeast - A Werewolf Overhaul (2.1)</li>
<li>Apothecary - An Alchemy Overhaul (1.3.7)</li>
<li>Thaumaturgy - An Enchanting Overhaul (1.4.1)</li>
<li>Hand to Hand - An Adamant Addon (1.5.6)</li>
<li>Journeyman - A Fast Travel Overhaul (1.1.4)</li>
<li>Gourmet - A Cooking Overhaul (1.1.4)</li>
<li>Gourmet - Fishing Patch (1.0.2)</li>
<li>Gourmet - Survival Patch (1.0.2)</li>
<li>Gourmet - USSEP Patch (1.0.1)</li>
<li>Assorted Mesh Fixes (90)</li>
<li>Security Overhaul - Add-ons (1.9.1)</li>
<li>Community Shaders (6.7)</li>
<li>Tree LOD Lighting (1.1)</li>
<li>Grass Lighting (1.3.2)</li>
<li>Grass Collision (1.1)</li>
<li>Screen-Space Shadows (1.1)</li>
</ul>
</li>
<li>Packed the following mods into BSA:</li>
<ul>
<li>Tavern AI Fix</li>
<li>Dynamic Collision Adjustment</li>
<li>TrueHUD - HUD Additions</li>
<li>Better Third Person Selection</li>
<li>Survival Mode Improved</li>
<li>Scion - A Vampire Overhaul</li>
<li>Manbeast - A Werewolf Overhaul</li>
<li>Dynamic Mercenary Fees</li>
<li>Paarthurnax - Quest Expansion</li>
<li>Static Mesh Improvement Mod</li>
<li>Assorted Mesh Fixes</li>
<li>Simplicity of Snow</li>
<li>Water Effects Brightness and Reflection Fix</li>
<li>Water Mod</li>
<li>Noble Skyrim</li>
<li>NSM - SMIM Patch</li>
<li>ERM - Enhanced Rocks and Mountains</li>
</ul>
<li>Flagged the following mods as ESL:</li>
<ul>
<li>Multiple Floors Sandboxing</li>
<li>SkyUI</li>
<li>Hand to Hand - Locksmith Addon</li>
<li>Gourmet - A Cooking Overhaul</li>
</ul>
</ul>
<hr>
<h2 class="install">2/8/23</h2>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Removed Horse Stamina HUD because it's replaced by TrueHUD.</li>
</ul>
<h2><strong>Wabbajack</strong></h2>
<ul>
<li>Updated to reflect the change above.</li>
</ul>
<hr>
<h2 class="install">1/8/23</h2>
<h2><strong>MO2</strong></h2>
<ul>
<li>Reverted the removal of Multiple Floors Sandboxing because the information about it working through INI was actually wrong.</li>
</ul>
<hr>
<h2 class="install">30/7/23</h2>
<h2><strong>MO2</strong></h2>
<ul>
<li>Updated Custom INI with the following changes:</li>
<ul>
<li>Reverted BethINI's fWaterSSRIntensity to 1 to fix weak SSR</li>
<li>Reverted BethINI's bBackgroundLoadVMData to 0 to fix edge cases of ILS</li>
<li>Now applies the same changes as Multiple Floors Sandboxing</li>
</ul>
</ul>
<h2><strong>Utilities</strong></h2>
<ul>
<li>Moved Improvement Names Customized AE to the installation steps of <b>Adamant - A Perk Overhaul</b>.</li>
<li>Removed Multiple Floors Sandboxing because the same changes are now applied by the guide's Custom INI.</li>
</ul>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Removed the following mods (you can use them if you wish, but their removal gives us room for more important fixes):</li>
<ul>
<li>Vanilla Script (micro)Optimizations</li>
<li>Vanilla Scripting Enhancements</li>
<li>ferrari365's Script Fixes</li>
</ul>
<li>Removed RegularQuicksaves tweak in the Engine Fixes steps, since types of saves actually do not differ between each other.</li>
<li>Added the following mods:</li>
<ul>
<li>Dual Casting Fix</li>
<li>RemoveAllItems Freeze Fix</li>
<li>DPI Scaling Fix</li>
<li>Media Keys Fix SKSE</li>
<li>World Encounter Hostility Fix</li>
<li>Zero Bounty Hostility Fix</li>
<li>Stuck on Screen Load Door Prompt Fix</li>
</ul>
</ul>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Moved Custom Skills Framework to the installation steps of <b>Stormcrown - A Shout Overhaul</b>.</li>
<li>Removed MoreHUD and MoreHUD Inventory Edition.</li>
<li>Added TrueHUD</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Added Adamant - Bard Perks Addon.</li>
<li>Replaced Apothecary - Food and Drink Addon with Gourmet - A Cooking Overhaul.</li>
<li>Removed the Apothecary - Rare Curios Patch - USSEP Patch because it is no longer needed.</li>
<li>Added steps to the Journeyman installation to make its features only apply to Survival Mode.</li>
</ul>
<h2><strong>Content</strong></h2>
<ul>
<li>New section, added the following mods:</li>
<ul>
<li>Skyrim Extended Cut - Saints and Seducers</li>
<li>Paarthurnax - Quest Expansion</li>
</ul>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Moved HD Local Map to the <b>User Interface</b> section.</li>
<li>Added the following mods:</li>
<ul>
<li>Community Shaders (and the required d3dcompiler_47)</li>
<li>All current CS addons</li>
<li>Grass Sampler Fix</li>
</ul>
</ul>
<h2><strong>Wabbajack</strong></h2>
<ul>
<li>A Wabbajack modlist and section are now available.</li>
</ul>
<hr>
<h2 class="install">23/7/23</h2>
<h2><strong>MO2</strong></h2>
<ul>
<li>Switched back to portable instance for consistency with the TBoT video guide and the Wabbajacks.</li>
</ul>
<hr>
<h2 class="install">15/7/23</h2>
<h2><strong>MO2</strong></h2>
<ul>
<li>Updated Custom INI with better AO and disabled the ugly terrain LOD fade, also removed a tweak already applied by USSEP and commented the changes.</li>
</ul>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Added Performance Guide and Bash Bug Fix.</li>
</ul>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Added C.O.C.K.S. and Custom Skills Framework (both required by the mods added below).</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Added the following mods:</li>
<ul>
<li>Survival Mode Improved - SKSE</li>
<li>Stormcrown</li>
<li>Journeyman</li>
<li>Sorcerer</li>
</ul>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Removed EVLaS because it turns out it's not really meant for gameplay (big chunk of the map is always covered in shadow and stealth is busted).</li>
</ul>
<hr>
<h2 class="install">27/5/23</h2>
<h2><strong>MO2</strong></h2>
<ul>
<li>Switched to the 2.4.5 Alpha 3 version to fix the alphabetic load order issues and bring some QoL features.</li>
</ul>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Removed Beneath Bronze Waters Start Fix since USSEP 4.2.9 makes it redundant, added DLC2PillarBuilderActorScript Tweak.</li>
</ul>
<hr>
<h2 class="install">5/5/23</h2>
<h2><strong>Utilities</strong></h2>
<ul>
<li>Added ConsolePlusPlus.</li>
</ul>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Added DLC2dunFrostmoonTriggerScript Optimization and Comprehensive Attack Speed Patch - SKSE.</li>
</ul>
<hr>
<h2 class="install">2/5/23</h2>
<h2><strong>Whole Guide</strong></h2>
<ul>
<li>Updated to 1.6.640.</li>
</ul>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Added the following mods:</li>
<ul>
<li>dunF01gunthurBossBatt1e Script Fix</li>
<li>Shroud Hearth Barrow Script</li>
<li>Soul Cairn Script Tweaks</li>
<li>The Taste of Death Improved</li>
<li>Beneath Bronze Waters Start Fix</li>
<li>DLC2TribaIWerebearScript</li>
<li>DLC2dunNchardakDoorSea1 Script Infinite Loop Fix</li>
<li>DLC2dunSeekerInvisScript</li>
<li>DLC2MiraakScript</li>
</ul>
</ul>
<h2><strong>Tweaks</strong></h2>
<ul>
<li>Added Instantly Skip Dialogue NG.</li>
</ul>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Added moreHUD Inventory Edition.</li>
<li>Switched from QuickLoot EE to Quick Loot RE.</li>
</ul>
<hr>
<h2 class="install">19/3/23</h2>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Added Animated Static Reload Fix - NG.</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Added Vestige - An Artifact Overhaul.</li>
</ul>
<hr>
<h2 class="install">14/3/23</h2>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Added the following mods:</li>
<ul>
<li>Script Effect Archetype Crash Fix</li>
<li>Vendor Respawn Fix</li>
<li>Sprint Sneak Movement Speed Fix</li>
</ul>
</ul>
<hr>
<h2 class="install">9/2/23</h2>
<h2><strong>Setup</strong></h2>
<ul>
<li>Added steps to delete the Patch BSA and fix some dialogue.</li>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Added Twilight and EVLaS.</li>
</ul>
<hr>
<h2 class="install">18/1/23</h2>
<h2><strong>Utilities</strong></h2>
<ul>
<li>Added more specific steps for the FPS cap in Display Tweaks in order to prevent Papyrus issues.</li>
</ul>
<hr>
<h2 class="install">28/11/22</h2>
<h2><strong>Whole Guide</strong></h2>
<ul>
<li>Recreated the website with the help of Wall_SoGB, the guide is now responsive.</li>
<li>Reformatted and edited a lot of steps and information.</li>
<li>Removed steps for AE DLC owners, support will not be provided.</li>
</ul>
<h2><strong>Utilities</strong></h2>
<ul>
<li>Switched from .net to crash logger.</li>
<li>Added the following mods:</li>
<ul>
<li>Improvement Names Customized AE</li>
<li>Keyword Item Distributor</li>
<li>More Informative Console</li>
<li>Multiple Floors Sandboxing</li>
</ul>
</ul>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Added Scrambled Bugs Custom Config.</li>
<li>Added the following mods:</li>
<ul>
<li>Sound Fix for Large Sector Drives</li>
<li>Moons and Stars - Sky Overhaul SKSE</li>
<li>Aurora Fix</li>
<li>Barter Limit Fix</li>
</ul>
</ul>
<h2><strong>Tweaks</strong></h2>
<ul>
<li>Removed Realistic Conversations and All Thieves Guild Jobs Concurrently.</li>
<li>Added USSEP Patch for Quests Are In Skyrim.</li>
<li>Added the following mods:</li>
<ul>
<li>To Your Face SE - AE - VR</li>
<li>Enhanced Invisibility</li>
<li>Fires Hurt RE</li>
<li>Fire Hurts NG</li>
<li>Animals Swim (Sort of)</li>
<li>Dynamic Collision Adjustment</li>
<li>Remember Lockpick Angle - Updated</li>
<li>Better Jumping SE</li>
</ul>
</ul>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Moved Whose Quest Is It Anyway to the <b>Utilities</b> section.</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Added Adamant and Mysticism addons.</li>
<li>Added USSEP Patch for Scion and Manbeast.</li>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Removed the following mods:</li>
<ul>
<li>EVLaS</li>
<li>Cathedral Weathers</li>
<li>Lux</li>
</ul>
<li>Added the following mods:</li>
<ul>
<li>Soft Shadows</li>
<li>HD Local Map</li>
</ul>
</ul>
<hr>
<h2 class="install">14/11/22</h2>
<h2><strong>Utilities</strong></h2>
<ul>
<li>Switched to the Nexus release of SKSE64.</li>
<li>Added Recursion Monitor and Papyrus Tweaks NG.</li>
</ul>
<hr>
<h2 class="install">13/11/22</h2>
<h2><strong>MO2</strong></h2>
<ul>
<li>Switched to global instance (don't worry about this if you already have the guide installed).</li>
</ul>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Switched from Stay At The System Page to Stay At The System Page NG.</li>
</ul>
<hr>
<h2 class="install">28/9/22</h2>
<h2><strong>Whole Guide</strong></h2>
<ul>
<li>Now using 1.5.97 for better compatibility and to prevent issues when the game updates.</li>
</ul>
<h2><strong>Utilities</strong></h2>
<ul>
<li>Switched from Crash Logger to .NET.</li>
</ul>
<h2><strong>Tweaks</strong></h2>
<ul>
<li>Edited the guide's PO3 Tweaks config file so now you can wait while standing.</li>
</ul>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Switched from QuickLoot RE to QuickLoot EE.</li>
</ul>
<hr>
<h2 class="install">11/7/22</h2>
<h2><strong>Utilities</strong></h2>
<ul>
<li>Added JContainers because it's required by BTPS.</li>
</ul>
<hr>
<h2 class="install">8/7/22</h2>
<h2><strong>Utilities</strong></h2>
<ul>
<li>Added steps to install the brightness templates of Lux.</li>
</ul>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Fixed SkyUI Notes Fix version.</li>
</ul>
<hr>
<h2 class="install">6/7/22</h2>
<h2><strong>Whole Guide</strong></h2>
<ul>
<li>Converted to 1.6.353, no more downgrading needed.</li>
</ul>
<h2><strong>Utilities</strong></h2>
<ul>
<li>Added SPID.</li>
</ul>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Added fixes for full AE owners.</li>
<li>Corrected Scrambled Bugs configuration instructions.</li>
<li>Added Unofficial CC Patch and notes for users who own the extra CC content.</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Added missing patches for Apothecary.</li>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Updated Lux FOMOD instructions.</li>
</ul>
<h2><strong>Resources</strong></h2>
<ul>
<li>Added mods and tools to avoid sections.</li>
</ul>
<hr>
<h2 class="install">5/7/22</h2>
<h2><strong>MO2</strong></h2>
<ul>
<li>Added Custom INI.</li>
</ul>
<h2><strong>Tweaks</strong></h2>
<ul>
<li>Added All Thieves Guild Jobs Concurrently - USSEP Patch (moved from Final Steps section).</li>
</ul>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Added Wider MCM Menu for SkyUI.</li>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Added the following mods: Security Overhaul SKSE - Lock Variations, Security Overhaul SKSE - Regional Locks, Security Overhaul SKSE - Add-ons.</li>
</ul>
<hr>
<h2 class="install">4/7/22</h2>
<h2><strong>Whole Guide</strong></h2>
<ul>
<li>Moved Visuals section below Gameplay.</li>
</ul>
<h2><strong>Setup</strong></h2>
<ul>
<li>Switched from full AE patcher to Best of Both Worlds versions to ensure USSEP compatibility without API trick.</li>
</ul>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Added the following mods: Vanilla Script (micro)Optimizations, Engine Fixes (moved from Utilities section), Bug Fixes SSE, Combat Music Fix SKSE and Quest Journal Limit Bug Fixer.</li>
<li>Switched from NPC AI Process Pos Fix to NPC AI Process Pos Fix NG.</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Complete overhaul.</li>
</ul>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Complete overhaul.</li>
</ul>
<h2><strong>MO2</strong></h2>
<ul>
<li>Added BethINI instructions and disabled profile-specific INIs.</li>
</ul>
<h2><strong>Tweaks</strong></h2>
<ul>
<li>Replaced quest delay mods with Timing is Everything its setting loader.</li>
</ul>
<h2><strong>Utilities</strong></h2>
<ul>
<li>Moved Engine Fixes to Bug Fix section and updated configuration instructions.</li>
<li>Added Display Tweaks configuration instructions.</li>
<li>Added PapyrusUtil.</li>
<li>Removed SKSE INI.</li>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Complete overhaul.</li>
</ul>
<h2><strong>Final Steps</strong></h2>
<ul>
<li>Switched from the CR FOMOD to a single patch.</li>
</ul>
<hr>
<h2 class="install">11/11/21</h2>
<h2><strong>Installation</strong></h2>
<ul>
<li>Added instructions for downgrading game version to pre-Anniversary edition.</li>
</ul>
<h2><strong>Tweaks</strong></h2>
<ul>
<li>Removed No Kill Cams (too subjective, especially since kill cams aren't buggy like in NV).</li>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Added Security Overhaul SKSE.</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Changed instructions to download old version of SunHelm.</li>
<li>Moved Encounter Zones Unlocked to the <b>Tweaks</b> section.</li>
</ul>
<hr>
<h2 class="install">9/10/21</h2>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Added Recleaned Menu.</li>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Replaced Realistic Water Two + Better Water for RW2 with Cathedral Waters.</li>
</ul>
<hr>
<h2 class="install">16/8/21</h2>
<h2><strong>Utilities</strong></h2>
<ul>
<li>Added powerofthree's Papyrus Extender because it's required by SunHelm.</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Removed support for EnaiRim in favour of SimonRim.</li>
<li>Added instructions to also install the Food and Drink addon from Apothecary.</li>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Removed support for ELE, instead adding a note about not selecting the ELFX Enhancer setting in the ELFX FOMOD if you have a weaker PC or don't like the "realistically" dark interiors.</li>
</ul>
<hr>
<h2 class="install">9/7/21</h2>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Added instructions to enable a couple features in the Engine Fixes config.</li>
<li>Added NPC Position Process Fix.</li>
<li>Added Tavern AI Fix.</li>
<li>Removed 1st Person Sneak Stutter Fix (too specific).</li>
<li>Removed Minimalistic AutoSave Mod (causes sudden stuttering when autosaving, instead opting for the setting in SSE Engine Fixes that makes F5 create an autosave).</li>
</ul>
<h2><strong>Tweaks</strong></h2>
<ul>
<li>New section, separated Bug Fixes and QoL mods.</li>
<li>Added Bounty Preview.</li>
<li>Added All Thieves Guild Jobs Concurrently.</li>
<li>Added Simple Offence suppression.</li>
<li>Added Disable Cinematic Kills.</li>
</ul>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Added Roboto Font Replacer.</li>
<li>Added Smaller Vanilla Cursors.</li>
<li>Added Horse Stamina HUD.</li>
<li>Removed MoreHUD Inventory Edition.</li>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Added ELFX Fixes.</li>
<li>Added Dimmer Fog.</li>
<li>Added Blended Roads.</li>
<li>Realistic Water Two./li>
<li>Better Water for Realistic Water Two.</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Added SunHelm.</li>
<li>Removed M'aiq's Tweaks Better Sneaking (makes sneak to easy/awkward).</li>
<li>Removed Alchemy Potions and Food Adjustments (replaced by Apothecary in SimonRim and Tonics Heal Over Time in EnaiRim).</li>
</ul>
<h2><strong>SimonRim</strong></h2>
<ul>
<li>Added Apothecary.</li>
</ul>
<h2><strong>EnaiRim</strong></h2>
<ul>
<li>Added Tonics Heal Over Time.</li>
</ul>
<hr>
<h2 class="install">23/6/21</h2>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Added back ELFX as an alternative to ELE. ELFX will be recommended for higher-end PCs and ELE will be for lower-end ones.</li>
</ul>
<hr>
<h2 class="install">21/6/21</h2>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Added powerofthree's Tweaks.</li>
</ul>
<h2><strong>Visuals</strong></h2>
<ul>
<li>Swapped ELFX with ELE.</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Separated the gameplay section into two sections, one for EnaiRim and one for SimonRim.</li>
<li>Swapped Arena and Morrowloot Misc with Open World Loot and OWL - Vanilla Progression.</li>
</ul>
<hr>
<h2 class="install">3/5/21</h2>
<h2><strong>Utilities</strong></h2>
<ul>
<li>Added .NET Script Framework.</li>
</ul>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Added Scrambled Bugs.</li>
<li>Removed Enchanting Adjustments and Price-Charge Bug Fix because they are included in Scrambled Bugs.</li>
</ul>
<hr>
<h2 class="install">6/3/21</h2>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Changed Realistic Conversations to the "longer pause" version.</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Exchanged Mysticism for Odin.</li>
<li>Exchanged Vokrii - Mysticism patch for the Vokrii - Odin patch.</li>
</ul>
<hr>
<h2 class="install">3/3/21</h2>
<h2><strong>Utilities</strong></h2>
<ul>
<li>Added Scaleform Translation Plus Plus.</li>
</ul>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Added Quest NPCs Run.</li>
</ul>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Added SkyUI Flashing Savegame Fix.</li>
<li>Added MoreHUD + MoreHUD Inventory.</li>
<li>Removed Better Book Names (moreHUD essentially does the same thing).</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Swapped out ChocolateNoodle's Little Balance Mods for Economy Overhaul and Speechcraft Improvements.</li>
<li>Added Scarcity, M'aiq's Tweaks (stealth file) and Alchemy Potions and Food Adjustments.</li>
</ul>
<hr>
<h2 class="install">23/2/21</h2>
<h2><strong>Bug Fixes</strong></h2>
<ul>
<li>Added the Better Horses file of Miscellaneous Tweaks Collection.</li>
</ul>
<h2><strong>User Interface</strong></h2>
<ul>
<li>Added both Better MessageBox and Better Dialogue Controls.</li>
</ul>
<h2><strong>Gameplay</strong></h2>
<ul>
<li>Removed Apocalypse (too ambitious).</li>
<li>Removed MorrowLoot Ultimate (sounds a lot better in theory than it is in practice. Someone also made a great point about being able to exploit the hand-placed glass/ebony items if you know where they are).</li>
<li>Added the Unleveled Quest Rewards file of MorrowLoot Miscellania.</li>
<li>Added both Encounter Zones Unlocked and Arena - An Encounter Zone Overhaul.</li>
</ul>
</div>
</div>
</body>
</html>