-
Notifications
You must be signed in to change notification settings - Fork 5
/
casual-old.html
1543 lines (1332 loc) · 76.8 KB
/
casual-old.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
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html><head>
<meta charset="UTF-8"/>
<link rel="icon" type="image/png" href="./favicon.ico"/>
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<link rel="stylesheet" type="text/css" href="css/guide.css"/>
<link rel="stylesheet" type="text/css" href="css/casual.css"/>
<script src="guide.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Casual — Interactive Oblivion Checklist</title>
</head>
<body>
<!-- begin topbar-->
<div id="topbar" class="topbar">
<nav id="topbarNav" class="topbarNav">
<div class="topbarSection icon leftBorder">
<a href="https://prclive.run/"><img src="./images/prcbanner.png" style="width: 90px;"></a>
<div class="topbarSublist">
<a href="https://www.twitch.tv/prclive" class="topbarSection">Twitch</a>
<a href="https://www.youtube.com/c/prclive" class="topbarSection">YouTube</a>
<a href="https://discord.gg/eudsps7" class="topbarSection">Discord</a>
<a href="https://github.com/MichaelEbert/OblivionProgressTracker" class="topbarSection">GitHub</a>
<a href="https://twitter.com/_prclive" class="topbarSection">Twitter</a>
</div>
</div>
<div class="topbarSection">
<a href="./speedrun-guide.html">Guide</a>
<div class="topbarSublist">
<a href="./speedrun-guide.html">Speedrun Guide</a>
<a href="./casual.html">Casual Guide</a>
<a href="./speedrun-archive.html">Archive</a>
</div>
</div>
<a href="./checklist.html" class="topbarSection">Checklist</a>
<div class="topbarSection">
<a href="./map.html">Map</a>
<div class="topbarSublist">
<a href="./nirnroute.html">Nirnroute</a>
</div>
</div>
<div class="topbarSection">
<a href="https://prclive.run/wiki/Oblivion:Tools/Resources">Wiki/Tools</a>
<div class="topbarSublist">
<a href="https://prclive.run/wiki/Main_Page">Wiki</a>
<a href="./tools/tools.html">Tools</a>
<a href="https://prclive.run/wiki/Oblivion:Glitches/Tech">Glitches</a>
<a href="https://prclive.run/wiki/Oblivion:Tools/Resources">Tools/Resources Directory</a>
</div>
</div>
<a href="./settings.html" class="topbarSection icon" style="font-size: 0.85em;" title="Settings">⚙️</a>
<div class="topbarSection"><span class="totalProgressPercent">0</span>%</div>
</nav>
</div>
<!-- end topbar-->
<div class="contentContainer" id="contentContainer">
<div class="sidebar" id="sidebar">
<div id="sidebarContent" class="sidebarContent">
<div id="sidebarLinks">
<a href="./map.html?topbar=false" target="_blank" title="Show Map">🗺️</a>
</div>
</div>
</div>
<article>
<h1>Oblivion 100% Completion Challenge</h1>
<h3>Made by Ben Songster (MeemawHustlin)</h3>
This guide is intended for casual players to go about achieving the 100% objectives at their own pace. If you prefer to follow an explicit and linear set of instructions, refer to the speedrunner version of this guide and the other materials. This guide is organized by objective, focusing mainly on explaining the possible ways the 100% objectives could become impossible to achieve, and how to avoid those softlocks. Occasionally extra advice is given for ways to speed up the process of achieving certain objectives, but no glitches/exploits are absolutely required in any case.
This guide also functions as a way to visually see all of the information that the speedrun route logic is developed around for those who are curious about that.
Each section includes general tips, along with specific softlocks that will make certain objectives impossible.
<div id="toc">
<h2>Table of Contents</h2>
<ol>
<li><a href="#questscompleted">Quests Completed</a></li>
<li><a href="#mainquest">Main Quest</a></li>
<li><a href="#magesguild">Mages Guild</a></li>
<li><a href="#fighersguild">Fighters Guild</a></li>
<li><a href="#darkbrotherhood">Dark Brotherhood</a></li>
<li><a href="#thievesguild">Thieves Guild</a></li>
<li><a href="#daedricshrines">Daedric Shrines</a></li>
<li><a href="#mastertraining">Master Training</a></li>
<li><a href="#sidequests">Misc/Side Quests</a></li>
</ol>
</div>
<div class="section" id="questscompleted">
<div class="sectionTitle">208 Quests Completed</div>
<div class="collapsibleContent">
Quests Completed requires you to finish each quest in a way that will move it to the completed section of your quest journal.
Tips:
<ul>
<li>This section of the guide will contain the majority of the info you will need for getting 100% completion. This is because the vast majority of other objectives tend to be tied to quests in various ways:
<ul>
<li>Some free skill boosts are able to be acquired by finishing quests in certain ways.</li>
<li>Three Oblivion Gates Shut are acquired during the Main Quest.</li>
<li>Several merchants that are part of the Stores Invested In accomplishment are encountered through quests.</li>
<li>All 15 Artifacts Found are acquired during the <a href="index.html#questDaedric_Shrines">Daedric Shrine Quests</a>.</li>
<li>Many Skill Books are in convenient locations you already have to visit during quests, and some are actually impossible to acquire later if you do not get them during certain quests.</li>
<li>A few quests cause softlocks with the Places Found objective, most notably during the Fighters Guild and Main Quest.</li>
<li>The majority of the Fame objective is directly dependent on how you finish certain quests.</li>
<li>Many Nirnroots Found are in convenient locations during certain quests.</li>
<li>The Max Faction Ranks are awarded when specific quests are completed.</li>
<li>To get the Quest Journal Filled objective, a few additional quests need to be done in certain ways, and in a certain order.</li>
</ul>
</li>
<li>
This section will break down each quest and the specific other objectives and potential softlocks to consider while doing it. For a summary of the tips and softlocks specific to a single accomplishment, refer to the other sections of this guide.
<ul>
<li>All quests are listed, so quests that do not have additional bullet points under them have no specific requirements to avoid softlocks.</li>
<li>Quests are listed by questline/category. The order these quests are listed in does not guarantee that you will be able to get 100% completion by doing them in that order. Make sure to familiarize yourself with the listed softlocks before completing quests.</li>
<li>There are numerous additional bugs that are specific to each quest that have known workarounds. Only true softlocks are listed. Use the hyperlinks for each quest in the 100% Checklist to see a detailed list of bugs and info about each quest.</li>
</ul>
</li>
<li>The Thieves Guild questline has several cases where a quest can be completed along with a Blood Price for “failing” it. These situations actually reward two quests completed each. More info is provided in the Thieves Guild section below.</li>
Failing a quest will still count it as complete in most cases. For example, for the Speechcraft Training quest, if you choose to kill a beggar instead of talking to all of them, the stat will still increment in your journal even though you didn’t do what you were supposed to.
<ul><li>Be careful when doing this, as many quests that can be failed will not reward you Fame, a faction rank, etc. if you fail them.
</li></ul></li>
</ul>
</div>
</div>
<div class="section" id="mainquest">
<div class="sectionTitle">Quests — Main Quest</div>
<div class="collapsibleContent">
<div class="category">
<div class="categoryTitle"><span class="quest">Tutorial</span></div>
<ul>
<li>Taking the Iron Key off the Goblin in the first rat area and making a save will give you an easy way to reactivate the <a href="./glitches.html#permakey">Perma Key Glitch</a> if you want to be able to use it.</li>
</ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Deliver the Amulet</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Find the Heir</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Breaking the Siege of Kvatch</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Battle for Castle Kvatch</span></div>
<ul>
<li><span class="book" clid="book3">A Dance in Fire, v4 [Acrobatics]</span> skill book is on a table in the Great Hall of Kvatch Castle.</li>
<li>After finishing this quest, you can invest in <span class="store" clid="store64">Sigrid</span> and <span class="store" clid="store63">Batul gra-Sharob</span> back at the Kvatch camp.</li>
</ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest" clid="quest5">Weynon Priory</span></div>
<ul>
<li>Make sure you discover Cloud Ruler Temple before starting this quest, or else you will never be able to max out the Places Found accomplishment.</li>
<li>Now that you can enter Cloud Ruler Temple, <span class="book">Legend of Krately House [Sneak]</span> and <span class="book" clid="book43">Beggar [Athletics]</span> can be read in the East Wing and Great Hall.</li>
</ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Path of Dawn</span></div>
<ul>
<li>Make sure you talk to<span class="npc"> Jauffre</span> and accept his offer to join the Blades faction.
</li><li><span class="npc">Luther Broad</span> can be invested in while you are in Luther Broad’s Boarding House.
</li><li>You can invest in <span class="npc">Phintias</span> while at the First Edition.
</li><li>You will acquire all four <span class="book">Mythic Dawn Commentaries</span> skill books during this quest. Read them or keep them somewhere safe for later reading.
</li><li>If <span class="npc">Baurus</span> survives, talking to him later at Cloud Ruler Temple will give you +1 to Blade, Block, and Heavy Armor as long as they are below 90.
</li><li>If you watch the two Blades fight in the courtyard of Cloud Ruler Temple for a really long time, you will get +2 to Blade and Block if those skills are below 90.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Dagon Shrine</span></div>
<ul>
<li>Make sure that <span class="npc">Mankar Camoran</span> actually enters the portal during this quest to avoid a softlock later.
</li><li>After completing this quest, all Oblivion Gate locations on the map except for the Bruma Gate will be able to be discovered and closed.
</li><li>As you escape Lake Arrius Caverns, in a chest past the final door before you exit the Shrine Living Quarters there is the <span class="book">Sacred Witness [Sneak]</span> skill book. Depending on how you choose to escape the cave, you may never be able to go back and read this book.
</li><li>If you rescue<span class="npc"> Jeelius</span> and talk to him at the Temple of the One in the Imperial City afterwards, you will get +1 to Alchemy, Mysticism, and Restoration as long as they are below 90.
</li><li>After completing this quest, Mythic Dawn Agents begin revealing themselves and fighting you in public. Try to avoid situations where NPCs fight each other, as this could lead to NPCs dying that you will need for other objectives.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Spies</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Blood of the Daedra</span></div>
<ul>
<li>You will need a Daedric Artifact to complete this quest, which will require you to complete one of the Daedric Shrine quests. Giving the Artifact to <span class="npc">Martin</span> will not decrease your Artifacts Found statistic.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Bruma Gate</span></div>
<ul>
<li>This quest unlocks the ability to discover the Bruma Gate location and close the gate. At this point, every Oblivion Gate except for the Great Gate can be shut, and all places on the map can be discovered with the exception of Serpent’s Trail depending on how far you’ve advanced the <span class="quest">Lifting the Vale</span> quest.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Allies for Bruma</span></div>
<ul>
<li>You will need to get the aid of all the other 7 major cities including Kvatch in order to get all 7 Fame. This requires you to have completed <span class="quest" disabled="true">Battle for Castle Kvatch</span>, as well as closing the gate that is right outside of each city.
<ul>
<li><span class="quest">The Wayward Knight</span> quest is done during the Cheydinhal Oblivion Gate. Simply ignoring <span class="npc">Farwil</span> and closing the gate without interacting with him will avoid him dying so that you don’t miss the +2 Fame for that quest as well.
</li></ul>
</li><li>If <span class="npc">Count Regulus Terentius</span> or <span class="npc">Viera Lerus</span> die before getting aid from Bravil, you will not be able to get all 7 Fame.
</li><li>The display case behind the throne in Bravil Castle has the <span class="book" clid="0x00073A61">Battle for Sancre Tor [Blade]</span> skill book.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Blood of the Divines</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Miscarcand</span></div>
<ul>
<li>After this quest is completed, the skill books <span class="book">The Warp in the West [Block]</span>, <span class="book" clid="0x000243F2">The Doors of Oblivion [Conjuration]</span> and <span class="book">The Refugees [Light Armor]</span> are on the tables in front of <span class="npc">Martin</span>.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Defense of Bruma</span></div>
<ul>
<li>While you are in the Chapel in Bruma, in the Chapel Hall downstairs you can read <span class="book">2920, Hearth Fire (v9)</span> on the NW shelf in the first room.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Great Gate</span></div>
<ul>
<li>At this point, you can now close all 60 Oblivion Gates.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Paradise</span></div>
<ul>
<li>Make sure to discover all of the Oblivion Gates before doing this quest, since many random Oblivion gates will be unable to spawn once this quest is completed, preventing you from completing the Places Found and Oblivion Gates Shut objectives.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Light the Dragonfires</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Imperial Dragon Armor</span></div>
<ul>
<li>Close all of the Oblivion Gates before doing this quest since all of the open gates will close without giving you credit for them after you finish this quest, making it impossible to complete the Oblivion Gates Shut objective.
</li></ul>
</div>
</div></div>
<div class="section" id="magesguild">
<div class="sectionTitle">Quests - Mages Guild</div>
<div class="collapsibleContent">
<ul>
<li>If you get kicked out of the Mages Guild three times before becoming the Arch Mage, all of the below quests will become impossible to complete, and the max faction rank will be unattainable.
<ul>
<li>This also means you will lose access to the Arcane University, preventing you from reading the skill books <span class="book">Mannimarco, King of Worms [Alchemy]</span>, <span class="book">Song of the Alchemists [Alchemy]</span>, <span class="book" clid="0x00073A60">Liminal Bridges [Conjuration]</span>, <span class="book" clid="0x000243F8">Response to Bero’s Speech [Destruction]</span>, <span class="book" clid="0x00024407">The Argonian Account, Book 3 [Illusion]</span>, and <span class="book">Before the Ages of Man [Mysticism]</span> in the various Arcane University facilities.
</li></ul>
</li></ul>
<div class="category">
<div class="categoryTitle"><span class="quest">Bravil Recommendation</span></div>
<ul>
<li>Trying to do this quest and <span class="quest">Through a Nightmare, Darkly</span> will be potentially problematic since it can alter <span class="npc">Kud-Ei’s</span> schedule.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Anvil Recommendation</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Cheydinhal Recommendation</span></div>
<ul>
<li>There is a <span class="nirnroot">Nirnroot</span> in the well.
</li><li><span class="book">The Firsthold Revolt [Mysticism]</span> is on bookshelf next to a crystal ball in the basement.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Fingers of the Mountain</span></div>
<ul>
<li>You need to give the book to <span class="npc">Teekeeus</span> to get +2 Fame, otherwise you will only get +1 Fame.
</li><li><span class="book">A Game at Dinner [Alchemy]</span> is on the SE bookshelf of the main floor.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Fingers of the Mountain, Part II</span></div>
<ul>
<li>You can tell <span class="npc">Earana</span> you won’t help her and the quest will still count as completed.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Skingrad Recommendation</span></div>
<ul>
<li><span class="book" clid="0x0002440D">Lord Jornibret’s Last Dance [Light Armor]</span> is on the table where you find <span class="npc">Erthor</span>.
</li><li><span class="book">Daughter of the Niben [Alteration]</span> is on a shelf in the Living Quarters of the guild hall.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Leyawiin Recommendation</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Bruma Recommendation</span></div>
<ul>
<li><span class="book">The Wolf Queen, v 3 [Illusion]</span> is downstairs in the guild hall. It will become impossible to read after the <span class="quest">Information at a Price</span> quest is completed.
<ul>
<li>More advanced players can try the Load Warping Glitch to get around this.
</li></ul>
</li><li>You can invest in <span class="npc">Selena Orania</span> in the guild hall. She will become impossible to invest in after the <span class="quest">Information at a Price</span> quest is completed.
<ul>
<li>More advanced players can try the Load Warping Glitch to get around this.
</li></ul>
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Join the Mages Guild</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Mages Guild Suspension</span></div>
<ul>
<li>You need to complete this quest before finishing <span class="quest">Confront the King</span>, otherwise you will never be able to complete it.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Mages Guild Second Suspension</span></div>
<ul>
<li>You need to complete this quest before finishing <span class="quest">Confront the King</span>, otherwise you will never be able to complete it.
</li><li>Do not get suspended a third time.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">A Mage’s Staff</span></div>
<ul>
<li>If you want to use the Dorian Glitch to farm a lot of gold quickly, choosing the Mage’s Staff of Paralysis gives you an easy paralysis spell to use for that.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Ulterior Motives</span></div>
<ul>
<li>If you haven’t talked to <span class="npc">Glarthir</span> yet, he may approach you during this quest and can potentially die, making completing the <span class="quest">Paranoid</span> quest impossible.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Vahtacen’s Secret</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Necromancer’s Moon</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Liberation or Apprehension?</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Information at a Price</span></div>
<ul>
<li>Read <span class="book">The Wolf Queen, v 3 [Illusion]</span> downstairs in the Bruma Mages Guild Hall before finishing this quest or you will never be able to read this skill book.
</li><li>Invest in <span class="npc">Selena Orania</span> in the Bruma Mages Guild Hall before finishing this quest or you will never be able to invest in her.
</li><li>Now may be a good time to buy the Skingrad House from <span class="npc">Shum gro-Yarug</span> before he potentially dies from falling off the bridge due to a bug, which would prevent you from getting 100%.
</li><li>In <span class="npc">Janus Hassildor’s</span> living quarters, you can read <span class="book">A Hypothetical Treachery [Destruction]</span> on the shelf to the right of the bed, and read <span class="book">The Wolf Queen, v 2 [Hand to Hand]</span> on the south bookshelf.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">A Plot Revealed</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Bloodworm Helm</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Necromancer’s Amulet</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Confront the King</span></div>
<ul>
<li><b>Complete <span class="quest">Mages Guild Suspension</span> and <span class="quest">Mages Guild Second Suspension</span> before finishing this quest or you will be unable to complete them.</b>
</li><li>There is a <span class="nirnroot">Nirnroot</span> in the Arch-Mage’s Quarters.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Alchemy Acquisitions</span></div>
<ul>
<li>You can invest in<span class="npc"> Julienne Fanis</span> during this quest.
</li></ul>
</div>
</div></div>
<div class="section" id="fightersguild">
<div class="sectionTitle">Quests - Fighters Guild</div>
<div class="collapsibleContent">
<ul>
<li>If you get expelled three times from the Fighters Guild, you will be unable to complete all the quests and will be unable to get 100% completion.
</li></ul>
<div class="category">
<div class="categoryTitle"><span class="quest">Join the Fighters Guild</span></div>
<ul>
<li>If your Infamy is 100 or higher, you will be unable to join the Fighters Guild unless you also have at least 100 Fame. It is highly recommended to at least join this guild early on even if you don’t do the questline itself right away, since you could potentially gain a lot of Infamy during the Thieves Guild and Dark Brotherhood questlines.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">A Rat Problem</span></div>
<ul>
<li>You need to tell Arvena Thelas that Quill-Weave was behind it to get the +1 Fame for this quest. This will also give you a +1 Speechcraft bonus.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Unfortunate Shopkeeper</span></div>
<ul>
<li>Upstairs in the Dining Hall is the <span class="book">Death Blow of Abernanit [Block]</span> skill book, in the chest in the room through the locked door.
</li><li>You can invest in <span class="npc">Norbert Lelles</span> and <span class="npc">Maenlorn</span> at the inn at the end of this quest.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Desolate Mine</span></div>
<ul>
<li>You only get the +1 Fame from this quest if all 3 of the NPCs that assist you in the cave survive.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Expelled from the Fighters Guild (Journal-Filled)</span></div>
<ul>
<li>This is a Journal-Filled quest. See the section about Journal-Filled quests for more info.
</li><li>If you do not do this quest before finishing <span class="quest">The Hist</span> then you will be unable to fill your quest journal.
</li><li>This quest is considered done after finishing the second expulsion, at which point the journal entry will say “I have been reinstated into the Fighters Guild once again...”. Do not get expelled a third time or you will be unable to complete the rest of the questline.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Unfinished Business</span></div>
<ul>
<li><b>You need to tell <span class="npc">Modryn Oreyn</span> that you completed the task to get the +1 Fame.</b>
</li><li>You can invest in <span class="npc">Erina Jeranus</span> when you go to talk to <span class="npc">Maglir</span>.
</li><li>In the Chorrol Fighters Guild Tower on the second floor of the guild hall, there is a trapdoor that leads to the <span class="book">Hallgerd’s Tale [Heavy Armor]</span> skill book in a chest.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Drunk and Disorderly</span></div>
<ul>
<li>There is a <span class="nirnroot">Nirnroot</span> on the first floor of Margarte’s House.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Den of Thieves</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Amelion’s Debt</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Master’s Son</span></div>
<ul>
<li>On the third floor of Vilena Donton’s House, there is a <span class="nirnroot">Nirnroot</span> and <span class="book">The Legendary Sancre Tor [Blunt]</span> on a shelf.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">More Unfinished Business</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Azani Blackheart</span></div>
<ul>
<li>Discover Arpenia before starting this quest, or else you will never be able to discover it.
</li><li>This quest is incredibly buggy and can cause softlocks. It is highly recommended that you save frequently, and read the list of bugs about this quest, which are hyperlinked in the 100% Checklist if you get stuck.
</li><li>The skill book <span class="book">Words and Philosophy [Blade]</span> is on a shelf in Modryn Oreyn’s House.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Fugitives</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Wandering Scholar</span></div>
<ul>
<li>If <span class="npc">Elante of Alinor</span> dies, you will not get the +1 Fame.
</li><li>After you get a quest update from escorting her, she will walk to a second spot and then hand you the skill book <span class="book">2920, Morning Star (v1) [Blade]</span>.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Trolls of Forsaken Mine</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Stone of St. Alessia</span></div>
<ul>
<li>Make sure you discover Sedor on the map before doing this quest, or else you will be unable to finish the Places Found objective. A quick fix is to simply ignore the quest marker telling you to go talk to the Bandit, and instead go straight to Sedor on your own.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Noble’s Daughter</span></div>
<ul>
<li>There is a <span class="nirnroot">Nirnroot</span> on the second floor of Lord Rugdumph’s Estate.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Mystery at Harlun’s Watch</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Information Gathering</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Infiltration</span></div>
<ul>
<li>There is a <span class="nirnroot">Nirnroot</span> on the second floor walkway of the Blackwood Company.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Hist</span></div>
<ul>
<li>Make sure you have journal-filled the Fighters Guild Expulsion quest before completing this quest, otherwise you will be unable to do it afterwards.
</li><li>There is a <span class="nirnroot">Nirnroot</span> in Jeetum-Ze’s room on the second floor.
</li></ul>
</div>
</div></div>
<div class="section" id="darkbrotherhood">
<div class="sectionTitle">Quests - Dark Brotherhood</div>
<div class="collapsibleContent">
<ul>
<li><b>Do not become a Vampire before starting the <span class="quest">Darkness Eternal</span> quest from this questline or else you will be unable to obtain the quest and get 100%.</b>
</li><li>The contract bonuses for doing extra objectives are not required for 100% since they do not increment any of the finite statistics. Failing these quests does not matter either since there is no Fame tied to them.
</li><li>If you get permanently exiled by getting kicked out three times, you will be unable to complete the Dark Brotherhood questline and be unable to get the maximum faction rank. This means that the <span class="quest">Eternal Exile</span> quest is the only one in the game that cannot be completed.
</li><li>Many quests in this questline are just a simple starter quest to point you towards the next contract giver, so they have been grouped with the primary quest they are associated with.
</li></ul>
<div class="category">
<div class="categoryTitle"><span class="quest">A Knife in the Dark</span></div>
<ul>
<li><b>If you kill <span class="npc">Lucien Lachance</span>, you will be unable to complete the rest of this questline.</b>
</li><li>You will need to kill someone to get initiated before you can start this quest. The safest NPC to kill in order to avoid softlocks is <span class="npc">Alga</span> in Bruma since she respawns for some reason, and is not related to any other objectives.
</li><li>You can invest in <span class="npc">Manheim Maulhand</span> while at the Inn of Ill Omen.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Welcome to the Family/A Watery Grave</span></div>
<ul>
<li>The skill books <span class="book">The Gold Ribbon of Merit [Marksman]</span> and <span class="book">The Rear Guard [Light Armor]</span> are in a chest in the Training Room of the Sanctuary.
</li><li>The skill book <span class="book">The Black Arrow, v 2 [Marksman]</span> is in Teinaava’s Chest in the Living Quarters.
</li><li>The skill book <span class="book">The Wolf Queen, v 6 [Sneak]</span> is in the main lobby of the Sanctuary.
</li><li>There is a <span class="nirnroot">Nirnroot</span> in Gaston Tussaud’s room.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Blood of the Damned/Accidents Happen</span></div>
<ul>
<li>There is a <span class="nirnroot">Nirnroot</span> upstairs in Baenlin’s House.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">No Rest for the Wicked/Scheduled for Execution</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">To Serve Sithis/The Assassinated Man</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Darkness Eternal</span></div>
<ul>
<li>Start this quest before <span class="quest">The Purification</span>, or else you will not be able to complete it.
</li><li>You will not be able to start this quest if you are already a vampire.
</li><li>This quest can only be completed when <span class="npc">Vicente</span> dies.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">A Dark Exile</span></div>
<ul>
<li>Complete this quest before <span class="quest">The Purification</span>, or else you will not be able to complete it.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Another Dark Exile</span></div>
<ul>
<li>Complete this quest before <span class="quest">The Purification</span>, or else you will not be able to complete it.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Renegade Shadowscale</span></div>
<ul>
<li>Complete this quest before <span class="quest">The Purification</span>, or else you will not be able to complete it. There is no failure state for this quest after starting it, so you have to complete the quest normally before <span class="npc">Teinaava</span> dies to get the maximum Quests Completed.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">My Brother’s Keeper/The Lonely Wanderer</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Enter the Eliminator/Bad Medicine</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Night Mother’s Child/Whodunit?</span></div>
<ul>
<li>Completing the bonus for this contract by not getting caught will give you a permanent skill boost of +2 to Acrobatics, Blade, Marksman, Security, and Sneak.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Assassin’s Gambit/Permanent Retirement</span></div>
<ul>
<li>In the Leyawiin Barracks, the skill book <span class="book">The Mirror [Block]</span> is in a side room on the ground floor.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Of Secret and Shadow/The Purification</span></div>
<ul>
<li><b>Start <span class="quest">Darkness Eternal</span>, and complete<span class="quest"> A Dark Exile</span>,<span class="quest"> Another Dark Exile</span>, and <span class="quest">The Renegade Shadowscale</span> before starting this quest or else you will not be able to complete these quests.</b>
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Dead Drop/Affairs of a Wizard</span></div>
<ul>
<li>The skill book <span class="book">The Art of War Magic [Destruction]</span> is on a bookshelf in Leafrot Cave.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Next of Kin</span></div>
<ul>
<li>Invest in <span class="npc">Andreas Draconis</span> before killing hum during this quest to avoid softlocking the Stores Invest In requirement. If you select the “[Say Nothing]” dialogue option, you will be able to invest in him safely.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Broken Vows</span></div>
<ul>
<li>The skill book <span class="book">Ahzirr Traajijazeri [Hand to Hand]</span> is in the basement of J’Ghasta’s House.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Final Justice</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">A Matter of Honor</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Coldest Sleep</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">A Kiss Before Dying</span></div>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Following a Lead</span></div>
<ul>
<li>You can invest in <span class="npc">Enilroth</span> after talking to him at the barrel.
</li><li>There is a<span class="nirnroot"> Nirnroot</span> inside of Ulfar Fog-Eye’s House in the lighthouse.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Whispers of Death (Journal-Filled)</span></div>
<ul>
<li>This is a Journal-Filled quest. See the section about Journal-Filled quests for more info.
</li><li>This quest is considered done just by having it in your journal since it cannot ever be updated or completed.
</li></ul>
</div>
</div></div>
<div class="section" id="thievesguild">
<div class="sectionTitle">Quests - Thieves Guild</div>
<div class="collapsibleContent">
<ul>
<li>The Thieves Guild questline has several cases where a quest can be completed along with a Blood Price for “failing” it. These situations actually reward two quests completed each, since you complete one quest for paying off the Blood Price, and a second quest for doing the actual quest itself. In most cases, completing the Blood Price actually automatically finishes the quest it is associated with even if you didn’t actually steal the required item yet.
<ul>
<li>To complete a Blood Price, you will need to pay a fine to <span class="npc">Armand</span> (and sometimes the <span class="npc">Gray Fox</span>.)
</li><li>Each quest will have a specific note detailing how its Blood Price works, as they vary a bit between quests.
</li></ul>
</li></ul>
<div class="category">
<div class="categoryTitle"><span class="quest">Finding the Thieves Guild</span></div>
<ul>
<li>This quest has no Blood Price.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">May the Best Thief Win + Blood Price</span></div>
<ul>
<li>If Amantius Allectus and Rohssan are both dead before starting this quest, you will be unable to complete the Blood Price and cannot get 100% completion.
</li><li>You can fail this quest once and be given a second objective (this is not a separate quest, but a continuation of the current one), but regardless of which of these two tasks you complete, you need to kill <span class="npc">Amantius Allectus</span> to trigger the <span class="quest">Blood Price</span>. You should not kill <span class="npc">Rohssan</span> since you need to invest in her to get the Stores Invested In objective.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Independent Thievery</span></div>
<ul>
<li>This quest has no Blood Price.
</li><li>This quest requires you to fence a total of 1000 gold, but will not complete itself until you have finished the Thieves Guild questline.
</li><li>You can invest in <span class="npc">Ongar the World-Weary</span> while selling items to him.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Cast out of the Thieves Guild (Journal-Filled)</span></div>
<ul>
<li>Do this quest before<span class="quest"> The Ultimate Heist</span> or you will never be able to start/finish it.
</li><li>This is a Journal-Filled quest. See the section about Journal-Filled quests for more info.
</li><li>This quest is considered done when you have looped it once (gotten kicked out and paid the fine to get back in.)
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Untaxing the Poor</span></div>
<ul>
<li>This quest has no Blood Price.
</li><li>There is a <span class="nirnroot">Nirnroot</span> on the top floor of the Watchtower.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Elven Maiden + Blood Price</span></div>
<ul>
<li>To trigger the <span class="quest">Blood Price</span>, you need to kill the <span class="npc">Chapel Guard</span> in the Cheydinhal Chapel Undercroft. Paying the fine to <span class="npc">Armand</span> for this will complete the quest without having to get the item.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Ahdarji’s Heirloom + Blood Price</span></div>
<ul>
<li>This quest is horribly broken. Make sure to complete this quest BEFORE the <span class="quest">Sanguine</span> quest, since a bug will softlock you from being able to complete this quest. It is highly recommended to complete <span class="quest">Sanguine</span> directly after this quest to avoid a separate bug that may prevent you from finishing that quest too.
</li><li>To trigger the <span class="quest">Blood Price</span>, kill a <span class="npc">Bravil Guard</span> in the bedroom after taking the ring. You can pay <span class="npc">S’Krivva</span> but you must also complete the rest of this quest normally as well.
</li><li>You can read <span class="book">Thief [Acrobatics]</span> upstairs in S’Krivva’s House.
</li><li>There is a <span class="nirnroot">Nirnroot</span> and the skill book <span class="book">Ice and Chitin [Light Armor]</span> in the upstairs west wing of Ahdarji’s House.
</li><li>You can read <span class="book">Warrior [Block]</span> on a shelf in the bedroom where you steal the ring.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Misdirection + Blood Price</span></div>
<ul>
<li>Kill an<span class="npc"> Imperial Battlemage</span> (the blue hooded guards) to trigger this <span class="quest">Blood Price</span>. Depending on how you’ve completed previous quests, they may be running around randomly in the Waterfront District. You can pay <span class="npc">S’Krivva</span>, and will finish the quest without doing the actual objective as long as you’ve already talked to <span class="npc">Methredhel</span> at the start of the quest.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Lost Histories + Blood Price</span></div>
<ul>
<li>Kill the <span class="npc">Jailor</span> in the Skingrad Dungeon to trigger this <span class="quest">Blood Price</span>. You can pay <span class="npc">S’Krivva</span> and you can finish the quest without doing the actual objective.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Taking Care of Lex + Blood Price</span></div>
<ul>
<li>Kill an <span class="npc">Anvil Guard</span> in Castle Anvil to trigger the <span class="quest">Blood Price</span>. You can pay <span class="npc">S’Krivva</span> but you must actually complete the objective normally as well.
</li><li>There is a <span class="nirnroot">Nirnroot</span> and the skill book <span class="book">The Red Kitchen Reader [Athletics]</span> in the Private Quarters.
</li><li>The skill book <span class="book">King [Blunt]</span> is on a bookshelf in the Royal Quarters.
</li><li>The skill book <span class="book">Chimarvamidium [Heavy Armor]</span> is upstairs in the Imperial Legion Offices.
</li><li>You can invest in <span class="npc">Orrin</span> while in Castle Anvil.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Turning a Blind Eye + Blood Price</span></div>
<ul>
<li><b>If <span class="npc">Helvius Cecia</span> (the owner of the house the <span class="npc">Gray Fox</span> is in) is dead, this quest will be impossible to complete since his script updates the quest to be completed for some reason.</b>
</li><li>Kill any of the Monks in the Monk’s Quarters outside to trigger the <span class="quest">Blood Price</span>. You will be able to pay the <span class="npc">Gray Fox</span> after giving him the stone, and must complete the quest normally.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Arrow of Extrication + Blood Price</span></div>
<ul>
<li>Kill a <span class="npc">Bravil Guard</span> in the castle to trigger the <span class="quest">Blood Price</span>. You will be able to pay the Gray Fox, but must complete the quest normally.
</li><li>In Castle Bravil, the book <span class="book">The Importance of Where [Blunt]</span> is in the Dungeon and the book <span class="book">Light Armor Repair [Armorer]</span> is in the Barracks upstairs.
</li><li>The book <span class="book">Father of the Niben [Marksman]</span> is in the Lord’s Manor North Wing.
</li><li>There is a <span class="nirnroot">Nirnroot</span> at the edge of the water in the Bravil Wizard’s Grotto.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Boots of Springheel Jak + Blood Price</span></div>
<ul>
<li>Kill <span class="npc">Gemellus Axius</span> to trigger this <span class="quest">Blood Price</span>. You need to pay <span class="npc">Armand</span> the fine before turning the quest in to the <span class="npc">Gray Fox</span>, and you need to complete the quest normally.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">The Ultimate Heist</span></div>
<ul>
<li>There is no Blood Price for this quest.
</li><li>If you get caught before you are able to obtain the Elder Scroll, you will be kicked out of the Thieves Guild and never be able to reach the max rank of the faction.
</li><li>If you do not read <span class="book">2090, Second Seed (v5) [Speechcraft]</span> on the top shelf by the final fireplace in the Imperial Battlemage’s Chambers before exiting, you will be unable to ever go back and read the book, preventing you from getting 100% completion.
<ul>
<li>More advanced players can try the Load Warping Glitch to get around this.
</li></ul>
</li><li>The book <span class="book">Fire and Darkness [Blade]</span> is in an Ayleid Cask in the side room of the Hall of Epochs. It is very inconvenient to backtrack to this location later, so it is highly recommended that you read this book now.
</li><li>The skill book <span class="book">Proper Lock Design [Security]</span> is on the top floor of Dareloth’s House.
</li></ul>
</div>
</div></div>
<div class="section" id="daedricshrines">
<div class="sectionTitle">Quests - Daedric Shrines</div>
<div class="collapsibleContent">
<ul>
<li><b>Failing any of the other Daedric Shrine quests will make it impossible to start the <span class="quest">Hermaeus Mora</span> quest.</b>
</li><li>Each Daedric Shrine quest has both Fame (except for Namira) and an artifact to count towards the Artifacts Found accomplishment. In all cases, you will earn the Fame and Artifact by doing the same thing. Each softlock will be listed, and in parentheses next to the quest name, the level and item(s) required for starting each quest will be listed for convenience.
</li><li>Shrine quests are ordered by level requirement, but it is highly recommended that you read about the <span class="quest">Sanguine</span> quest early since it has major issues that can cause softlocks.
</li></ul>
<div class="category">
<div class="categoryTitle">Azura (Level 2 - Glow Dust)</div>
</div>
<div class="category">
<div class="categoryTitle">Sheogorath (Level 2 - Lesser Soul Gem, Lettuce, and Yarn)</div>
<ul>
<li>You can invest in<span class="npc"> S’thasa</span> at the Border Watch Inn.
</li><li>There is a <span class="nirnroot">Nirnroot</span> behind the counter at the Border Watch Inn.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle">Namira (Level 5 - Personality of 20 or less)</div>
<ul>
<li>If you kill any of the priests of Arkay without letting the Forgotten do it themselves, or you kill any of the Forgotten, you will be unable to receive the Artifact.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle">Vaermina (Level 5 - Black Soul Gem)</div>
<ul>
<li>The skill book <span class="book">Palla, volume 1 [Illusion]</span> is on the table next to the Orb of Vaermina.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle">Sanguine (Level 8 - Cyrodilic Brandy)</div>
<ul>
<li>This quest is horribly broken. Make sure to complete this quest AFTER the <span class="quest">Ahdarji’s Heirloom</span> quest, since a bug will softlock you from being able to complete this quest. It is highly recommended to complete <span class="quest">Sanguine</span> directly after <span class="quest">Ahdarji’s Heirloom</span> to avoid a separate bug that may prevent you from finishing this quest too.
</li><li><b>Failing to cast the <span class="spellname">Stark Reality</span> spell on <span class="npc">Countess Alessia Caro</span> when she is sitting at the dinner table during the party will make it impossible for you to obtain the +1 Fame and Artifact for this quest.</b>
</li><li>You can invest in <span class="npc">Engorm</span> while at the shrine. After completing this quest, <span class="npc">Engorm</span> becomes non-essential and could potentially die to wildlife spawning near the shrine, resulting in not being able to invest in him.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle">Malacath (Level 10 - Troll Fat)</div>
<ul>
<li>Free the ogres. You cannot kill any of the ogres or else you will not receive the Artifact.
<ul>
<li>Guards in the mine will continue to randomly hunt you down later in the game if you do not kill them during this quest, which can cause unexpected instances of NPC combat. They will usually spawn next to you after you go to jail or pay a gold fine.
</li></ul>
</li></ul>
</div>
<div class="category">
<div class="categoryTitle">Meridia (Level 10 - Bonemeal, Ectoplasm, or Mort Flesh)</div>
</div>
<div class="category">
<div class="categoryTitle">Nocturnal (Level 10 - No offering)</div>
<ul>
<li>The Skeleton Key Artifact that you get as a quest reward gives you a +40 Security bonus that actually changes your base stat, making this +40 count towards the Master Skills requirement as long as you keep the item in your inventory.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle">Peryite (Level 10 - No offering)</div>
</div>
<div class="category">
<div class="categoryTitle">Mephala (Level 15 - Nightshade)</div>
<ul>
<li>Invest in <span class="npc">Kirsten</span> before finishing this quest, since she will potentially die or stop talking to you after finishing it, making it impossible to invest in her.
</li><li>If you get caught for any crime in Bleaker’s Way during or even before starting this quest, you will be unable to get the Artifact.
</li><li>If you kill everybody in Bleaker’s Way before you properly plant the evidence, you will fail this quest and be unable to get the Artifact.
</li><li>The only correct way to complete this quest is to properly kill each of the clan leaders, plant the evidence on both bodies, and report the attacks to another NPC at Bleaker’s Way.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle">Hircine (Level 17 - Bear Pelt or Wolf Pelt)</div>
</div>
<div class="category">
<div class="categoryTitle">Molag Bal (Level 17 - Lion Pelt)</div>
<ul>
<li>Accidentally selling or dropping the Cursed Mace will make it impossible to receive the Artifact.
</li><li>Killing <span class="npc">Melus Petilius</span> will fail the quest and you will be unable to obtain the Artifact.
</li><li>Being killed by <span class="npc">Melus Petilius</span> without him using the Cursed Mace will also fail the quest.
</li><li>There is a <span class="nirnroot">Nirnroot</span> in Torbal the Sufficient’s House, and <span class="book">The Black Arrow, v 1 [Acrobatics]</span> in the chest by the bed.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle">Boethia (Level 20 - Daedra Heart)</div>
</div>
<div class="category">
<div class="categoryTitle">Clavicus Vile (Level 20 - 500 Gold)</div>
<ul>
<li>You must choose to return the Umbra Sword to Clavicus Vile to receive the Fame and Artifact.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle">Hermaeus Mora (Level 20 - Successfully complete all other Daedric Shrine quests)</div>
<ul>
<li>Failing any of the other Daedric Shrine quests will make it impossible to start the <span class="quest">Hermaeus Mora</span> quest.
</li><li>You will receive the Oghma Infinium, which can be read to provide a massive free skill boost depending on the path you choose:
<ul>
<li>Path of Steel: +10 to Blade, Blunt, and Heavy Armor
</li><li>Path of Shadow: +10 to Light Armor, Security, and Sneak
</li><li>Path of Spirit: +10 to Conjuration, Destruction, and Restoration
</li></ul>
</li></ul>
</div>
</div></div>
<div class="section" id="mastertraining">
<div class="sectionTitle">Quests - Master Training</div>
<div class="collapsibleContent">
<ul>
<li> If any of the master trainers die before their quest is started, you will be unable to complete their quest. Trainers that are extremely prone to dying will have a dedicated note about their potential softlocks.
<ul>
<li>Additionally if both the Advanced Trainers that can recommend the quest to you die, you will be unable to start that Master Training quest. In general this is incredibly unlikely as most trainers have simple schedules, but it is still recommended to start these quests early if possible.
</li></ul>
</li><li>All of these quests can be failed by killing the trainer without compromising 100% Completion as long as you started the quest before the NPC died.
</li><li><p style="margin-bottom: 0.14in; border: none; padding: 0in; line-height: 138%; background: transparent">
Starting these quests requires getting to level 70 at a skill (which can be artificially boosted with a spell) and then talking to an <span class="nirnroot">Advanced Trainer</span> of that skill about finding further training.</p>
</li></ul>
<div class="category">
<div class="categoryTitle"><span class="quest">Acrobatics Training</span></div>
<ul>
<li><span class="npc">Torbern</span> lives outdoors, which may result in him dying randomly to wildlife at higher levels, although this is generally unlikely.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Alchemy Training</span></div>
<ul>
<li>If you choose to kill<span class="npc"> Sinderion</span> instead of doing the quest properly, make sure you have already invested in him and completed <span class="quest">Seeking Your Roots</span>, otherwise you will not get +1 Fame from that quest.
</li><li>You can invest in<span class="npc"> Sinderion</span> while doing this quest.
</li></ul>
</div>
<div class="category">
<div class="categoryTitle"><span class="quest">Alteration Training</span></div>