-
Notifications
You must be signed in to change notification settings - Fork 5
/
speedrun-4.html
4775 lines (4544 loc) · 282 KB
/
speedrun-4.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 lang="en-US"><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"/>
<script src="guide.js"></script>
<script src="autoread.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speedrun v3 — Interactive Oblivion Checklist</title>
</head>
<body class="fullscreenBody">
<!-- 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">
<article id="guide" class="mainPanel scrollablePanel" style="width: 55%;">
<div class="warning">This page is currently being used for testing and is not intended to be used for an actual run.</div>
<h1>Oblivion 100% Speedrun Route (V3)</h1>
<h3>Made by Ben Songster (MeemawHustlin) with help from the PRCLive community.</h3>
<button onclick="initSpeak()" id="enable_speech_btn">Enable speech</button>
<div class="section" id="guide_Pregame">
<div class="sectionTitle">Pregame</div>
<div class="collapsibleContent">
<ol>
<li>Enter the console commands <code>sdt 12</code> and <code>tdt</code> before the run starts, and make sure your wait timer is
set to 1 hour. <b>If the game crashes at any point, enter the <code>sdt 12</code> and <code>tdt</code> console commands again.</b></li>
<li>Move the difficulty slider to the easiest setting (all the way left)</li>
<li>Make your character a Male Redguard.</li>
<li>Time starts as soon as you click "Continue" on the first tutorial box that appears. You are not allowed to move before that happens.</li>
</ol>
</div>
</div>
<div class="section" id="guide_Tutorial">
<div class="sectionTitle">Tutorial</div>
<div class="collapsibleContent">
<ol>
<li>Click continue on the quest pop-up to start the run. Press caps lock to always be sprinting, and press <kbd>F3</kbd> to bring up the spell menu.</li>
<li>Hotkey <span class="spellname">Flare</span> and equip <span class="spellname">Adrenaline Rush</span>.</li>
<li>Cast <span class="spellname">Adrenaline Rush</span> and <span class="glitch">Save Clip</span><a class="screenshot" href="images/saveclips/SC_Tutorial_1.webp" target="_blank"></a> through the right front edge of the NE archway.</li>
<li>When you clip through the wall, run to the east until you spawn back in bounds. This is called <span class="glitch" clid="glitchvoidwarp">Void Warping</span>. If the clip doesn’t work, try setting the quicksave up again and loading again.</li>
<li>Jump up into the east archway and Save Clip through the seam between the two walls. Continue to run east after you clip until the black box is off the top of the screen, then wait until you Void Warp.</li>
<li>Take the Chameleon and Flash Bolt scrolls, as well as the lockpicks and Iron Key off the Goblin corpse. Make a save. Make sure to write down the number of the save. It will be referred to as <span class="save" clid="savepermakey">PermaKey_Save</span> later.
<li>Open the door so that the popup shows up about using the Iron Key, and press escape to load the <span class="save" clid="savepermakey" disabled="true">PermaKey_Save</span> you just made. This glitches the game into allowing you to open most doors without needing to pick the lock.
<li>Continue linearly until you get past the square room with eight pillars. Pick up the Tomato, Cheese, and Rusty Iron Shield in the center of these pillars. Then hug the right wall to find a chest just past the next area with the light shafts. Take the Potions of Healing and Weak Potion of Sorcery from it.</li>
<li>Continue linearly to the next area with a goblin. Take the Novice Mortar and Pestle from on top of the broken crate.</li>
<li>Continue to the main large area with several goblins. Take the Repair Hammer and 18 gold from the locked chest by the Goblin Shaman.</li>
<li>Continue until you get to the Imperial Subterrane. Fall down and use <span class="spellname">Flare</span> to kill the Mythic Dawn Agent up on the SW ledge.</li>
<li>Head SE and punch the <span class="npc">Emperor</span> six times to make them chase you. Run back to the door in the main area and yield when <span class="npc">Glenroy</span> is close enough to you.</li>
<li>Kill the Mythic Dawn Agent when the door opens, then wait for the next door to open and kill the other Mythic Dawn Agents that appear.</li>
<li>Run up to the Emperor and wait for him to talk to you.
<div class="dialogue" >
a. Advance predetermined dialogue.
b. Select <b>The Steed</b> as your birthsign.
c. Advance all predetermined dialogue.
</div></li>
<li>Talk to <span class="npc">Baurus</span>, who will give you a torch.
<li>Use your hotkey to equip <span class="spellname">Flare</span> again. Hit the Emperor once to get them to chase you, then run ahead and kill any Mythic Dawn Agents on your way. Yield to the Emperor when you are by the door to the next area.</li>
<li>Make sure <span class="npc">Baurus</span> spawns in the next area when you go through the door. If he doesn’t you may need to go back through the door and enter the zone again.</li>
<li>In the next area, hug the right wall and jump to the ledge across the gap. Save Clip facing west through the door. As soon as you clip through, curve around to the left and run SE until you Void Warp.</li>
<li>Head SE down the hall and <span class="spellname">Flare</span> the Mythic Dawn Agent.</li>
<li>Head back and go through the Iron Gate and talk to <span class="npc">Baurus</span>.
<ol class="dialogue"><li class="advpre">Advance predetermined dialogue.</li>
<li>Make a custom class with the following:
i. Specialization: Magic
ii. Favored Attributes: Strength and Speed
iii. Major skills: Acrobatics, Alteration, Conjuration, Destruction, Illusion, Mysticism, and
Restoration</li>
<li class="advpre">Advance predetermined dialogue.</li></ol>
<li>Continue linearly through the rest of the tutorial, going back through the Iron Gate you opened.</li>
<li><b>When you exit the sewer, change your race to a Female High Elf.</b></li>
<li><span class="quest" clid="quest0">tutorial</span> is now complete.</li>
</ol>
</div>
</div>
<div class="section" id="guide_ImperialCityMarketDistrict">
<div class="sectionTitle">Imperial City Market District</div>
<div class="collapsibleContent">
<ol>
<li>Fast travel to the Imperial City Market District and head WSW into the first archway, then hug the right wall until you find the Mystic Emporium. </li>
<li>Wait until 8am, then talk to <span class="npc">Calindil</span>. </li>
<li>Haggle to 50% sell value, then sell the Chameleon and Flash Bolt scrolls. Buy 2 of any Absorb scroll that costs 14 or less, and 1 of another Absorb scroll of the same or less cost.</li>
<li><a href="glitches.html#duping">Dupe</a> the 1 stack using the 2 stack, pick one up, then repeat and pick up all scrolls so that you have 3 of one scroll and 2 of another. Now, dupe the stacks back and forth until you have 512 of one and 768 of another.</li>
<li>From the 768 stack, sell 200, 200, then 68 scrolls back to Calindil. From the 512 stack, sell 200, 200, then 62 scrolls. You should have 300 of one type, and 50 of another, as well as over 4,300 gold at the end. </li>
<li>Read <span class="book" clid="book87">The Black Arts on Trial [Mysticism]</span> skill book on the counter.</li>
<li>Head SE to Red Diamond Jewelry. Talk to <span class="npc">Hamlof Red-Tooth</span> and buy the Brass Ring. Dupe about 300 lockpicks.</li>
</ol>
</div>
</div>
<div class="section" id="guide_MagesGuildPt1">
<div class="sectionTitle">Mages Guild Pt. 1</div>
<div class="collapsibleContent">
<div class="category" id="guide_MagesGuildPt1_BravilRecommendation">
<div class="categoryTitle">Bravil Recommendation</div>
<ol>
<li>Fast travel to Bravil.</li>
<li>Wait until 1am and head between the first two buildings on the left to buy 1 Skooma from <span class="npc">Nordinor</span>.</li>
<li>Drop the Skooma and pick it back up. Dupe the Skooma with the 50 scroll stack, and then the 300 scroll stack. Hotkey Skooma.
<ul><li>Use the <a href="./glitches.html#eightpotionglitch" target="_blank">8 potions glitch</a> to increase your movement speed everywhere you go</li>
<li>Be careful not to lose much of your fatigue bar when farming Acrobatics. If you pass out, wait an hour.</li></ul></li>
<li>Head SW towards the Mages Guild. Stop at the Chapel on your way.</li>
<li>In the Chapel Hall downstairs, read <span class="book" clid="book91">2920, Rain’s Hand (v4) [Restoration]</span> on the left shelf, and take the <span class="nirnroot" clid="0x0006F0F5">Nirnroot</span> from the south room.</li>
<li>Go to the Mages Guild, wait until 9am, and talk to <span class="npc">Kud-Ei</span>.
<ol class="dialogue"><li>Dialogue: Join the Mages Guild.</li>
<li class="train">Dialogue: Yes, I want to join the guild. (This starts <span class="quest" clid="0x0002CD10" disabled="true">Join the Mages Guild</span>)</li>
<li>Dialogue: Recommendation.</li>
<li>Dialogue: I’m ready.</li>
<li>Dialogue: Varon Vamori.</li>
<li>Dialogue: Mage’s Staff.</li></ol>
</li>
<li>Activate this quest in your journal.</li>
<li>Follow Quest Marker to talk to <span class="npc">Varon Vamori</span>.
<ol class="dialogue"><li class="bribe">Bribe to 65+ disposition.</li>
<li>Dialogue: Ardaline.
<li>Dialogue: Mage’s Staff.</li></ol>
<li>Buy <span class="spellname">Spark</span> from <span class="npc">Delphine Jend</span>.</li>
<li>Take at least 4 Cheap Wine near the east corner of the ground floor.</li>
<li>Take the Lesser Soul Gem from the SW bookshelf behind the back counter.</li>
<li>Fast travel to Imperial City Talos Plaza District.</li>
<li>Head NE, second door on the right to get to Soris Arenim’s House.</li>
<li>Talk to <span class="npc">Soris Arenim</span>.
<ol class="dialogue"><li class="bribe">Bribe to 70+ disposition.</li>
<li>Dialogue: Mage’s Staff.</li>
<li>Dialogue: It’s a deal.</li></ol></li>
<li>Fast travel to Quest Marker to talk to <span class="npc">Kud-Ei</span>.
<ol class="dialogue"><li>Dialogue: Mage’s Staff.</li></ol></li>
<li><span class="quest" clid="quest88">[quest] Bravil Mages Guild</span> is now complete.</li>
</ol>
</div>
<div class="category" id="guide_MagesGuildPt1_AnvilRecommendation">
<div class="categoryTitle">Anvil Recommendation</div>
<ol>
<li>Fast travel to Anvil Main Gate.</li>
<li>Head south to the Mages Guild and talk to <span class="npc">Carahil</span>.
<ol class="dialogue"><li>Dialogue: Recommendation.
<li>Dialogue: Yes, I’m ready.
<li>Dialogue: Go on.</li></ol></li>
<li>Fast travel to Horse Whisperer Stables and make your way to the Quest Marker to talk to <span class="npc">Arielle Jurard</span>.
<li>Follow Quest Marker to talk to <span class="npc">Christophe Marane</span>.
<ol class="dialogue"><li>Dialogue: Bed.
<li>Dialogue: I’m a merchant.
<li>Dialogue: I’ll take it.</li></ol></li>
<li>You will automatically be approached by <span class="npc">Caminalda</span>.
<ol class="dialogue"><li>Dialogue: Yes, that’s right.</li></ol></li>
<li>Go upstairs to your bed and wait 1 hour. <span class="npc">Arielle Jurard</span> will appear. Talk to her.</li>
<li>Sleep in the bed for 1 hour.</li>
<li>Heads towards the Quest Marker until <span class="npc">Caminalda</span> approaches you.</li>
<li>Kill <span class="npc">Caminalda</span> and fast travel to Quest Marker to talk to <span class="npc">Carahil</span>.
<ol class="dialogue"><li>Dialogue: Rogue Mage.</li></ol></li>
<li><span class="quest" clid="quest95">[quest] Anvil Mages Guild</span> is now complete.</li>
<li>Retrieve the Dragon’s Tongue and Nightshade in the upstairs library. The ingredients are on a table through the door in the NW corner of the library.</li>
</ol>
</div>
<div class="category" id="guide_MagesGuildPt1_CheydinhalRecommendation">
<div class="categoryTitle">Cheydinhal Recommendation</div>
<ol>
<li>Fast travel to Cheydinhal West Gate.</li>
<li>Head SE around the back of the first building to enter the well.
<ol><li>If this door does not open, load <span class="save" clid="savepermakey" disabled="true">the PermaKey_Save</span> and do the Perma Key glitch.</li></ol></li>
<li>Get the <span class="nirnroot">Nirnroot</span> at the south end of the well.</li>
<li>On the west end of the well, take the Ring of Burden off of Vidkun’s corpse.</li>
<li>Exit the well and go around to the front of the south building to enter the Mages Guild.</li>
<li>Head east down into the basement.</li>
<li>Read <span class="book" clid="book88">The Firsthold Revolt [Mysticism]</span> on the bookshelf next to the crystal ball at the bottom of the stairs.</li>
<li>Head west and open the locked door, then open the locked drawers and take the Black Soul Gems.
<ol><li>If this door does not open, load <span class="save" clid="savepermakey" disabled="true">the PermaKey_Save</span> and do the Perma Key glitch.</li></ol></li>
<li>Talk to <span class="npc">Falcar</span>. He may be anywhere in the building and is wearing black.
<ol class="dialogue"><li>Dialogue: Recommendation.
<li>Dialogue: Yes, I’m ready.</li></ol></li>
<li>Wait for the quest to update and find and talk to <span class="npc">Deetsan</span>. She is Argonian.
<ol class="dialogue"><li>Dialogue: Recommendation.</li></ol></li>
<li>Wait for the quest to update and talk to <span class="npc">Deetsan</span> again. Drop the Ring of Burden.</li>
<li><span class="quest" clid="quest90">[quest] Cheydinhal Mages Guild</span> is now complete.</li>
<li>After finishing the quest, follow the map below to get to the Mage Stone between 6pm-6am. Start from the stable outside of Cheydinhal, and make sure to discover <span class="location">Vahtacen</span>, the cave SE past Harlun’s Watch on your way there.<br/><a href="images/mageStoneLocationMap.png" target="_blank"><a href="images/mageStoneLocationMap.png" target="_blank"><img src="images/mageStoneLocationMap.png" width=200/></a></a></li>
</ol>
</div>
<div class="category" id="guide_MagesGuildPt1_FingersoftheMountainChorrolRecommendation">
<div class="categoryTitle">Fingers of the Mountain (Chorrol Recommendation)</div>
<ol>
<li>Fast travel to Chorrol North Gate. The Mages Guild is the second building on your right after going
under the first building.</li>
<li>Buy the spell <span class="spellname">Command Humanoid</span> from <span class="npc">Alberic Litte</span>.</li>
<li>Read <span class="book" clid="book8">A Game at Dinner [Alchemy]</span> on the SE bookshelf of the main floor.</li>
<li>Talk to <span class="npc">Teekeeus</span>.
<ol><li>Dialogue: Recommendation.</li>
<li> Dialogue: Earana.</li></ol></li>
<li>Make sure to activate the quest since another will automatically have been activated.</li>
<li>Follow Quest Marker to talk to <span class="npc">Earana</span>.
<ol><li>Yes, I’m interested.</li></ol></li>
<li>Walk towards an Argonian named <span class="npc">Dar-Ma</span> that is approaching you. You will automatically talk to her.
<ol><li>Dialogue: Yes, I am. Pleased to meet you. (This sets up a later quest.)</li></ol></li>
<li>Follow Quest Marker to talk to <span class="npc">Teekeeus</span>.
<ol><li>Dialogue: Fingers of the Mountain.</li></ol></li>
<li>Follow Quest Marker to find the Fingers of the Mountain book on the Charred Remains. It is fastest to do this by exiting Chorrol from the North Gate.</li>
<li>Fast travel to the Mages Guild Quest Marker to talk to Teekeeus.
<ol><li>Dialogue: Fingers of the Mountain.</li>
<li>Dialogue: Here’s the book. (this completes <span class="quest" clid="quest91">the quest</span>)</li></ol></li>
<li>Go outside and find <span class="npc">Earana</span> again. She may be at the Grey Mare near the south end of town.
<ol><li>Advance predetermined dialogue.</li>
<li>Dialogue: No, I won’t do that. (This completes <span class="quest" clid="quest92">Fingers of the Mountain, Part II</span>.)</li></ol></li>
</div>
<div class="category" id="guide_MagesGuildPt1_SkingradRecommendation">
<div class="categoryTitle">Skingrad Recommendation</div>
<ol>
<li>Fast travel to Skingrad West Gate. Travel north up the hill. The Mages Guild will be the second building on your left.</li>
<li>Buy <span class="spellname">Curse of Weakness</span> from <span class="npc">Druja</span>, and <span class="spellname">Corrode Armor</span>, <span class="spellname">Drain Skill: Illusion</span> and <span class="spellname">Soul Trap</span> from <span class="npc">Sulinus Vassinus</span>.</li>
<li>Talk to <span class="npc">Adrienne Berene</span>.
<ol><li>Dialogue: Recommendation.</li>
<li>Dialogue: Yes, I’ll do it.</li></ol></li>
<li>Make sure to activate the quest.
<li>Fast travel to the stable outside of Skingrad. Head NNW until you find Bleak Flats Cave.
<li>Enter Bleak Flats Cave and kill the seven Deranged Zombies as you go through the cave. Look at the in game map to make sure you aren’t skipping sections of the cave.</li>
<li>Talk to <span class="npc">Erthor</span>.
<ol><li>Dialogue: Find your own way back.</li></ol></li>
<li>Read <span class="book" clid="book71">Lord Jornibret’s Last Dance [Light Armor]</span> on the table.</li>
<li>Exit the cave via the lever at the end of <span class="npc">Erthor</span>’s hideout and hug the left wall to get out faster.</li>
<li>Fast travel to Quest Marker to return to the Mages Guild.</li>
<li>Wait 1 hour, and then follow Quest Marker to talk to <span class="npc">Adrienne Berene</span>.
<ol><li>Dialogue: Recommendation.</li></ol></li>
<li>This completes <span class="quest" clid="quest94">Skingrad Recommendation</span></li>
<li>Go upstairs to the living quarters and take the Minotaur Horn out of the green display case.</li>
<li>Go through the door across the hall and read <span class="book" clid="book11">Daughter of the Niben [Alteration]</span> on the middle shelf.</li>
</div>
<div class="category" id="guide_MagesGuildPt1_LeyawiinRecommendation">
<div class="categoryTitle">Leyawiin Recommendation</div>
<ol>
<li>Fast travel to Leyawiin West Gate. Head south to the second building on your right to find the Mages Guild.</li>
<li>Buy <span class="spellname">Dispel Other</span> from <span class="npc">Alves Uvenim</span>.</li>
<li>Find <span class="npc">S’drassa</span> in the Mages Guild and talk to him.
<ol>
<li>Advance predetermined dialogue.</li>
<li>Dialogue: Certainly. Please proceed. (This starts a later quest.)</li>
<li>Dialogue: Garridan’s Tears.</li>
</ol></li>
<li>Talk to <span class="npc">Dagail</span>.
<ol>
<li>Yes, I’ll help.</li>
</ol></li>
<li>Make sure to activate this quest in your journal. Follow Quest Marker to talk to <span class="npc">Agata</span>.
<ol>
<li>Dialogue: Seer’s Stone.</li>
</ol></li>
<li>Find the Quest Marker pointing to <span class="npc">Kalthar</span>.
<ol>
<li>Dialogue: Seer’s Stone.</li>
</ol></li>
<li>Follow Quest Marker to talk to <span class="npc">Agata</span>.
<ol>
<li>Dialogue: Seer’s Stone.</li>
</ol></li>
<li>Follow Quest Marker to talk to <span class="npc">Dagail</span>.</li>
<li>Fast travel to Leyawiin North East Gate and exit the city to go to the Quest Marker.</li>
<li>Take the first right and Save Clip through the left side of the gate, then proceed through the door to the next area.
<ol>
<li>If this door does not open, load <span class="save" clid="savepermakey" disabled="true">the PermaKey_Save</span> and do the Perma Key glitch.</li>
</ol></li>
<li>Proceed to the coffin the Quest Marker is pointing to and take Manduin’s Amulet from it.
<ol>
<li>If this door does not open, load <span class="save" clid="savepermakey" disabled="true">the PermaKey_Save</span> and do the Perma Key glitch.</li>
</ol></li>
<li><span class="npc">Kalthar</span> will talk to you automatically as you leave the dungeon. Answer however you want and then kill him.</li>
<li>Exit the fort and fast travel to Quest Marker to talk to <span class="npc">Dagail</span>.
<ol>
<li>Dialogue: Seer’s Stone.</li>
</ol></li>
<li>Exit dialogue and talk to <span class="npc">Dagail </span>again.</li>
<li>This completes <span class="quest" clid="quest89">Leyawiin Recommendation</span></li>
</ol>
</div>
<div class="category" id="guide_MagesGuildPt1_BrumaRecommendation">
<div class="categoryTitle">Bruma Recommendation</div>
<ol>
<li>Fast travel to Bruma East Gate and head to the Mages Guild at the north end of the raised middle section of buildings.</li>
<li>Talk to <span class="npc">Jeanne Frasoric</span>.
<ol>
<li>Dialogue: Recommendation.</li>
<li>Dialogue: J’skar</li>
</ol></li>
<li>Equip <span class="spellname">Minor Life Detection</span> and cast it, looking for an invisible NPC. He will likely be downstairs.</li>
<li>When you find him, equip and cast <span class="spellname">Dispel Other</span> on him.</li>
<li>Talk to <span class="npc">J’skar</span>.</li>
<li>Downstairs, read <span class="book" clid="book69">The Wolf Queen, v 3 [Illusion]</span> on the desk in the room with the two beds, take the Redwort Flower on the bookshelf from the adjacent room down the hall, and take the Glow Dust from the back table in the room across the hallway.</li>
<li>Follow Quest Marker to talk to <span class="npc">Jeanne Fraosric</span>.
<ol>
<li>Dialogue: J’skar.</li>
</ol></li>
<li>This completes <span class="quest" clid="quest93">Bruma Recommendation</span></li>
</ol>
</div>
<div class="category" id="guide_MagesGuildPt1_JointheMagesGuild">
<div class="categoryTitle">Join the Mages Guild/A Mage’s Staff</div>
<ol>
<li>Fast travel to Quest Marker to talk to <span class="npc">Raminus Polus</span>.
<ol>
<li>Dialogue: Recommendation. (This completes <span class="quest" clid="quest87">Join the Mages Guild</span>)</li>
</ol></li>
<li>Talk to <span class="npc">Raminus Polus</span> again.
<ol>
<li>Dialogue: Tasks.</li>
<li>Dialogue: Mage’s Staff.</li>
</ol></li>
<li>Open the display case and take the 2 filled Grand Soul Gems and the 1 Empty Grand Soul Gem. This will require spamming auto-attempt until level 25 Security, then locking in one tumbler manually and auto-attempting until it opens.</li>
<li>Exit the Arcane University and move towards the Quest Marker.</li>
<li>Once inside Wellspring Cave, go to the door at the end of the cave and exit outside.
<ol>
<li>If this door does not open, load <span class="save" clid="savepermakey" disabled="true">the PermaKey_Save</span> and do the Perma Key glitch.</li>
</ol></li>
<li>Once outside, kill the Necromancer that approaches you along with the other two. A quest update will appear when they are all dead.</li>
<li>Take the Unfinished Staff from the stone chest.</li>
<li>Fast travel to Quest Marker to talk to <span class="npc">Raminus Polus</span>.
<ol>
<li>Dialogue: Necromancers.</li>
</ol></li>
<li>Follow Quest Marker to talk to <span class="npc">Delmar</span>.
<ol>
<li>Dialogue: Mage’s Staff.</li>
<li>Dialogue: Yes.</li>
<li>Dialogue: Illusion</li>
<li>Dialogue: Paralyze</li>
<li>Dialogue: That’s what I want.</li>
</ol></li>
<li>Wait until 12am the next day and take the Mage’s Staff of Paralysis from the cupboard in the back of the room. Keep the staff.</li>
<li>This completes <span class="quest" clid="quest99">A Mage's Staff</span></li>
</ol>
After completing all of the Mages Guild Recommendations, you should now have all the spell effects you will need for making the farming spells for the rest of the game.
</div>
</div>
</div>
<div class="section" id="guide_GoldFarming">
<div class="sectionTitle">Gold Farming/Arcane University</div>
<div class="collapsibleContent">
<ol>
<li>Read <span class="book" clid="book86">Before the Ages of Man [Mysticism]</span> on the altar to your immediate right. </li>
<li>Go outside and head left into the Lustratorium and read <span class="book" clid="book10">Song of the Alchemists [Alchemy]</span> on the bookshelf on the back wall. </li>
<li>Next, exit and start heading to the right towards the farthest door. On the way, go into the Mage’s Quarters and grab the <span class="nirnroot">Nirnroot</span> in the side room on the main floor. Leave and continue moving towards the far end of the Arcane University.</li>
</ol>
Once you get to the Praxographical Center, go to the spellmaking altar and create the following spell: <b>The naming conventions of spells will be used throughout the guide.</b>
<br/>
<table>
<tr><th>Spell</th><th>Effects</th></tr>
<tr><td><span class="spellname">D_DisposDrain</span></td><td> Command Humanoid (On Touch, 4 magnitude, 0 area, 1 second)</td></tr></table>
<br/><br/>
<ol>
<li>To farm gold, start by fast traveling to the Imperial City Talos Plaza District. Head SSE and go into Dorian’s House. Equip <span class="spellname">D_DisposDrain</span> and take off any armor if you are wearing it.</li>
<li>Repeat the following sequence 12 times:
<ol><li>Cast <span class="spellname">D_DisposDrain</span> on Dorian.</li>
<li>Bribe Dorian to max disposition (should be around 90).</li></ol></li>
<li>Use the Mage’s Staff of Paralysis on Dorian. Immediately pickpocket him once he is paralyzed to avoid getting a massive bounty. Spam click the gold in his inventory until you have 425,000 gold. You should get about 1,000 gold per click.</li>
<li>Once you are done with that, drop the staff. Go outside and talk to a guard to pay the 40 gold for your fine.</li>
<li>Return to the Arcane University and go to the Chironasium, which is the second farthest right door.</li>
<li>Dupe the filled Grand Soul Gems so that you have 35 to use for enchanting. Dupe the Brass Ring until you have 34 of them.</li>
<li>Drop 48 of your 50 scroll stack so that you have a 2 scroll stack. <b>Drop all Skooma except for one and stop drinking it for now.</b></li>
<li>Do the following sequence:
<ol><li>Enchant the Brass Ring to Fortify Strength 10 points using a filled Grand Soul Gem. Make sure the name of the ring is unique, so name them incrementing numbers as you go.</li>
<li>Dupe the ring using a 2 scroll stack.</li>
<li>Pick up duped rings and equip one copy of it.</li>
<li>Use the 2 scroll stack to dupe again, dropping the copy that is not equipped.</li>
<li>You now have a permanent +10 Strength glitched onto your character.</li></ol></li>
<li>Repeat this process a total of 5 times for a +50 Strength bonus (85 total). Repeat again for the remaining 29 rings selecting Speed instead of Strength to get +290 Speed (355 total). Make sure to keep 1 Filled Grand Soul Gem, and pick up the 48 scrolls you dropped.</li>
<li>Head back to the Praxographical Center (the last door at the far end).</li>
</ol>
Make the following six spells, with these exact names, as they will be referenced later.<br/>
<b>The order of the effects needs to be exactly as listed in order for the spells to farm the right skill:</b><br/>
<table>
<tr><th>Spell</th><th>Effects</th></tr>
<tr><td><span class="spellname">A_Alt</span></td><td>Shield (On Touch, 3%, 1 second)<br/>Fortify Magicka (Self, 21 points, 2 seconds)</td></tr>
<tr><td><span class="spellname">A_Conj</span></td><td>Turn Undead (On Touch, 0 points, 1 second)<br/>Fortify Magicka (Self, 21 points, 2 seconds)</td></tr>
<tr><td><span class="spellname">A_Dest</span></td><td>Damage Fatigue (On Touch, 3 points, 1 second)<br/>Fortify Magicka (Self, 21 points, 2 seconds)</td></tr>
<tr><td><span class="spellname">A_Illus</span></td><td>Light (On Touch, 3 ft, 1 second)<br/>Fortify Magicka (Self, 21 points, 2 seconds)</td></tr>
<tr><td><span class="spellname">A_Myst</span></td><td>Dispel (On Touch, 3 points)<br/>Fortify Magicka (Self, 21 points, 2 seconds)</td></tr>
<tr><td><span class="spellname">A_Rest</span></td><td>Fortify Magicka (Self, 21 points, 2 seconds)<br/>Light (On Touch, 3 ft, 1 second)</td></tr>
</table>
Fast travel to the stable outside of Skingrad and head south to get the Apprentice Doomstone. This will replace your fortify magicka ability with a fortify skill ability.
<br/><br/>
Go back to the Arcane University and make more spells:
<table>
<tr><th>Spell</th><th>Effects</th></tr>
<tr><td><span class="spellname">B_Acrobatics</span></td><td>Fortify Acrobatics (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Alchemy</span></td><td>Fortify Alchemy (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Alteration</span></td><td>Fortify Alteration (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Armorer</span></td><td>Fortify Armorer (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Athletics</span></td><td>Fortify Athletics (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Blade</span></td><td>Fortify Blade (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Block</span></td><td>Fortify Block (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Blunt</span></td><td>Fortify Blunt (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Conjuration</span></td><td>Fortify Conjuration (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Destruction</span></td><td>Fortify Destruction (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_HandtoHand</span></td><td>Fortify Hand to Hand (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_HeavyArmor</span></td><td>Fortify Heavy Armor (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Illusion</span></td><td>Fortify Illusion (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_LightArmor</span></td><td>Fortify Light Armor (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Marksman</span></td><td>Fortify Marksman (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Mercantile</span></td><td>Fortify Mercantile (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Mysticism</span></td><td>Fortify Mysticism (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Restoration</span></td><td>Fortify Restoration (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Security</span></td><td>Fortify Security (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Sneak</span></td><td>Fortify Sneak (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">B_Speechcraft</span></td><td>Fortify Speechcraft (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">C_Armorer</span></td><td>Drain Armorer (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">C_Athletics</span></td><td>Drain Athletics (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">C_Blade</span></td><td>Drain Blade (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">C_Block</span></td><td>Drain Block (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">C_Blunt</span></td><td>Drain Blunt (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">C_HandtoHand</span></td><td>Drain Hand to Hand (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">C_HeavyArmor</span></td><td>Drain Heavy Armor (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">C_LightArmor</span></td><td>Drain Light Armor (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">C_Marksman</span></td><td>Drain Marksman (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">C_Mercantile</span></td><td>Drain Mercantile (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">C_Security</span></td><td>Drain Security (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">C_Sneak</span></td><td>Drain Sneak (Self, 100 points, 1 second)</td></tr>
<tr><td><span class="spellname">C_Speechcraft</span></td><td>Drain Speechcraft (Self, 100 points, 1 second)</td></tr>
</table>
<br/>
Exit the spellmaking altar. Cast <span class="spellname">B_Destruction</span> and immediately activate the altar to make this spell:
<table><tr><th>Spell</th><th>Effects</th></tr>
<tr><td><span class="spellname">D_ArmorerFarm</span></td><td>Disintegrate Armor (Self, 100 points, 1 second)<br/>Fortify Magicka (Self, 100 points, 2 seconds)<br/>Light (Touch, 3 points, 1 second)</td></tr>
</table>
At this point, hotkey all of your <span class="spellname">A_[Skill]</span> spells and <span class="spellname">B_Mercantile</span>.
</div>
</div>
<div class="section" id="guide_InvestingCircuit">
<div class="sectionTitle">Investing Circuit</div>
<div class="collapsibleContent">
Now that you can get your Mercantile to 75+ with a spell, you can go around investing in every shop owner in the game. It is best to do this early since some quests interfere with your ability to invest and merchants can randomly die and ruin the run.
<br/>
<p><b>You should now start farming Acrobatics constantly for the rest of the run.</b> Unfortunately, you cannot spam your farming spells during this part since the investing spell requires magicka.</p>
Do the following additional tasks at various peoples’ stores/homes:
<ul><li>Follow the red line on each map to each numbered location and do the tasks listed.</li>
<li>Whenever instructed to <b>Invest</b>, cast the <span class="spellname">B_Mercantile </span>spell and immediately talk to the NPC, then select the “Invest 500 gold in this shop” dialogue option.</li>
<li>Whenever instructed to start a training quest, cast the <span class="spellname">B_[Skill]</span> spell and immediately talk to the NPC, then select the “Training” dialogue option.</li>
</ul>
</p>
<div class="category" id="guide_InvestingCircuit_CheydinhalWestGate">
<div class="categoryTitle">Cheydinhal - West Gate:</div>
<a href="images/InvestingCircuit_Cheydinhal.png" target="_blank"><img src="images/InvestingCircuit_Cheydinhal.png" name="InvestingCircuit_Cheydinhal" width="480" height="259" border="0" align="bottom"></a>
<ol>
<li>Mach-Na’s Books:
<ul><li><b>Invest</b> in <span class="store" clid="0x00003641">Mach-Na</span>.
<ul><li>Buy and read <span class="book" clid="book96">Advances in Lock Picking [Security]</span>.</li></ul></li>
<li><span class="nirnroot">Nirnroot</span> in the upstairs bedroom.</li></ul></li>
<li>The March Rider:
<ul><li><b>Invest</b> in <span class="store" clid="0x0000363B">Tertia Viducia</span>.</li></ul></li>
<li>Mages Guild:
<ul><li><b>Invest</b> in <span class="store" clid="0x0000364A">Eilonwy</span>.</li></ul></li>
<li>Willow Bank:
<ul><li>Read <span class="book" clid="book65">Incident in Necrom [Illusion]</span> on the second floor table by the bed.</li></ul></li>
<li><span class="nirnroot">Nirnroot</span> next to the bridge.</li>
<li>Riverview:
<ul><li><span class="nirnroot">Nirnroot</span> at top of stairs.</li></ul></li>
<li>Ganredhel’s House:
<ul><li>Talk to <span class="npc">Ganredhel</span> to start the <span class="quest" clid="quest147" disabled="true">Acrobatics Training</span> quest using <span class="spellname">B_Acrobatics</span>. Wait until 1pm-2pm before entering the house.</li>
<li>Read <span class="book" clid="book2">A Dance in Fire, v1 [Acrobatics]</span> on the dresser upstairs.</li></ul></li>
<li>The Great Chapel of Arkay:
<ul><li>Talk to <span class="npc">Gruiand Garrana</span> to start the <span class="quest" clid="quest167" disabled="true">Speechcraft Training</span> quest using <span class="spellname">B_Speechcraft</span>.</li>
<li>Talk to <span class="npc">Ohtesse</span> downstairs in the Chapel Hall to start the <span class="quest" clid="quest164" disabled="true">Restoration Training</span> quest using <span class="spellname">B_Restoration</span>.</li></ul></li>
<li>Misc:
<ul><li>Fast travel to Castle Cheydinhal and go through the first door on the left inside the hall to talk to <span class="npc">Ra’qanar</span> and start the <span class="quest" clid="quest157" disabled="true">Hand to Hand Training</span> quest using <span class="spellname">B_HandtoHand</span>.</li>
</ul></li>
</ol>
</div>
<div class="category" id="guide_InvestingCircuit_ChorrolSouthGate">
<div class="categoryTitle">Chorrol - South Gate:</div>
<a href="images/InvestingCircuit_Chorrol.png" target="_blank"><img src="images/InvestingCircuit_Chorrol.png" name="Image2" width="387" height="329" border="0" align="bottom"></a></p>
<ol>
<li>Fire and Steel:
<ul><li><b>Invest</b> in <span class="store" clid="0x000234FC">Rasheda</span>.</li>
<li><b>Invest</b> in <span class="store" clid="0x0002350D">Sabine Laul</span> if she is here.</li>
<li>Read <span class="book" clid="book58">2920, Mid Year (v6) [Heavy Armor]</span> on a shelf upstairs.</li>
</ul></li>
<li>Fighters Guild:
<ul><li><b>Invest</b> in <span class="store" clid="0x0002350D">Sabine Laul</span> if you haven’t. Usually in the basement.</li>
<li>Talk to <span class="npc">Lum gro-Baroth </span>to start the <span class="quest" clid="quest153" disabled="true">Block Training</span> quest using <span class="spellname">B_Block</span>. Usually in the basement.
<ul><li>If he is not in the basement, check the back outdoor area.</li>
<li>If <span class="npc">Honditar</span> is there, start the <span class="quest" clid="quest151" disabled="true">Athletics Training </span>quest using <span class="spellname">B_Athletics</span>.</li></ul></li>
</ul></li>
<li>Mages Guild:
<ul><li><b>Invest</b> in <span class="store" clid="0x00023508">Angalmo</span>.</li>
<li>Talk to <span class="npc">Alberic Litte</span> to start the <span class="quest" clid="quest155" disabled="true">Conjuration Training</span> quest using <span class="spellname">B_Conjuration</span>.</li>
<li>Talk to <span class="npc">Athrager</span> to start the <span class="quest" clid="quest149" disabled="true">Alteration Training</span> quest using <span class="spellname">B_Alteration</span>.</li>
<li>Get the Silver Pitcher and 4 Silver Glasses on the second floor library.</li>
</ul></li>
<li>Outside by tree:
<ul><li>If you haven’t talked to <span class="npc">Honditar</span>, wait until 10am to 8pm to talk to him and start the <span class="quest" clid="quest151" disabled="true">Athletics Training </span>quest using <span class="spellname">B_Athletics</span>.</li>
</ul></li>
<li>The Oak and Crosier:
<ul><li><b>Invest</b> in <span class="store" clid="0x00023502">Talasma</span>.</li>
</ul></li>
<li>Northern Goods and Trade:
<ul><li><b>Invest</b> in <span class="store" clid="0x000234FD">Seed-Neeus</span>.</li>
<li>Start the <span class="quest" clid="quest162" disabled="true">Mercantile Training</span> quest by using <span class="spellname">B_Mercantile</span>.
<ol><li>Buy 5 levels of Mercantile training using <span class="spellname">C_Mercantile</span>.</li>
</ol></li>
</ul></li>
<li>Renoit’s Books:
<ul><li><b>Invest</b> in <span class="store" clid="0x000234DB">Estelle Renoit</span>.</li>
<li>Read <span class="book" clid="book79">Vernaccus and Bourlor [Marksman]</span>, on the middle of three shelves.</li>
</ul></li>
<li>Chapel of Stendarr:
<ul><li>Read <span class="book" clid="book94">Notes on Racial Phylogeny [Restoration]</span> in the Chapel Hall, west side room in a chest.</li>
</ul></li>
<li>Casta Scribonia’s House:
<ul><li><span class="nirnroot">Nirnroot </span>upstairs.</li>
<li>Read <span class="book" clid="book82">A Dance in Fire, v6 [Mercantile]</span>, upstairs on a shelf.</li>
</ul></li>
</ol>
</div>
<div class="category" id="guide_InvestingCircuit_AnvilCastleGate">
<div class="categoryTitle">Anvil Castle Gate:</div>
<a href="images/InvestingCircuit_Anvil.png" target="_blank"><img src="images/InvestingCircuit_Anvil.png" name="Image3" width="427" height="343" border="0" align="bottom"></a>
<ol>
<li>Chapel of Dibella:
<ul><li>Read <span class="book" clid="book41">2920, Frostfall (v10) [Conjuration]</span> in the Chapel Hall on a desk in the east side room.</li>
</ul></li>
<li>Heinrich Oaken-Hull’s House:
<ul><li><span class="nirnroot">Nirnroot</span> upstairs in a side room.</li>
</ul></li>
<li><span class="nirnroot">Nirnroot </span>by the statue.</li>
<li>Fighters Guild:
<ul><li>Talk to <span class="npc">Azzan</span> to start the <span class="quest" clid="quest154" disabled="true">Blunt Training</span> quest using <span class="spellname">B_Blunt</span>.
<ol>
<li>Dialogue: Join the Fighters Guild.</li>
<li>Dialogue: Yes. Sign me up. (This completes <span class="quest" clid="quest56">Join the Fighters Guild</span>.)</li>
<li>Dialogue: Contract.</li>
<li>Dialogue: Rats. (This starts a future quest.)</li>
</ol></li>
<li>Talk to <span class="npc">Rhano</span> to start the <span class="quest" clid="quest152" disabled="true">Blade Training</span> quest using <span class="spellname">B_Blade</span>.</li>
</ul></li>
<li>Mages Guild:
<ul><li><b>Invest</b> in <span class="store" clid="0x0002D06C">Felen Relas</span>.</li>
</ul></li>
<li>Morvayn’s Peacemakers:
<ul><li><b>Invest</b> in <span class="store" clid="0x0000BC6E">Varel Morvayn</span>.</li>
</ul></li>
<li>The Count’s Arms:
<ul><li><b>Invest</b> in <span class="store" clid="0x0000BC76">Wilbur</span>.</li>
<li>Talk to <span class="npc">Velwyn Benirus </span>(to the left of <span class="npc">Wilbur</span>).
<ol>
<li>Dialogue: Manor.</li>
<li>Dialogue: Yes, here’s 5,000 gold. (This starts a future quest.)</li>
</ol></li>
</ul></li>
<li>Pinarus Inventius’ House:
<ul><li>Talk to <span class="npc">Pinarus Inventius</span>.
<ul><li>Bribe to max disposition and start the <span class="quest" clid="quest161" disabled="true">Marksman Training</span> quest using <span class="spellname">B_Marksman</span>.</li></ul></li>
</ul></li>
</ol>
</div>
<div class="category" id="guide_InvestingCircuit_ImperialCityMarketDistrict">
<div class="categoryTitle">Imperial City - Market District:</div>
<a href="images/InvestingCircuit_ICMarketDistrict.png" target="_blank"><img src="images/InvestingCircuit_ICMarketDistrict.png" name="Image4" width="412" height="368" border="0" align="bottom"></a>
<ol>
<li>Office of Imperial Commerce:
<ul><li>Talk to <span class="npc">Vinicia Melissaeia</span> to buy <span class="misc" clid="misc22">the house</span>. (You may have to bribe her)</li>
<li>Read <span class="book" clid="book84">The Wolf Queen, v 4 [Mercantile] </span>on the counter in front of her.</li>
</ul></li>
<li>The Best Defense:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D211">Maro Rufus</span>.</li>
<li><b>Invest</b> in <span class="store" clid="0x0001D210">Varnado</span>.
<ul><li>Start the <span class="quest" clid="quest158" disabled="true">Heavy Armor Training</span> quest using <span class="spellname">B_HeavyArmor</span>.</li></ul></li>
</ul></li>
<li>The Gilded Carafe:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D212">Claudette Perrick</span>.</li>
<li><span class="nirnroot" clid="0x0006F270">Nirnroot</span> in the back of the room.</li>
</ul></li>
<li>Slash ‘N Smash:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D213">Urbul gro-Orkulg</span>.</li>
</ul></li>
<li>Mystic Emporium:
<ul><li><span class="nirnroot" clid="0x0006D963">Nirnroot</span> in the Private Quarters upstairs in the side room.</li>
</ul></li>
<li>Divine Elegance:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D207">Palonirya</span>.</li>
<li>Dialogue: Training. (This completes the <span class="quest" clid="quest162">Mercantile Training</span> quest.)</li>
</ul></li>
<li>Rindir’s Staffs:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D15E">Rindir</span>.</li>
<li>Buy the Apotheosis staff. Equip this as your main weapon for the rest of the run. Dupe and Hotkey 300 filled Grand Soul Gems and use these to recharge the staff when it runs out of charge. <b>Make sure to dupe Grand Soul Gems if you ever run low.</b></li>
</ul></li>
<li>Black Horse Courier:
<ul><li>Read <span class="book" clid="book80">2920, Sun’s Height (v7) [Mercantile]</span> on the back desk.</li>
</ul></li>
<li>Three Brothers Trade Goods:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D20A">Tertullian Verus</span>.</li>
<li><b>Invest</b> in <span class="store" clid="0x0001D209">Sergius Verus</span>.
<ul><li>Buy All home furnishings to complete <span class="quest" clid="quest191">Buy a house in the Imperial City</span></li>
<li>Buy 1 bear pelt.</li></ul></li>
</ul></li>
<li>Jensine’s “Good as New” Merchandise:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D20B">Jensine</span>.
<ol>
<li>Dialogue: Thoronir.</li>
<li>Dialogue: Start from the beginning. (This starts a future quest)</li>
</ol></li>
</ul></li>
<li>The Feed Bag:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D20D">Delos Fandas</span>.</li>
</ul></li>
<li>Red Diamond Jewelry:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D20F">Hamlof Red-Tooth</span>.</li>
</ul></li>
<li>Outside courtyard:
<ul><li>Acquire Yarn from the crates outside.</li>
</ul></li>
<li>The Main Ingredient:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D159">Ogier Georick</span>.</li>
</ul></li>
<li>A Fighting Chance:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D15A">Rohssan</span>.
<ul><li>Start <span class="quest" clid="quest150">Armorer Training</span> quest using <span class="spellname">B_Armorer</span> spell.</li></ul></li>
<li>Read <span class="book" clid="book19">Last Scabbard of Akrash [Armorer]</span> in the Private Quarters upstairs side room on the top shelf.</li>
</ul></li>
<li>The Merchants Inn:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D15B">Velus Hosidius</span>.</li>
</ul></li>
<li>First Edition:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D158">Phintias</span>.
<ul><li>Buy and read <span class="book" clid="book16">The Armorer’s Challenge [Armorer]</span>.</li></ul></li>
<li>Read <span class="book" clid="book17">Cherim’s Heart of Anequina [Armorer]</span> in the Private Quarters upstairs on a desk.</li>
</ul></li>
<li>The Copious Coinpurse:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D15D">Thoronir</span>.
<ol>
<li>Dialogue: Inventory</li>
<li>Dialogue: Where do you get it?</li></ol></li></ul>
</li>
<li>Stonewall Shields:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D15C">Viator Accius</span>.</li>
</ul></li>
</ol>
</div>
<div class="category" id="guide_InvestingCircuit_ElvenGardensDistrict">
<div class="categoryTitle">Elven Gardens District:</div>
<a href="images/InvestingCircuit_ICElvenGardens.png" target="_blank"><img src="images/InvestingCircuit_ICElvenGardens.png" name="InvestingCircuit ElvenGardensDistrict" width="372" height="307" border="0" align="bottom"/></a>
<ol start="0">
<li>Talk to an Argonian named <span class="npc">Gin-Wulm</span> wandering around this district from 9am to 12pm.
<ol><li>Dialogue: Training.</li>
<li>Dialogue: He won the Armorer’s Challenge.</li>
<li>This completes the <span class="quest" clid="quest150">Armorer Training</span> quest.</li>
</ol></li>
<li>Irene Metrick’s House:
<ul><li>Kill <span class="npc">Irene Metrick</span> to complete the <span class="quest" clid="quest154">Blunt Training</span> quest, then pay the gold fine. Fast travel back to the Elven Gardens and resume the route.</li>
</ul></li>
<li>Guard House:
<ul><li>Read <span class="book" clid="book31">A Dance in Fire, v2 [Block]</span> on the table by the stairs.</li>
</ul></li>
<li>Dovyn Aren’s House:
<ul><li>Read <span class="book" clid="book12">The Dragon Break [Alteration]</span> upstairs on the table next to the desk on top of the red book.</li>
</ul></li>
<li>Othrelos’ House:
<ul><li>Talk to <span class="npc">Othrelos</span> to start the <span class="quest" clid="quest166">Sneak Training</span> quest using <span class="spellname">B_Sneak</span>. He will be in his house from 6pm to 8pm except on the 7th and 8th of each month. Try waiting until 1pm to catch him leaving his house if this doesn’t work.</li>
<li>Talk to <span class="npc">Mandil</span> to start the <span class="quest" clid="quest165">Security Training</span> quest using <span class="spellname">B_Security</span>. She can be very hard to find, just keep waiting 24 hours and entering Othrelos’ house around 6pm to 8pm to find her eventually.</li></ul>
</li>
</ol>
</div>
<div class="category" id="guide_InvestingCircuit_TalosPlazaDistrict">
<div class="categoryTitle">Talos Plaza District:</div>
<a href="images/InvestingCircuit_ICTalosPlaza.png" target="_blank"><img src="images/InvestingCircuit_ICTalosPlaza.png" name="Image6" width="296" height="277" border="0" align="bottom"/></a>
<ol>
<li>The Tiber Septim Hotel:
<ul><li><b>Invest</b> in <span class="store" clid="0x0002F878">Augusta Calidia</span>.</li>
<li>Bribe <span class="npc">Ontus Vanin</span> to full disposition between 12pm and 2pm on any day but Sundas or Loredas.</li>
</ul></li>
<li>Samuel Bantien’s House:
<ul><li><span class="nirnroot">Nirnroot </span>upstairs.</li>
</ul>
</ol>
</div>
<div class="category" id="guide_InvestingCircuit_TempleDistrict">
<div class="categoryTitle">Temple District:</div>
<a href="images/InvestingCircuit_ICTempleDistrict.png" target="_blank"><img src="images/InvestingCircuit_ICTempleDistrict.png" name="Investing Circuit Temple District" width="371" height="325" border="0" align="bottom"/></a>
<ol start="0">
<li><span class="npc">Ralsa Norvalo</span> will talk to you automatically at some point. Wait outside if she doesn’t do this before you finish the other tasks.
<ol>
<li>Dialogue: I’m sorry, and you are?</li>
<li>Dialogue: Sure, how can I help?</li>
<li>Advance predetermined dialogue. (This starts a future quest.)</li>
</ol></li>
<li>The Temple of the One:
<ol><li>Talk to <span class="npc">Tandilwe</span>.
<ol><li>Dialogue: Training.</li>
</ol></li>
<li>Go outside in the Temple District and kill <span class="npc">Ragbag Buntara</span>. (Pay gold fine to guard if caught.)</li>
<li>Return to <span class="npc">Tandilwe</span> and talk to her again.</li>
<li>Dialogue: Training. (This completes the <span class="quest" clid="quest167">Speechcraft Training</span> quest.)</li>
</ol></li>
<li>Salomon Geonette’s House:
<ul><li><span class="nirnroot">Nirnroot</span> upstairs.</li>
</ul></li>
<li>Marana Rian’s House:
<ul><li>Wait until 6am-noon to kill <span class="npc">Marana Rian</span> to complete the <span class="quest" clid="quest166">Sneak Training</span> quest. Pay the gold fine to a guard if you get caught.</li>
</ul></li>
<li>Hastrel Ottus’ House:
<ul><li>Read <span class="book" clid="book108">The Wolf Queen, v 5 [Speechcraft]</span> on table.</li>
</ul></li>
<li>The All-Saints Inn:
<ul><li><b>Invest</b> in <span class="store" clid="0x0001D5B4">Willet</span>.</li>
</ul></li>
</ol>
</div>
<div class="category" id="guide_InvestingCircuit_ImperialCityMisc">
<div class="categoryTitle">Imperial City Misc:</div>
<ol><li><b>Invest</b> in <span class="store" clid="0x000C45B8">Shady Sam</span> by fast traveling to Chestnut Handy Stables outside the city and heading north to find him along the city wall.</li>
</ol>
</div>
<div class="category" id="guide_InvestingCircuit_Bravil">
<div class="categoryTitle">Bravil:</div>
<a href="images/InvestingCircuit_Bravil.png" target="_blank"><img src="images/InvestingCircuit_Bravil.png" name="Image8" width="353" height="408" border="0" align="bottom"></a>
<ol>
<li>City-Swimmer’s House (Top Floor):
<ul><li><span class="nirnroot">Nirnroot </span>in the house.</li>
<li>Read <span class="book" clid="book101">2920, Last Seed (v8) [Sneak] </span>on drawers.</li>
</ul></li>
<li>Silverhome on the Water:
<ul><li><b>Invest</b> in <span class="store" clid="0x0000A129">Gilgondorin</span>.</li>
<li><span class="nirnroot">Nirnroot </span>on the third floor, right side room.</li>
</ul></li>
<li>The Fair Deal:
<ul><li><b>Invest</b> in <span class="store" clid="0x0000A123">Nilawen</span>.</li>
<li><b>Invest</b> in <span class="store" clid="0x0003E180">Nordinor</span> if he is here. He is usually upstairs behind a locked door.</li>
</ul></li>
<li>Andragil’s House (Top Floor):
<ul><li>Start her training and kill <span class="npc">Andragil </span>to complete the <span class="quest" clid="quest153">Block Training</span> quest.</li>
<li><span class="nirnroot">Nirnroot </span>by the bed.</li>
</ul></li>
<li>Dro’shanji’s House:
<ul><li>Read <span class="book" clid="book100">The Wolf Queen, v 1 [Security]</span> on the shelf upstairs.</li>
</ul></li>
<li>Fighters Guild:
<ul><li><b>Invest</b> in <span class="store" clid="0x0000A118">Tadrose Helas</span>.</li>
<li><span class="nirnroot">Nirnroot </span>on the second floor, turn right, first door on your left.</li>
</ul></li>
<li>Mages Guild:
<ul><li><b>Invest</b> in <span class="store" clid="0x0002F080">Ardaline</span>.</li>
<li>Talk to <span class="npc">Ardaline</span> to start the <span class="quest" clid="quest148">Alchemy Training</span> quest using <span class="spellname">B_Alchemy</span>.</li>
<li>Talk to <span class="npc">Delphine Jend</span> to start the <span class="quest" clid="quest156">Destruction Training</span> quest using <span class="spellname">B_Destruction</span>.</li>
<li>Talk to <span class="npc">Ita Rienus </span>(usually in the basement) to start the <span class="quest" clid="quest163">Mysticism Training</span> quest using <span class="spellname">B_Mysticism</span>.</li>
<li>Talk to <span class="npc">Kud-Ei </span>to start the <span class="quest" clid="quest159">Illusion Training</span> quest using <span class="spellname">B_Illusion</span>.</li>
<li>Read <span class="book" clid="book48">The Horrors of Castle Xyr [Destruction]</span> on the third floor. (Large brown book on the shelf)</li>
</ul></li>
<li><span class="nirnroot">Nirnroot </span>outside behind the Mages Guild.</li>
<li>The Lonely Suitor Lodge:
<ul><li><b>Invest</b> in <span class="store" clid="0x0000A117">Bogrum Gro-Galash</span>.</li>
<li><b>Invest</b> in <span class="store" clid="0x0000A130">Luciana Galena</span> if she is here.
<ul><li>Talk to her to start the <span class="quest" clid="quest160">Light Armor Training</span> quest using <span class="spellname">B_LightArmor</span>.</li></ul></li>
<li><b>Invest</b> in <span class="store" clid="0x0003E180">Nordinor</span> if you haven’t already, who is usually upstairs.</li>
</ul></li>
<li>The Archer’s Paradox:
<ul><li><b>Invest</b> in <span class="store" clid="0x0000A11C">Daenlin</span>.</li>
</ul></li>
<li>Luciana Galena’s House (Top Floor):
<ul><li><b>Invest</b> in <span class="store" clid="0x0000A130">Luciana Galena</span> if you haven’t already.
<ul><li>Talk to her to start the <span class="quest" clid="quest160">Light Armor Training</span> quest using <span class="spellname">B_LightArmor</span>.</li></ul></li>
</ul></li>
<li><span class="nirnroot">Nirnroot </span>outside, behind Luciana Galena’s House.</li>
</ol>
</div>
<div class="category" id="guide_InvestingCircuit_BravilMisc">
<div class="categoryTitle">Bravil Misc:</div>
<ul><li>Fast travel to Castle Bravil, and head SW along the wall to find another <span class="nirnroot">Nirnroot</span>.</li>
</ul>
</div>
<div class="category" id="guide_InvestingCircuit_CastleBruma">
<div class="categoryTitle">Castle Bruma:</div>
<a href="images/InvestingCircuit_Bruma.png" target="_blank"><img src="images/InvestingCircuit_Bruma.png" name="Image9" width="334" height="480" border="0" align="bottom"></a>
<ol>
<li>Castle Bruma:
<ol><li>Wait outside the castle until <span class="npc">Tolgan</span> talks to you.
<ol><li>Advance predetermined dialogue. (This starts a future quest.)</li>
</ol></li>
<li>Enter the castle and talk to <span class="npc">Countess Narina Carvain</span>.
<ol><li>Advance predetermined dialogue.</li>
<li>Bribe to 60+ disposition.</li>
<li>Dialogue: Buy a house in town.</li>
<li>Dialogue: I’ll gladly pay 10,000 gold for it.</li>
<li>Dialogue: Draconian Madstone.</li>
<li>Dialogue: Pale Pass.</li>
<li>Dialogue: Yes.</li>
<li>Dialogue: Draconian Madstone.</li>
<li>Dialogue: Yes.</li>
</ol></li>
<li><span class="nirnroot">Nirnroot </span>in Lord’s Manor. Enter through the Service Hall, then start sneaking and go through the door on the left, then the next door on the left, where the Nirnroot is. Pay the gold fine to a guard if you get caught.</li>
<li>Read <span class="book" clid="book63">How Orsinium Passed to Orcs [Heavy Armor]</span> on the desk in the Countess’ bedroom on your way out.</li>
</ol></li>
<li>Nord Winds:
<ul><li><b>Invest</b> in <span class="store" clid="0x00036265">Skjorta</span>.</li>
<li><b>Invest</b> in <span class="store" clid="0x00036266">Olfand</span>.</li>
</ul></li>
<li>Novaroma:
<ul><li><b>Invest</b> in <span class="store" clid="0x0003E18F">Karinnarre</span>.</li>
<li><b>Invest</b> in <span class="store" clid="0x00036267">Suurootan</span>.
<ul><li>Buy All home furnishings to complete <span class="quest" clid="quest179">Buying a house in Bruma</span>.</li></ul></li>
</ul></li>
<li>Jerall View Inn:
<ul><li><b>Invest</b> in <span class="store" clid="0x0003626B">Hafid Hollowleg</span>.</li>
</ul></li>
<li>Bradon Lirrian’s House:
<ol><li>Talk to <span class="npc">Carius Runellius</span> to start the quest.
<ol><li>Bribe him to 70+ disposition.</li>
<li>Dialogue: Raynil Dralas</li></ol></li>
<li>Talk to <span class="npc">Erline Lirrian</span>.
<ol><li>Advance predetermined dialogue.</li>
</ol></li>
</ol></li>
<li>Regner’s House:
<ul><li><span class="nirnroot">Nirnroot </span>downstairs.</li>
<li>Read <span class="book" clid="book76">A Dance in Fire, v5 [Marksman]</span> on a table downstairs.</li>
</ul></li>
<li>Olav’s Tap and Tack:
<ul><li><b>Invest</b> in <span class="store" clid="0x0003626E">Olav</span>.</li>
<li>Go upstairs and open the furthest door. Take the journal behind the drawers.
<ol><li>If this door does not open, load <span class="save" clid="savepermakey" disabled="true">the PermaKey_Save</span> and do the Perma Key glitch.</li>
</ol></li>
</ul></li>
<li>Mages Guild:
<ul><li><b>Invest</b> in <span class="store" clid="0x00003461">Selena Orania</span>.</li>
</ul></li>
<li>Hammer and Axe:
<ul><li><b>Invest</b> in <span class="store" clid="0x00036262">Fjotreid</span>.</li>
</ul></li>
</ol>
</div>
<div class="category" id="guide_InvestingCircuit_SkingradEastGate">
<div class="categoryTitle">Skingrad - East Gate:</div>
<a href="images/InvestingCircuit_Skingrad.png" target="_blank"><img src="images/InvestingCircuit_Skingrad.png" name="Image10" width="415" height="399" border="0" align="bottom"></a>
<ol>
<li>Toutius Sextius’ House:
<ul><li><span class="nirnroot">Nirnroot </span>on the third floor.</li>
</ul></li>
<li>Hammer and Tongs:
<ul><li><b>Invest</b> in <span class="store" clid="0x00028F9A">Agnete the Pickled</span>.</li>
</ul></li>
<li>All Things Alchemical:
<ul><li><b>Invest</b> in <span class="store" clid="0x00028E74">Falanu Hlaalu</span>.</li>
<li>Read <span class="book" clid="book7">De Rerum Dirennis [Alchemy]</span> on a shelf upstairs.</li>
</ul></li>
<li>Surilie Brothers’ House:
<ul><li><span class="nirnroot">Nirnroot </span>on the third floor, furthest side door. Boost jump up to the balcony to break in.</li>
</ul></li>
<li>Two Sisters Lodge:
<ul><li><b>Invest</b> in <span class="store" clid="0x00028F8B">Mog gra-Mogakh</span>.</li>
</ul></li>
<li>The Great Chapel of Julianos:
<ul><li>Head into the Chapel Hall. Go into the first side room on your left and read <span class="book" clid="book85">2920, Sun’s Dawn (v2) [Mysticism]</span>.</li>
<li>Head to the side room directly across the hall to read <span class="book" clid="book92">The Exodus [Restoration]</span> in the Chapel Hall on the middle shelf in the south side room.</li>
</ul></li>
</ol>
</div>
<div class="category" id="guide_InvestingCircuit_LeyawiinWestGate">
<div class="categoryTitle">Leyawiin - West Gate:</div>
<a href="images/InvestingCircuit_LeyawiinWestGate.png" target="_blank"><img src="images/InvestingCircuit_LeyawiinWestGate.png" name="Leyawiin Investing Route" width="415" height="306" border="0" align="bottom"></a>
<ol>
<li>Five Claws Lodge:
<ul><li><b>Invest</b> in <span class="store" clid="0x0002C8D9">Witseidutsei</span>.</li>
<li><b>Invest</b> in <span class="store" clid="0x0003599B">Dar Jee</span>. Wait until around 12pm for him to appear.</li>
</ul></li>
<li>The Great Chapel of Zenithar:
<ul><li>In the Chapel Hall, read <span class="book" clid="book15">Sithis [Alteration]</span> in the south side room on the desk.</li>
</ul></li>
<li>The Dividing Line:
<ul><li><b>Invest</b> in <span class="store" clid="0x00035294">Tun-Zeeus</span>.</li>
</ul></li>
<li><span class="nirnroot">Nirnroot</span> by the rocks.</li>
<li>Three Sisters’ Inn:
<ul><li><b>Invest</b> in <span class="store" clid="0x0003528D">Shuravi</span>.</li>
</ul></li>
<li>Southern Books:
<ul><li><b>Invest</b> in <span class="store" clid="0x0003E214">Bugak gro-Bol</span>.</li>
<li>Read <span class="book" clid="book14">Reality & Other Falsehoods [Alteration]</span> on the second floor. (Top shelf of bookshelf next to small table.)</li>
</ul>
<li><span class="nirnroot">Nirnroot</span> by a cluster of rocks.</li>
<li><span class="nirnroot">Nirnroot</span> by rocks.</li>
</ol>
</div>
<p><b>You should now have 56 Stores Invested In.</b></p>
</div>
</div><!-- investment end-->
<div class="section" id="guide_MagesGuildPt2">
<div class="sectionTitle">Mages Guild Pt. 2</div>
<div class="collapsibleContent">
<p>Farm Acrobatics and your hotkeyed A_[Skill] spells everywhere you go while blocking with your weapon to speed up the casting animation, but make sure not to level up skills too far. Reading skill books for a maxed out skill will not count, and ruin the run.
<b>Stop at level 75 for each magic skill for now.</b></p>
<p><b>Warning: The Destruction and Conjuration farming spells will make NPCs hostile if they are touched with the spell, so avoid doing this.</b></p>
<p><b>General tip about questing:</b> If you are ever unable to fast travel after exiting a dungeon, try quicksaving and quickloading while outdoors, which can despawn enemies that were aggro inside the dungeon. This is called the QSQL De-Aggro glitch.</p>
<div class="category" id="guide_MagesGuildPt2_MagesGuildSuspension">
<div class="categoryTitle">Mages Guild Suspension/Mages Guild Second Suspension</div>
<ol>
<li>Fast travel to the Arcane University.</li>
<li>Dupe 21 Dragon’s Tongues and 20 Redwort Flower, but only pick up the Dragon’s Tongues.</li>
<li>Get caught pickpocketing someone in the Mages Guild.</li>
<li>Wait for the quest to update and talk to <span class="npc">Raminus Polus</span>.
<ol>
<li>Dialogue: Yes, I’ll do it.</li>
</ol></li>
<li>Talk to <span class="npc">Raminus Polus</span> again.
<ol>
<li>Dialogue: Here they are.</li>
</ol></li>
<li>This completes <span class="quest" clid="0x00022E92">Mages Guild Suspension</span></li>
<li>Dupe 20 Dragon’s Tongues, and pick them up as well as the 20 Redwort Flower you duped earlier.</li>
<li>Pickpocket a different Mages Guild member and get kicked out again.</li>
<li>Wait for the quest to update, and talk to <span class="npc">Raminus Polus</span> again.
<ol>
<li>Dialogue: Yes, I’ll do it.</li>
</ol></li>
<li>Talk to <span class="npc">Raminus Polus</span> again.
<ol>
<li>Dialogue: Here they are. (This completes <span class="quest" clid="0x00025032">Mages Guild Second Suspension</span>)</li>
<li>Dialogue: Advancement.</li>
<li>Dialogue: Tasks.</li>