-
Notifications
You must be signed in to change notification settings - Fork 124
/
index.html
2837 lines (2767 loc) · 507 KB
/
index.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">
<title>Dark Souls 3 Cheat Sheet</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico?">
<link rel="apple-touch-icon-precomposed" href="img/favicon-152.png">
<link rel="mask-icon" href="img/pinned-tab-icon.svg" color="#000000">
<meta name="description" content="Cheat sheet for Dark Souls 3. Checklist of things to do, items to get etc.">
<meta name="author" content="Zachary Kjellberg">
<meta name="mobile-web-app-capable" content="yes">
<link id="bootstrap" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#nav-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="nav-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#tabPlaythrough" data-toggle="tab" data-target="#tabPlaythrough,#btnHideCompleted">Playthrough</a></li>
<li><a href="#tabChecklists" data-toggle="tab" data-target="#tabChecklists,#btnHideCompleted">Achievements</a></li>
<li><a href="#tabWeaponsShields" data-toggle="tab" data-target="#tabWeaponsShields,#btnHideCompleted">Weapons/Shields</a></li>
<li><a href="#tabArmors" data-toggle="tab" data-target="#tabArmors,#btnHideCompleted">Armor</a></li>
<li><a href="#tabMisc" data-toggle="tab" data-target="#tabMisc,#btnHideCompleted">Misc</a></li>
<li><a href="#tabFAQ" data-toggle="tab"><span class="glyphicon glyphicon-question-sign"></span> FAQ</a></li>
<li><a href="#tabOptions" data-toggle="tab"><span class="glyphicon glyphicon-cog"></span> Options</a></li>
</ul>
<!-- /.nav.navbar-nav -->
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1>Dark Souls 3 Cheat Sheet</h1>
<p class="lead">Contribute to the guide at the <a href="https://github.com/ZKjellberg/dark-souls-3-cheat-sheet">GitHub Page</a></p>
</div>
</div>
<div class="tab-content">
<!-- Hide Completed Toggle -->
<div class="tab-pane active in" id="btnHideCompleted">
<div class="btn-group" role="group" data-toggle="buttons">
<label class="btn btn-default">
<input type="checkbox" id="toggleHideCompleted">
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Hide Completed
<a class="btn btn-default btn-sm fadingbutton togglehide" onclick="$('#toggleHideCompleted').click();">
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Hide Completed
</a>
</label>
</div>
</div>
<!-- PLAYTHROUGH START -->
<div class="tab-pane active" id="tabPlaythrough">
<!-- Toolbar -->
<h2>Filter Checklist
<span class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-default"><input type="radio" name="journey" data-ng-toggle="1">NG</label>
<label class="btn btn-default"><input type="radio" name="journey" data-ng-toggle="2">NG+</label>
<label class="btn btn-default"><input type="radio" name="journey" data-ng-toggle="3">NG++</label>
</span>
</h2>
<div class="btn-group">
<div class="btn-group btn-group-vertical">
<div class="btn-group">
<div class="btn-group-vertical" data-toggle="buttons">
<label class="btn btn-default dropdown-toggle">
<input type="checkbox" data-category-toggle />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Quests
</label>
</div>
</div>
<div class="btn-group">
<div class="btn-group-vertical btn-group-sm" data-toggle="buttons">
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_boss" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Bosses
</label>
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_miss" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Missable
</label>
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_npc" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
NPCs
</label>
</div>
</div>
</div>
<div class="btn-group btn-group-vertical">
<div class="btn-group">
<div class="btn-group-vertical" data-toggle="buttons">
<label class="btn btn-default dropdown-toggle">
<input type="checkbox" data-category-toggle />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Upgrades
</label>
</div>
</div>
<div class="btn-group">
<div class="btn-group-vertical btn-group-sm" data-toggle="buttons">
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_estus" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Estus Shards
</label>
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_bone" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Undead Bone Shards
</label>
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_tome" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Scrolls/Tomes
</label>
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_coal" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Coals
</label>
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_ash" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Ashes
</label>
</div>
</div>
</div>
<div class="btn-group btn-group-vertical">
<div class="btn-group">
<div class="btn-group-vertical" data-toggle="buttons">
<label class="btn btn-default dropdown-toggle">
<input type="checkbox" data-category-toggle />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Achievements
</label>
</div>
</div>
<div class="btn-group">
<div class="btn-group-vertical btn-group-sm" data-toggle="buttons">
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_gest" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Gestures
</label>
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_sorc" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Sorceries
</label>
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_pyro" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Pyromancies
</label>
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_mirac" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Miracles
</label>
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_ring" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Rings
</label>
</div>
</div>
</div>
<div class="btn-group btn-group-vertical">
<div class="btn-group">
<div class="btn-group-vertical" data-toggle="buttons">
<label class="btn btn-default dropdown-toggle">
<input type="checkbox" data-category-toggle />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Gear
</label>
</div>
</div>
<div class="btn-group">
<div class="btn-group-vertical btn-group-sm" data-toggle="buttons">
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_weap" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Weapons
</label>
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_arm" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Armor
</label>
</div>
</div>
</div>
<div class="btn-group btn-group-vertical">
<div class="btn-group">
<div class="btn-group-vertical" data-toggle="buttons">
<label class="btn btn-default dropdown-toggle">
<input type="checkbox" data-category-toggle />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Materials
</label>
</div>
</div>
<div class="btn-group">
<div class="btn-group-vertical btn-group-sm" data-toggle="buttons">
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_tit" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Titanite
</label>
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_gem" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Gems
</label>
</div>
</div>
</div>
<div class="btn-group btn-group-vertical">
<div class="btn-group">
<div class="btn-group-vertical" data-toggle="buttons">
<label class="btn btn-default dropdown-toggle">
<input type="checkbox" data-category-toggle />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Others
</label>
</div>
</div>
<div class="btn-group">
<div class="btn-group-vertical btn-group-sm" data-toggle="buttons">
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_cov" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Covenants
</label>
<label class="btn btn-default">
<input type="checkbox" data-item-toggle="f_misc" />
<span class="glyphicon glyphicon-eye-close"></span>
<span class="glyphicon glyphicon-eye-open"></span>
Misc. items
</label>
</div>
</div>
</div>
</div>
<h2>Playthrough Checklist <span id="playthrough_overall_total"></span></h2>
<ul class="table_of_contents">
<li><a href="#Cemetery_of_Ash">Cemetery of Ash</a> <span id="playthrough_nav_totals_17"></span></li>
<li><a href="#Firelink_Shrine">Firelink Shrine</a> <span id="playthrough_nav_totals_1"></span></li>
<li><a href="#High_Wall_of_Lothric">High Wall of Lothric</a> <span id="playthrough_nav_totals_2"></span></li>
<li><a href="#Undead_Settlement">Undead Settlement</a> <span id="playthrough_nav_totals_3"></span></li>
<li><a href="#Road_of_Sacrifices">Road of Sacrifices</a> <span id="playthrough_nav_totals_4"></span></li>
<li><a href="#Cathedral_of_the_Deep">Cathedral of the Deep</a> <span id="playthrough_nav_totals_5"></span></li>
<li><a href="#Farron_Keep">Farron Keep</a> <span id="playthrough_nav_totals_6"></span></li>
<li><a href="#Catacombs_of_Carthus">Catacombs of Carthus</a> <span id="playthrough_nav_totals_7"></span></li>
<li><a href="#Smouldering_Lake">Smouldering Lake</a> (Optional) <span id="playthrough_nav_totals_14"></span></li>
<li><a href="#Irithyll_of_the_Boreal_Valley">Irithyll of the Boreal Valley</a> <span id="playthrough_nav_totals_15"></span></li>
<li><a href="#Anor_Londo">Anor Londo</a> <span id="playthrough_nav_totals_8"></span></li>
<li><a href="#Irithyll_Dungeon">Irithyll Dungeon</a> <span id="playthrough_nav_totals_16"></span></li>
<li><a href="#Profaned_Capital">Profaned Capital</a> <span id="playthrough_nav_totals_9"></span></li>
<li><a href="#Consumed_Kings_Garden">Consumed King's Garden</a> (Optional) <span id="playthrough_nav_totals_10"></span></li>
<li><a href="#Untended_Graves">Untended Graves</a> (Optional) <span id="playthrough_nav_totals_11"></span></li>
<li><a href="#Archdragon_Peak">Archdragon Peak</a> (Optional) <span id="playthrough_nav_totals_12"></span></li>
<li><a href="#Lothric_Castle">Lothric Castle</a> <span id="playthrough_nav_totals_13"></span></li>
<li><a href="#Grand_Archives">Grand Archives</a> <span id="playthrough_nav_totals_18"></span></li>
<li><a href="#Kiln_of_the_First_Flame">Kiln of the First Flame</a> <span id="playthrough_nav_totals_19"></span></li>
<li><a href="#Painted_World_of_Ariandel">Painted World of Ariandel</a> (Ashes of Ariandel DLC) <span id="playthrough_nav_totals_20"></span></li>
<li><a href="#The_Dreg_Heap">The Dreg Heap</a> (The Ringed City DLC) <span id="playthrough_nav_totals_21"></span></li>
<li><a href="#The_Ringed_City">The Ringed City</a> (The Ringed City DLC) <span id="playthrough_nav_totals_22"></span></li>
</ul>
<div class="form-group">
<input type="search" id="playthrough_search" class="form-control" placeholder="Start typing to filter results..." />
</div>
<div id="playthrough_list">
<h3 id="Cemetery_of_Ash"><a href="#Cemetery_of_Ash_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Cemetery+of+Ash">Cemetery of Ash</a> <span id="playthrough_totals_17"></span></h3>
<ul id="Cemetery_of_Ash_col" class="collapse in">
<li data-id="playthrough_17_1" class="f_misc">From the start head right at the first turn and pick up the <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Deserted+Corpse">Soul of a Deserted Corpse</a></li>
<li data-id="playthrough_17_2" class="f_estus h_ng+">Loot the corpse on the fountain to obtain the <a href="http://darksouls3.wiki.fextralife.com/Ashen+Estus+Flask">Ashen Estus Flask</a></li>
<li data-id="playthrough_17_3" class="f_misc f_tit">Turn right after the fountain and head down the path through a flooded passage. Kill the <a href="http://darksouls3.wiki.fextralife.com/Ravenous+Crystal+Lizard">Ravenous Crystal Lizard</a> to get a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Scale">Titanite Scale</a> and then pick up the <a href="http://darksouls3.wiki.fextralife.com/Soul+of+an+Unknown+Traveler">Soul of an Unknown Traveler</a> from the corpse in the area</li>
<li data-id="playthrough_17_16" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Speckled+Stoneplate+Ring">Speckled Stoneplate Ring+1</a> is also in this area</li>
<li data-id="playthrough_17_4" class="f_gest">Head back to the fountain and take the path straight ahead. Climb the cliff and rest at the Cemetery of Ash bonfire to receive the Rest gesture</li>
<li data-id="playthrough_17_5" class="f_tit">From the bonfire head down the left path and jump from the cliff over to the corpse on the tomb to pick up a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a></li>
<li data-id="playthrough_17_6" class="f_misc">Take the side ridge down from the large cliff face on the right to pick up <a href="http://darksouls3.wiki.fextralife.com/Firebomb">Firebomb x5</a> from a nearby corpse</li>
<li data-id="playthrough_17_7" class="f_boss f_misc">Back on the main path head through the archway and take the sword embedded in the statue. Kill <a href="http://darksouls3.wiki.fextralife.com/Iudex+Gundyr">Iudex Gundyr</a> to receive the <a href="http://darksouls3.wiki.fextralife.com/Coiled+Sword">Coiled Sword</a></li>
<li data-id="playthrough_17_8" class="f_none">Congratulate yourself on beating the first boss of Dark Souls 3 and rest at the <a href="http://darksouls3.wiki.fextralife.com/Iudex+Gundyr">Iudex Gundyr</a> bonfire</li>
<li data-id="playthrough_17_9" class="f_weap">Continue through the large door and pick up the <a href="http://darksouls3.wiki.fextralife.com/Broken+Straight+Sword">Broken Straight Sword</a> from the corpse leaning on the tombstone</li>
<li data-id="playthrough_17_17" class="f_ring s_ng++">The <a href="https://darksouls3.wiki.fextralife.com/Wolf+Ring">Wolf Ring+2</a> is behind the door you just passed</li>
<li data-id="playthrough_17_10" class="f_misc">Head over to the large cliff edge and pick up the <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone</a> at the edge of the ridge</li>
<li data-id="playthrough_17_11" class="f_weap">Take the left path up the cliff and turn left just before <a href="http://darksouls3.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a> and grab the <a href="http://darksouls3.wiki.fextralife.com/East-West+Shield">East-West Shield</a> from the corpse on the tree</li>
<li data-id="playthrough_17_12" class="f_arm f_weap f_miss">Kill <a href="http://darksouls3.wiki.fextralife.com/Sword+Master">Sword Master Saber</a> to get <a href="http://darksouls3.wiki.fextralife.com/Uchigatana">Uchigatana</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Master's+Set">Master's Set</a> and to unlock his summon sign</li>
<li data-id="playthrough_17_13" class="f_misc">Head back and up the path to the left to pick up an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a> from a corpse above the entrance above <a href="http://darksouls3.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a></li>
<li data-id="playthrough_17_14" class="f_misc">Continue across to the other side picking up a <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone</a> from a corpse behind a tomb and another <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a> from the lower ridge </li>
<li data-id="playthrough_17_15" class="f_none">Go back to the main path and enter <a href="http://darksouls3.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a></li>
</ul>
<h3 id="Firelink_Shrine"><a href="#Firelink_Shrine_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a> <span id="playthrough_totals_1"></span></h3>
<ul id="Firelink_Shrine_col" class="collapse in">
<li data-id="playthrough_1_1" class="f_none">Talk to <a href="http://darksouls3.wiki.fextralife.com/Fire+Keeper">Fire Keeper</a></li>
<li data-id="playthrough_1_2" class="f_none">Talk to <a href="http://darksouls3.wiki.fextralife.com/Shrine+Handmaid">Shrine Handmaid</a></li>
<li data-id="playthrough_1_3" class="f_gest f_miss">Talk to <a href="http://darksouls3.wiki.fextralife.com/Hawkwood">Hawkwood</a> to receive the Collapse gesture</li>
<li data-id="playthrough_1_4" class="f_gest">Talk to <a href="http://darksouls3.wiki.fextralife.com/Blacksmith+Andre">Blacksmith Andre</a> to receive the Hurrah! gesture</li>
<li data-id="playthrough_1_5" class="f_misc">Go out the top of <a href="http://darksouls3.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a> and pick up the <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Deserted+Corpse">Soul of a Deserted Corpse</a> from the corpse next to the small decrepit tower</li>
<li data-id="playthrough_1_6" class="f_none">When you have the <a href="http://darksouls3.wiki.fextralife.com/Tower+Key">Tower Key</a>, unlock the small decrepit tower and head up to the bridge leading to the Bell Tower</li>
<li data-id="playthrough_1_7" class="f_none">Roll off the bridge onto the <a href="http://darksouls3.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a> roof and kick down the ladder shortcut</li>
<li data-id="playthrough_1_8" class="f_tit">Just behind the roof kill the <a href="http://darksouls3.wiki.fextralife.com/Crystal+Lizard">Crystal Lizard</a> to get a <a href="http://darksouls3.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a> </li>
<li data-id="playthrough_1_9" class="f_misc">Pick up <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone x3</a> from the lower part of the roof</li>
<li data-id="playthrough_1_10" class="f_estus">Inside the roof pick up the <a href="http://darksouls3.wiki.fextralife.com/Estus+Shard">Estus Shard</a> from up in the rafters</li>
<li data-id="playthrough_1_11" class="f_arm f_gest">Trade a <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone</a> with <a href="http://darksouls3.wiki.fextralife.com/Pickle+Pee,+Pump-a-Rum+Crow">Pickle-Pee, Pump-a-Rum</a> crow to receive the Call Over gesture and the <a href="http://darksouls3.wiki.fextralife.com/Iron+Bracelets">Iron Bracelets</a>. For the other trade options see the <a href="#" onclick="$('.nav.navbar-nav li a[href=\x22#tabMisc\x22]').click();">Misc</a> page</li>
<li data-id="playthrough_1_12" class="f_ring">Hit the <a href="http://darksouls3.wiki.fextralife.com/Illusory+Walls">illusory wall</a> at the back of the rafters and drop down to get the <a href="http://darksouls3.wiki.fextralife.com/Covetous+Silver+Serpent+Ring">Covetous Silver Serpent Ring</a> from the chest</li>
<li data-id="playthrough_1_13" class="f_none">Head into the Bell Tower, go up the lift and <a href="http://darksouls3.wiki.fextralife.com/Unbreakable+Patches">Patches</a> may close the door depending on your progress in the game</li>
<li data-id="playthrough_1_14" class="f_misc">At the top of the Bell Tower, pick up the <a href="http://darksouls3.wiki.fextralife.com/Fire%20Keeper+Soul">Fire Keeper Soul</a></li>
<li data-id="playthrough_1_15" class="f_arm">Go back down the lift and look down the right side. Carefully jump down to the tombstone and pick up the <a href="http://darksouls3.wiki.fextralife.com/Fire+Keeper+Set">Fire Keeper Set</a> from the corpse </li>
<li data-id="playthrough_1_16" class="f_ring">Make your way down to the bottom and pick up the <a href="http://darksouls3.wiki.fextralife.com/Estus+Ring">Estus Ring</a> from another corpse and open the door</li>
</ul>
<h3 id="High_Wall_of_Lothric"><a href="#High_Wall_of_Lothric_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/High+Wall+of+Lothric">High Wall of Lothric</a> <span id="playthrough_totals_2"></span></h3>
<ul id="High_Wall_of_Lothric_col" class="collapse in">
<li data-id="playthrough_2_1" class="f_none">Open the door ahead and rest at the High Wall of Lothric bonfire</li>
<li data-id="playthrough_2_2" class="f_misc">Take the right path onto the rampart and head down the small stairs on the left. Pick up the <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Deserted+Corpse">Soul of a Deserted Corpse</a> from the corpse</li>
<li data-id="playthrough_2_3" class="f_misc f_tit f_weap">Head back up the stairs and up the next set of stairs at the end of the rampart. If you want <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a>, wait for one of the undead to transform into <a href="http://darksouls3.wiki.fextralife.com/Pus+of+Man">Pus of Man</a> and then kill it. Also, pick up <a href="http://darksouls3.wiki.fextralife.com/Longbow">Longbow</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Standard+Arrow">Standard Arrow x12</a> from the corpse</li>
<li data-id="playthrough_2_4" class="f_misc">Go back to the bonfire and this time head down the left path. Pick up the <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Deserted+Corpse">Soul of a Deserted Corpse</a> from the corpse</li>
<li data-id="playthrough_2_5" class="f_misc">Head up the stairs at the end of the rampart and up some more stairs to the top of the turret. Pick up the <a href="http://darksouls3.wiki.fextralife.com/Binoculars">Binoculars</a> from the corpse</li>
<li data-id="playthrough_2_6" class="f_misc">Go back downstairs and drop down behind the dragon. Enter the small doorway to pick up <a href="http://darksouls3.wiki.fextralife.com/Gold+Pine+Resin">Gold Pine Resin x2</a> from the corpse</li>
<li data-id="playthrough_2_7" class="f_misc">Drop into the indoor room and pick up <a href="http://darksouls3.wiki.fextralife.com/Firebomb">Firebomb x2</a> from the corpse beside the table</li>
<li data-id="playthrough_2_8" class="f_misc">Go down the ladder and pick up the <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Deserted+Corpse">Soul of a Deserted Corpse</a> from the corpse outside of the cell</li>
<li data-id="playthrough_2_9" class="f_tit">Snipe the dragon until it drops a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a> and flies away</li>
<li data-id="playthrough_2_10" class="f_misc f_weap">Grab the <a href="http://darksouls3.wiki.fextralife.com/Claymore">Claymore</a>, <a href="http://darksouls3.wiki.fextralife.com/Club">Club</a>, <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a> and <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Deserted+Corpse">Large Soul of a Deserted Corpse</a> from in front of where the dragon was</li>
<li data-id="playthrough_2_11" class="f_weap">Open the door underneath where the dragon was. Go downstairs. Either kill the <a href="http://darksouls3.wiki.fextralife.com/Mimic">Mimic</a> or hit it with an <a href="http://darksouls3.wiki.fextralife.com/Undead+Hunter+Charm">Undead Hunter Charm</a> to get the <a href="http://darksouls3.wiki.fextralife.com/Battle+Axe">Deep Battle Axe</a></li>
<li data-id="playthrough_2_12" class="f_misc">Head out the door on the other side and pick up the <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Deserted+Corpse">Soul of a Deserted Corpse</a> from the corpse on the left</li>
<li data-id="playthrough_2_13" class="f_misc">Go into the next building and pick up <a href="http://darksouls3.wiki.fextralife.com/Firebomb">Firebomb x3</a> from the wooden beam</li>
<li data-id="playthrough_2_14" class="f_tit">Go out the side exit and up the stairs and pick up the <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a> from the corpse. Light the Tower on the Wall bonfire</li>
<li data-id="playthrough_2_15" class="f_misc f_npc">After lighting the Tower on the Wall bonfire, return to <a href="http://darksouls3.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a> and talk to <a href="http://darksouls3.wiki.fextralife.com/Leonhard">Ringfinger Leonhard</a> who gives you <a href="http://darksouls3.wiki.fextralife.com/Cracked+Red+Eye+Orb">Cracked Red Eye Orb x5</a>. He'll be by Lothric's throne. If he isn't at this point, try killing Vordt and check again</li>
<li data-id="playthrough_2_19" class="f_misc">Back inside the building go down the stairs, out the side door, and pick up a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Deserted+Corpse">Soul of a Deserted Corpse</a> from the corpse on the right</li>
<li data-id="playthrough_2_20" class="f_gem f_misc f_tit">Head onto the roof. If you want <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a>, wait for one of the undead to transform into <a href="http://darksouls3.wiki.fextralife.com/Pus+of+Man">Pus of Man</a> and then kill it. And pick up <a href="http://darksouls3.wiki.fextralife.com/Firebomb">Firebomb x3</a> from the corpse. Continue on and kill the <a href="http://darksouls3.wiki.fextralife.com/Crystal+Lizard">Crystal Lizard</a> to receive a <a href="http://darksouls3.wiki.fextralife.com/Raw+Gem">Raw Gem</a>. There is another corpse on the roof which holds a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Deserted+Corpse">Large Soul of a Deserted Corpse</a></li>
<li data-id="playthrough_2_44" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Fleshbite+Ring">Fleshbite Ring+1</a> is on another roof that can be jumped to</li>
<li data-id="playthrough_2_21" class="f_misc">Take the ladder down and go onto the side roof to get <a href="http://darksouls3.wiki.fextralife.com/Black+Firebomb">Black Firebomb x3</a> from the corpse</li>
<li data-id="playthrough_2_22" class="f_misc">On the adjacent balcony with the archers pick up <a href="http://darksouls3.wiki.fextralife.com/Firebomb">Firebomb x3</a> from the corpse</li>
<li data-id="playthrough_2_23" class="f_misc f_tit">Go back inside the earlier building next to the ladder. Take the immediate left and roll into the pots to get <a href="http://darksouls3.wiki.fextralife.com/Undead+Hunter+Charm">Undead Hunter Charm x2</a> from the corpse. Continue inside and grab the <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a> from the corpse while being cautious of the ambush</li>
<li data-id="playthrough_2_24" class="f_misc">Back in the main room pick up the <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Deserted+Corpse">Soul of a Deserted Corpse</a> from the corpse tucked inside the first corner</li>
<li data-id="playthrough_2_25" class="f_weap">Continue through the doorway and take the next door on the left. Pick up the <a href="http://darksouls3.wiki.fextralife.com/Broadsword">Broadsword</a> from the corpse</li>
<li data-id="playthrough_2_26" class="f_weap">Head down the stairs taking the right path and get the <a href="http://darksouls3.wiki.fextralife.com/Silver+Eagle+Kite+Shield">Silver Eagle Kite Shield</a> from the chest</li>
<li data-id="playthrough_2_27" class="f_misc">Head back to the original entrance and find the doorway blocked by debris. Roll through it and pick up <a href="http://darksouls3.wiki.fextralife.com/Green+Blossom">Green Blossom x2</a> at the end of the ledge</li>
<li data-id="playthrough_2_28" class="f_weap">Drop down and pick up the <a href="http://darksouls3.wiki.fextralife.com/Astora+Straight+Sword">Astora Straight Sword</a> from the chest</li>
<li data-id="playthrough_2_29" class="f_npc f_tit">Continue into the room and pick up the <a href="http://darksouls3.wiki.fextralife.com/Cell+Key">Cell Key</a> and <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a> from the corpses around the room</li>
<li data-id="playthrough_2_30" class="f_estus">Grab an <a href="http://darksouls3.wiki.fextralife.com/Estus+Shard">Estus Shard</a> on the altar in the same room</li>
<li data-id="playthrough_2_45" class="f_ring s_ng++">The <a href="https://darksouls3.wiki.fextralife.com/Ring+of+the+Evil+Eye">Ring of the Evil Eye+2</a> is in the back of the room behind some barrels</li>
<li data-id="playthrough_2_31" class="f_weap">Head out the lower level and drop down to pick up the <a href="http://darksouls3.wiki.fextralife.com/Rapier">Rapier</a> next to the drain</li>
<li data-id="playthrough_2_32" class="f_misc">On corpses around the fountain you can collect <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a> and another <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_2_33" class="f_misc">Head out towards the courtyard and turn left to pick up the <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Deserted+Corpse">Soul of a Deserted Corpse</a> from a corpse</li>
<li data-id="playthrough_2_34" class="f_misc">Go upstairs right of the courtyard entrance and head straight along the path. After leaving the first door immediately turn left to find <a href="http://darksouls3.wiki.fextralife.com/Green+Blossom">Green Blossom x3</a> on a corpse</li>
<li data-id="playthrough_2_35" class="f_misc">Activate the elevator to open up a shortcut from the High Wall bonfire. Behind the elevator at the top is <a href="http://darksouls3.wiki.fextralife.com/Throwing+Knife">Throwing Knife x6</a> on a corpse</li>
<li data-id="playthrough_2_16" class="f_misc">Travel to the Tower on the Wall and proceed all the way down inside the tower. Go into the next room and pick up <a href="http://darksouls3.wiki.fextralife.com/Throwing+Knife">Throwing Knife x8</a> on the corpse</li>
<li data-id="playthrough_2_17" class="f_weap">Continue along the passageway and pick up the <a href="http://darksouls3.wiki.fextralife.com/Mail+Breaker">Mail Breaker</a> opposite the door on a corpse</li>
<li data-id="playthrough_2_18" class="f_npc f_ring">Further down in this area you will find a locked cell. With the <a href="http://darksouls3.wiki.fextralife.com/Cell+Key">Cell Key</a> you can free <a href="http://darksouls3.wiki.fextralife.com/Greirat+of+the+Undead+Settlement">Greirat of the Undead Settlement</a> and talk to him. If you agree to find Loretta, he gives you the <a href="http://darksouls3.wiki.fextralife.com/Blue+Tearstone+Ring">Blue Tearstone Ring</a>. He then moves to <a href="http://darksouls3.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a></li>
<li data-id="playthrough_2_36" class="f_misc">Travel to the High Wall of Lothric and take the elevator shortcut down. Head back towards the main courtyard but this time take the stairs to the left overlooking the fountain area. Grab the <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Deserted+Corpse">Large Soul of a Deserted Corpse</a> on the rooftop</li>
<li data-id="playthrough_2_37" class="f_ring">Jump onto the awning to pick up a <a href="http://darksouls3.wiki.fextralife.com/Ring+of+Sacrifice">Ring of Sacrifice</a></li>
<li data-id="playthrough_2_38" class="f_boss f_miss">Continue back to the courtyard. In the corner of the terrace just before the stairs leading down, you can summon <a href="http://darksouls3.wiki.fextralife.com/Lion+Knight+Albert">Lion Knight Albert</a></li>
<li data-id="playthrough_2_39" class="f_gem">Head to the left. Go up the stairs on the left just before the castle and kill the red-eyed <a href="http://darksouls3.wiki.fextralife.com/Lothric+Knight">Lothric Knight</a> to get a <a href="http://darksouls3.wiki.fextralife.com/Refined+Gem">Refined Gem</a></li>
<li data-id="playthrough_2_40" class="f_cov f_misc">Inside the chapel talk to <a href="http://darksouls3.wiki.fextralife.com/Emma">Emma, High Priestess of Lothric Castle</a> to receive the <a href="http://darksouls3.wiki.fextralife.com/Small+Lothric+Banner">Small Lothric Banner</a>. Talk to her again for the <a href="http://darksouls3.wiki.fextralife.com/Way+of+Blue">Way of Blue</a> covenant</li>
<li data-id="playthrough_2_41" class="f_weap">Heading out from the chapel take the left stairs and pick up the <a href="http://darksouls3.wiki.fextralife.com/Lucerne">Lucerne</a> from the corpse</li>
<li data-id="playthrough_2_42" class="f_boss f_miss">Just before walking through the great gate, you can summon <a href="http://darksouls3.wiki.fextralife.com/Sword+Master">Sword Master Saber</a> if he was killed earlier at Firelink Shrine</li>
<li data-id="playthrough_2_43" class="f_boss f_misc">Proceed through the gate and kill <a href="http://darksouls3.wiki.fextralife.com/Vordt+of+the+Boreal+Valley">Vordt of the Boreal Valley</a>; receive <a href="http://darksouls3.wiki.fextralife.com/Soul+of+Boreal+Valley+Vordt">Soul of Boreal Valley Vordt</a>. After killing Vordt, raise the banner at the cliff to access the <a href="http://darksouls3.wiki.fextralife.com/Undead+Settlement">Undead Settlement</a></li>
</ul>
<h3 id="Undead_Settlement"><a href="#Undead_Settlement_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Undead+Settlement">Undead Settlement</a> <span id="playthrough_totals_3"></span></h3>
<ul id="Undead_Settlement_col" class="collapse in">
<li data-id="playthrough_3_1" class="f_misc">After the Bat Wing Demons have dropped you off, walk to the left and grab a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Deserted+Corpse">Large Soul of a Deserted Corpse</a></li>
<li data-id="playthrough_3_2" class="f_misc">Go downstairs. Walk behind an overturned carriage and kill two <a href="http://darksouls3.wiki.fextralife.com/Dog">Dogs</a> to get <a href="http://darksouls3.wiki.fextralife.com/Alluring+Skull">Alluring Skull x2</a></li>
<li data-id="playthrough_3_3" class="f_gest f_npc f_miss">Find <a href="http://darksouls3.wiki.fextralife.com/Yoel+of+Londor">Yoel of Londor</a> below the Foot of the High Wall bonfire amongst several other Pilgrims. Talk to him and agree to his request and he moves to Firelink Shrine. Head back to Firelink Shrine and talk to Yoel to receive the Beckon gesture. Accept Yoel's offer to Draw Out True Strength which gains you a free level and a <a href="http://darksouls3.wiki.fextralife.com/Dark+Sigil">Dark Sigil</a>. From now on, for each time you die, you gain 1 Hollowing per Dark Sigil. Yoel offers 4 more free levels at 2, 6, 12, and 15 Hollowing, so getting all 5 Dark Sigils should not take long. If you do not get all 5 Dark Sigils before reaching the Catacombs of Carthus, Yoel dies which voids the Usurpation of Fire Ending</li>
<li data-id="playthrough_3_4" class="f_gest f_npc f_tome f_miss">After you get all 5 Dark Sigils and refresh the world, Yoel dies with <a href="http://darksouls3.wiki.fextralife.com/Yuria+of+Londor">Yuria of Londor</a> watching over his newfound corpse. Talk to her to receive the Dignified Bow gesture and buy the <a href="http://darksouls3.wiki.fextralife.com/Londor+Braille+Divine+Tome">Londor Braille Divine Tome</a></li>
<li data-id="playthrough_3_5" class="f_misc">Near Yoel, you will find <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone x2</a> on the far left edge of the bridge</li>
<li data-id="playthrough_3_6" class="f_weap">From the Undead Settlement bonfire, enter the house. Cut down a glowing hanging corpse to get the <a href="http://darksouls3.wiki.fextralife.com/Small+Leather+Shield">Small Leather Shield</a></li>
<li data-id="playthrough_3_7" class="f_misc">Walk downstairs to get <a href="http://darksouls3.wiki.fextralife.com/Charcoal+Pine+Bundle">Charcoal Pine Bundle x2</a>. Walk out onto the balcony and cut down the hanging body. Turn right around the corner to get <a href="http://darksouls3.wiki.fextralife.com/Repair+Powder">Repair Powder x2</a></li>
<li data-id="playthrough_3_9" class="f_misc">Walk downstairs to get another <a href="http://darksouls3.wiki.fextralife.com/Charcoal+Pine+Bundle">Charcoal Pine Bundle x2</a></li>
<li data-id="playthrough_3_8" class="f_npc">Go outside and grab <a href="http://darksouls3.wiki.fextralife.com/Loretta's+Bone">Loretta's Bone</a> from the body you cut down</li>
<li data-id="playthrough_3_10" class="f_estus">Grab an <a href="http://darksouls3.wiki.fextralife.com/Estus+Shard">Estus Shard</a> by the burning tree with worshipping undead</li>
<li data-id="playthrough_3_11" class="f_misc">On the other side of the tree, grab an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a>. Shoot down a hanging corpse from the tree to get <a href="http://darksouls3.wiki.fextralife.com/Kukri">Kukri x9</a>. Walk to the closed gate to grab a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+an+Unknown+Traveler">Soul of an Unknown Traveler</a></li>
<li data-id="playthrough_3_12" class="f_tit">Walk to the right of the house to grab a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a></li>
<li data-id="playthrough_3_32" class="f_cov f_misc">Walk through a large archway of the house, open a door, and walk into the room. Grab <a href="http://darksouls3.wiki.fextralife.com/Charcoal+Pine+Resin">Charcoal Pine Resin x2</a> from a corpse near the wall. Cut down the bodies hanging over the staircase to get a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Deserted+Corpse">Large Soul of a Deserted Corpse</a>. Drop down from a hole in the room. In this hidden room, discover the <a href="http://darksouls3.wiki.fextralife.com/Warrior+of+Sunlight">Warrior of Sunlight</a> covenant and consume <a href="http://darksouls3.wiki.fextralife.com/Estus+Soup">Estus Soup</a></li>
<li data-id="playthrough_3_33" class="f_misc">Open the door and walk to the end of the hallway. You should now be on the main street of the neighborhood. Head right and break through the wooden crates between the first gap on your right. Grab a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+an+Unknown+Traveler">Soul of an Unknown Traveler</a></li>
<li data-id="playthrough_3_34" class="f_weap">Walk back the main street and proceed. A wooden door should automatically break. Walk into that house to get the <a href="http://darksouls3.wiki.fextralife.com/Whip">Whip</a></li>
<li data-id="playthrough_3_35" class="f_tit">Proceed back onto the main street. Walk until you see a wooden wheel to your right. Walk around the corner to get a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a></li>
<li data-id="playthrough_3_36" class="f_tit">Climb up the balcony with an <a href="http://darksouls3.wiki.fextralife.com/Evangelist">Evangelist</a>. Grab a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a></li>
<li data-id="playthrough_3_37" class="f_misc">Climb down from the balcony and walk onto a rooftop. Jump onto the wooden platform on your left to grab <a href="http://darksouls3.wiki.fextralife.com/Rusted+Coin">Rusted Coin x2</a></li>
<li data-id="playthrough_3_38" class="f_gem">Jump down to kill the <a href="http://darksouls3.wiki.fextralife.com/Crystal+Lizard">Crystal Lizard</a> which drops a <a href="http://darksouls3.wiki.fextralife.com/Sharp+Gem">Sharp Gem</a>. Light the Dilapidated Bridge bonfire further below</li>
<li data-id="playthrough_3_39" class="f_misc f_npc f_miss">Mad dark spirit <a href="http://darksouls3.wiki.fextralife.com/Holy+Knight+Hodrick">Holy Knight Hodrick</a> will invade near the Dilapidated Bridge bonfire if you are embered. Kill him for his <a href="http://darksouls3.wiki.fextralife.com/Vertebra+Shackle">Vertebra Shackle</a></li>
<li data-id="playthrough_3_13" class="f_misc f_weap">Get back to the burning tree near the beginning of Undead Settlement, walk across the bridge, and walk around the right which should be blocked by wooden crates and barrels. Walk towards the houses with the <a href="http://darksouls3.wiki.fextralife.com/Thrall">Thralls</a>. Find a <a href="http://darksouls3.wiki.fextralife.com/Fading+Soul">Fading Soul</a> here. Walk around one of the houses to get the <a href="http://darksouls3.wiki.fextralife.com/Plank+Shield">Plank Shield</a>. Walk onto the rooftop of the house to your left and grab <a href="http://darksouls3.wiki.fextralife.com/Firebomb">Firebomb x6</a></li>
<li data-id="playthrough_3_14" class="f_misc f_ring">Climb onto the rooftop of the other house and grab <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone x2</a>. Jump down to where a non-hostile Cage Carrier is walking around. Cut down the hanging corpse at the end and grab the <a href="http://darksouls3.wiki.fextralife.com/Flame+Stoneplate+Ring">Flame Stoneplate Ring</a>. (If the corpse falls down and you are unable get the item, just proceed to the next step)</li>
<li data-id="playthrough_3_15" class="f_cov f_misc f_weap f_miss">Examine the Cage Carrier from behind. After you get out of your cage, walk towards the light. Grab the <a href="http://darksouls3.wiki.fextralife.com/Wargod+Wooden+Shield">Wargod Wooden Shield</a>. Talk to <a href="http://darksouls3.wiki.fextralife.com/Holy+Knight+Hodrick">Holy Knight Hodrick</a> to receive the <a href="http://darksouls3.wiki.fextralife.com/Mound-Maker">Mound-makers</a> covenant and a <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone</a>. (If you have reached the Curse-rotted Greatwood before reaching the Cage Carrier, Hodrick dies and the Cage Carrier becomes hostile. Thus, you cannot acquire the covenant until later through Sirris' sidequest.) Quit and reload to reappear near the Cage Carrier. Retrieve the ring if you missed it before</li>
<li data-id="playthrough_3_16" class="f_misc">Head back, dropping down a small ledge on the left. Enter the house near the bridge and pick up a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Deserted+Corpse">Large Soul of a Deserted Corpse</a>. Then open the backdoor</li>
<li data-id="playthrough_3_17" class="f_weap">From your right, get the <a href="http://darksouls3.wiki.fextralife.com/Caduceus+Round+Shield">Caduceus Round Shield</a></li>
<li data-id="playthrough_3_18" class="f_tit">Walk across the bridge towards the house in view and jump down to the ledge on your right. When you are on the ledge, walk towards the bridge to get a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a></li>
<li data-id="playthrough_3_53" class="f_none">The other way leads you to the Cliff Underside bonfire under the house and to a way up</li>
<li data-id="playthrough_3_19" class="f_gest f_weap f_npc">Walk to the top of the house and find a cage that houses <a href="http://darksouls3.wiki.fextralife.com/Cornyx+of+the+Great+Swamp">Cornyx of the Great Swamp</a>. Talk to him, and he moves to Firelink Shrine. At the Shrine, talk to him multiple times to receive your <a href="http://darksouls3.wiki.fextralife.com/Pyromancy+Flame">Pyromancy Flame</a> (unless you are already a pyromancer) and the Welcome gesture</li>
<li data-id="playthrough_3_20" class="f_weap">Grab the <a href="http://darksouls3.wiki.fextralife.com/Hand+Axe">Hand Axe</a> and get a <a href="http://darksouls3.wiki.fextralife.com/Partizan">Partizan</a> from a nearby hanging body</li>
<li data-id="playthrough_3_21" class="f_misc f_ring">Walk down from the house and walk onto the gallow. Grab a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+an+Unknown+Traveler">Soul of an Unknown Traveler</a>. Walk across the unfinished bridge to get the <a href="http://darksouls3.wiki.fextralife.com/Fire+Clutch+Ring">Fire Clutch Ring</a></li>
<li data-id="playthrough_3_22" class="f_misc">Walk through the archway of the house and down the stairs. Walk left and around the corner to get a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Deserted+Corpse">Large Soul of a Deserted Corpse</a>. Walk downstairs and towards a tree with a <a href="http://darksouls3.wiki.fextralife.com/Dog">Dog</a>. Kill it and get the <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_3_23" class="f_ring f_weap">Run towards the bridge, and enter the sewers on the right. Kill a Giant <a href="http://darksouls3.wiki.fextralife.com/rat">Rat</a> to get the <a href="http://darksouls3.wiki.fextralife.com/Bloodbite+Ring">Bloodbite Ring</a>. Grab the <a href="http://darksouls3.wiki.fextralife.com/Caestus">Caestus</a> and climb up to open the shortcut</li>
<li data-id="playthrough_3_24" class="f_misc">Walk back through the sewers and onto the bridge to get another <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a>. Walk upstairs towards the house on your right. Grab a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Deserted+Corpse">Large Soul of a Deserted Corpse</a>. Walk around the right side of the house to get <a href="http://darksouls3.wiki.fextralife.com/Alluring+Skull">Alluring Skull x3</a></li>
<li data-id="playthrough_3_25" class="f_npc">Walk towards the tower. Talk to <a href="http://darksouls3.wiki.fextralife.com/Eygon+of+Carim">Eygon of Carim</a> outside. If you have enough health, you can drop down into the valley to reach <a href="http://darksouls3.wiki.fextralife.com/Irina+of+Carim">Irina of Carim</a> in her cell, but don't bother. You can reach Irina by purchasing the Grave Key from the Shrine Maiden after giving the maiden the <a href="http://darksouls3.wiki.fextralife.com/Mortician's+Ashes">Mortician's Ashes</a> which is futher down in this list</li>
<li data-id="playthrough_3_26" class="f_misc f_npc f_weap">Walk into the tower to find <a href="http://darksouls3.wiki.fextralife.com/Siegward+of+Catarina">Siegward of Catarina</a>. Get on the elevator which goes down to the basement. Kill the <a href="http://darksouls3.wiki.fextralife.com/Boreal+Outrider+Knight">Boreal Outrider Knight</a> to get the <a href="http://darksouls3.wiki.fextralife.com/Irithyll+Straight+Sword">Irithyll Straight Sword</a>, grab the <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a> and rest at the <a href="http://darksouls3.wiki.fextralife.com/Road+of+Sacrifices">Road of Sacrifices</a> bonfire</li>
<li data-id="playthrough_3_54" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Life+Ring">Life Ring+1</a> is behind Siegward on the upcoming balcony</li>
<li data-id="playthrough_3_27" class="f_none">To reach the top of the tower, hit the switch on the elevator while at the main entrance and then quickly get off to reveal a second lift.</li>
<li data-id="playthrough_3_57" class="f_misc">After getting off the lift at the top you can find a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Nameless+Soldier">Soul of a Nameless Soldier</a> in a corner.</li>
<li data-id="playthrough_3_58" class="f_misc f_miss">Go up the stairs and offer a token of friendship to the <a href="http://darksouls3.wiki.fextralife.com/Giant+of+the+Undead+Settlement">Giant of the Undead Settlement</a> so that he does not attack you with giant arrows and even assists you when you are near a White Birch.</li>
<li data-id="playthrough_3_59" class="f_none f_miss">Take the lift down, and while facing the entrance of the tower, when you hear Siegward's voice; roll off to land onto a wooden platform.</li>
<li data-id="playthrough_3_60" class="f_npc f_miss">Head outside and speak to Siegward again.</li>
<li data-id="playthrough_3_61" class="f_npc f_miss">Lure the the Fire Demon towards the tower which makes Siegward come and fight by your side.</li>
<li data-id="playthrough_3_62" class="f_gem">After killing the Fire Demon you gain a <a href="http://darksouls3.wiki.fextralife.com/Fire+Gem">Fire Gem</a>.</li>
<li data-id="playthrough_3_63" class="f_misc f_gest f_npc f_miss">Speak to Siegward three times to receive a <a href="http://darksouls3.wiki.fextralife.com/Siegbrau">Siegbräu</a>, the Toast gesture, and the Sleep gesture.</li>
<li data-id="playthrough_3_28" class="f_arm f_misc f_weap">Around the town, you can grab a <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone</a> and a <a href="http://darksouls3.wiki.fextralife.com/Large+Club">Large Club</a>. You can also get the <a href="http://darksouls3.wiki.fextralife.com/Northern+Armor+Set">Northern Armor Set</a> from a nearby hanging corpse</li>
<li data-id="playthrough_3_29" class="f_gest f_misc f_npc">A <a href="http://darksouls3.wiki.fextralife.com/Pale+Tongue">Pale Tongue</a> can be found on a nearby hanging corpse. Obtaining the tongue here or from invading successfully leads to Leonhard returning to Firelink Shrine. He then gives you the <a href="http://darksouls3.wiki.fextralife.com/Lift+Chamber+Key">Lift Chamber Key</a> that opens the door below the Tower on the Wall bonfire of High Wall of Lothric. Kill the Darkwraith imprisoned there to get a <a href="http://darksouls3.wiki.fextralife.com/Red+Eye+Orb">Red Eye Orb</a>. Return to Firelink Shrine and talk to Leonhard to receive the Applause gesture</li>
<li data-id="playthrough_3_30" class="f_misc f_ring">Walk into the house to get <a href="http://darksouls3.wiki.fextralife.com/Red+Bug+Pellet">Red Bug Pellet x2</a>. Walk upstairs and grab <a href="http://darksouls3.wiki.fextralife.com/Alluring+Skull">Alluring Skull x2</a>. Walk across a bridge and into a house. Pillage a chest to get <a href="http://darksouls3.wiki.fextralife.com/Human+Pine+Resin">Human Pine Resin x4</a>. Walk onto the roof and to the left to get <a href="http://darksouls3.wiki.fextralife.com/Flynn's+Ring">Flynn's Ring</a></li>
<li data-id="playthrough_3_56" class="f_ring s_ng++">The <a href="https://darksouls3.wiki.fextralife.com/Covetous+Silver+Serpent+Ring">Covetous Silver Serpent Ring+2</a> is on one of the lower rooftops</li>
<li data-id="playthrough_3_31" class="f_arm f_misc f_ring">Drop down onto the ledge of a tower. Grab <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone x2</a>. Drop down from within the tower to get the <a href="http://darksouls3.wiki.fextralife.com/Mirrah+Set">Mirrah Set</a> without the mask and the <a href="http://darksouls3.wiki.fextralife.com/Chloranthy+Ring">Chloranthy Ring</a></li>
<li data-id="playthrough_3_40" class="f_arm f_ash f_weap">Warp back to the Dilapidated Bridge bonfire, enter the graveyard pierced by giant arrows, and walk towards the house on the left. Grab <a href="http://darksouls3.wiki.fextralife.com/Blue+Wooden+Shield">Blue Wooden Shield</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Cleric+Set">Cleric Set</a> in front of the house and <a href="http://darksouls3.wiki.fextralife.com/Mortician's+Ashes">Mortician's Ashes</a> by a tree to the left. If dodging the giant arrows is too troublesome, head to the tower to befriend the Giant</li>
<li data-id="playthrough_3_55" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Poisonbite+Ring">Poisonbite Ring+1</a> is behind the well</li>
<li data-id="playthrough_3_41" class="f_bone f_misc f_weap">Grab all the items around the White Birch (one of them being the <a href="http://darksouls3.wiki.fextralife.com/Reinforced+Club">Reinforced Club</a>) including the <a href="http://darksouls3.wiki.fextralife.com/Undead+Bone+Shard">Undead Bone Shard</a> on the platform to the right of the White Birch</li>
<li data-id="playthrough_3_42" class="f_weap">Enter the house and walk upstairs. Grab the <a href="http://darksouls3.wiki.fextralife.com/Great+Scythe">Great Scythe</a>. Continue to walk towards the stone building and open the doors on your right</li>
<li data-id="playthrough_3_52" class="f_gest f_npc f_miss">Return to Firelink Shrine. Give <a href="http://darksouls3.wiki.fextralife.com/Loretta's+bone">Loretta's bone</a> to Greirat, who then allows you to keep the Blue Tearstone Ring. You can reload the area and talk to Greirat again to learn the Curl Up gesture. You can reload the area once more and send him to pillage Undead Settlement. He returns when you kill a boss</li>
<li data-id="playthrough_3_43" class="f_none">Give the Shrine Handmaid the <a href="http://darksouls3.wiki.fextralife.com/Mortician's+Ashes">Mortician's Ashes</a> and then purchase the <a href="http://darksouls3.wiki.fextralife.com/Grave+Key">Grave Key</a> which opens the locked door in the sewer area next to the Dilapidated Bridge bonfire</li>
<li data-id="playthrough_3_44" class="f_arm">Go back the sewer area and open the locked door. Climb down and walk towards <a href="http://darksouls3.wiki.fextralife.com/Velka+the+Goddess+of+Sin">Velka the Goddess of Sin's statue</a> to grab a <a href="http://darksouls3.wiki.fextralife.com/Loincloth">Loincloth</a></li>
<li data-id="playthrough_3_45" class="f_misc f_weap">Proceed through the tunnel to get the <a href="http://darksouls3.wiki.fextralife.com/Red+Hilted+Halberd">Red Hilted Halberd</a>. Continue into another room to get a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+an+Unknown+Traveler">Soul of an Unknown Traveler</a></li>
<li data-id="playthrough_3_46" class="f_gem f_tit">Walk outside to kill a <a href="http://darksouls3.wiki.fextralife.com/Crystal+Lizard">Crystal Lizard</a> which drops a <a href="http://darksouls3.wiki.fextralife.com/Heavy+Gem">Heavy Gem</a>. Grab the <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a> and another <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a></li>
<li data-id="playthrough_3_47" class="f_weap">Walk through the archway tunnel. Shoot down a hanging corpse to get a <a href="http://darksouls3.wiki.fextralife.com/Red+and+White+Shield">Blessed Red and White Shield+1</a></li>
<li data-id="playthrough_3_48" class="f_weap">Walk into a new room and climb down to get a <a href="http://darksouls3.wiki.fextralife.com/Saint's+Talisman">Saint's Talisman</a></li>
<li data-id="playthrough_3_49" class="f_gest f_npc">Climb up and talk to <a href="http://darksouls3.wiki.fextralife.com/Irina+of+Carim">Irina of Carim</a> to receive the Prayer gesture. Touch her and accept her services. She then moves to the Firelink Shrine. After recruiting Irina, make sure to go outside and speak to Eygon. At the shrine, you can give Irina the <a href="http://darksouls3.wiki.fextralife.com/Londor+Braille+Divine+Tome">Londor Braille Divine Tome</a>, but doing so and buying any of its spells leads to her Dark ending. Otherwise, hang onto it until you find Karla later in the game</li>
<li data-id="playthrough_3_50" class="f_boss f_misc">Kill the <a href="http://darksouls3.wiki.fextralife.com/Curse-rotted+Greatwood">Curse-rotted Greatwood</a> to get <a href="http://darksouls3.wiki.fextralife.com/Soul+of+the+Rotted+Greatwood">Soul of the Rotted Greatwood</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Transposing+Kiln">Transposing Kiln</a>. Give the Transposing Kiln to <a href="http://darksouls3.wiki.fextralife.com/Ludleth+of+Courland">Ludleth of Courland</a> so he can turn boss souls into weapons, rings, and spells</li>
<li data-id="playthrough_3_51" class="f_gem f_npc f_miss">Talk to Hawkwood after killing the Greatwood to receive a <a href="http://darksouls3.wiki.fextralife.com/Heavy+Gem">Heavy Gem</a>. If he does not give you anything, come back to him after killing another boss</li>
</ul>
<h3 id="Road_of_Sacrifices"><a href="#Road_of_Sacrifices_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Road+of+Sacrifices">Road of Sacrifices</a> <span id="playthrough_totals_4"></span></h3>
<ul id="Road_of_Sacrifices_col" class="collapse in">
<li data-id="playthrough_4_1" class="f_npc">If you haven't done so before, you can send Greirat to pillage Undead Settlement. He returns when you kill a boss</li>
<li data-id="playthrough_4_2" class="f_gem">Travel to the Road of Sacrifices bonfire. Head down the path and drop down to the left of the tree to find a <a href="http://darksouls3.wiki.fextralife.com/Shriving+Stone">Shriving Stone</a></li>
<li data-id="playthrough_4_3" class="f_misc">A bit farther on you'll find a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+an+Unknown+Traveler">Soul of an Unknown Traveler</a> next to an overturned wagon</li>
<li data-id="playthrough_4_43" class="f_ring s_ng++">The <a href="https://darksouls3.wiki.fextralife.com/Chloranthy+Ring">Chloranthy Ring+2</a> is down on a ledge behind the first Corvian Storyteller</li>
<li data-id="playthrough_4_4" class="f_weap">At the fork in the path, head left and drop off the path when it ends. Head left again (instead of going under the bridge) and kill the <a href="http://darksouls3.wiki.fextralife.com/Madwoman">Madwoman</a> NPC for the <a href="http://darksouls3.wiki.fextralife.com/Butcher+Knife">Butcher Knife</a></li>
<li data-id="playthrough_4_5" class="f_arm f_weap">Grab the <a href="http://darksouls3.wiki.fextralife.com/Brigand+Axe">Brigand Axe</a>, the <a href="http://darksouls3.wiki.fextralife.com/Brigand+Set">Brigand Set</a>, and the <a href="http://darksouls3.wiki.fextralife.com/Brigand+Twindaggers">Brigand Twindaggers</a> from this lower area</li>
<li data-id="playthrough_4_6" class="f_tit">Turn around and head back up the path and under the bridge. Head up and across the bridge for a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a></li>
<li data-id="playthrough_4_7" class="f_ring f_tome">Cross back over the bridge and head to the next bridge. Before crossing it, drop off to the right to reach an area where you'll find the <a href="http://darksouls3.wiki.fextralife.com/Braille+Divine+Tome+of+Carim">Braille Divine Tome of Carim</a> and <a href="http://darksouls3.wiki.fextralife.com/Morne's+Ring">Morne's Ring</a>. Give the tome to <a href="http://darksouls3.wiki.fextralife.com/Irina+of+Carim">Irina of Carim</a> at Firelink Shrine and buy all the spells it offers if you want her to become a Fire Keeper later in the game</li>
<li data-id="playthrough_4_8" class="f_misc">Before entering the archway that leads to the Halfway Fortress bonfire, you can find an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a> on a ledge with a caster enemy</li>
<li data-id="playthrough_4_9" class="f_cov f_npc f_miss">Talk to <a href="http://darksouls3.wiki.fextralife.com/Anri+of+Astora">Anri of Astora</a> at the Halfway Fortress bonfire. Talk to <a href="http://darksouls3.wiki.fextralife.com/Horace+the+Hushed">Horace the Hushed</a> to get the <a href="http://darksouls3.wiki.fextralife.com/Blue+Sentinels">Blue Sentinels</a> covenant. Make sure to deplete Anri's dialogue before continuing the game</li>
<li data-id="playthrough_4_10" class="f_npc f_miss">After meeting Anri of Astora, return to Firelink Shrine to talk to <a href="http://darksouls3.wiki.fextralife.com/Sirris+of+the+Sunless+Realms">Sirris of the Sunless Realms</a> to begin her quest line</li>
<li data-id="playthrough_4_11" class="f_misc">Head into the Crucifixion Woods from the Halfway Fortress bonfire. Drop off the right side of the path as soon as it turns left, and drop again to grab a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+an+Unknown+Traveler">Soul of an Unknown Traveler</a></li>
<li data-id="playthrough_4_12" class="f_arm">Drop off again and head straight while hugging the wall to your right. You'll arrive at a door. Head in and straight across to a balcony-type area where you'll find some stairs leading to the <a href="http://darksouls3.wiki.fextralife.com/Sellsword+Set">Sellsword Set</a></li>
<li data-id="playthrough_4_13" class="f_weap">Drop down to find the <a href="http://darksouls3.wiki.fextralife.com/Sellsword+Twinblades">Sellsword Twinblades</a> directly underneath the corpse that had the Sellsword Set</li>
<li data-id="playthrough_4_14" class="f_coal">A bit farther in the building you'll find the <a href="http://darksouls3.wiki.fextralife.com/Farron+Coal">Farron Coal</a>, which enables Heavy, Sharp, and Poison infusions</li>
<li data-id="playthrough_4_15" class="f_tit">Head back outside through the same door you used to enter. Step into the water and follow the edge of the water to the left. Hug the cliffs and you'll find a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a></li>
<li data-id="playthrough_4_16" class="f_tit">Continue on with the cliff wall to your left. You'll head past the ramp that leads back up to the Halfway Fortress bonfire, but keep the cliff to your left after moving past it. You'll find another <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a></li>
<li data-id="playthrough_4_17" class="f_tit">Continuing in this manner, you'll find a large group of <a href="http://darksouls3.wiki.fextralife.com/Poisonhorn+Bug">Poisonhorn Bugs</a> guarding yet another <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a></li>
<li data-id="playthrough_4_18" class="f_weap">At this point, deviate from the cliff wall for a bit and head up the hill towards the water for the <a href="http://darksouls3.wiki.fextralife.com/Twin+Dragon+Greatshield">Twin Dragon Greatshield</a></li>
<li data-id="playthrough_4_19" class="f_misc">Head towards the stone wall with the large broken arch (which you would have eventually reached had you stuck to the cliff wall). Grab the <a href="http://darksouls3.wiki.fextralife.com/Fading+Soul">Fading Soul</a> from the corpse before heading through</li>
<li data-id="playthrough_4_20" class="f_miss">Turn right soon after heading through the arch to reach the Crucifixion Woods bonfire. Walk along the rocky wall towards the ruins until you reach a purple summon sign for mad phantom <a href="http://darksouls3.wiki.fextralife.com/Holy+Knight+Hodrick">Holy Knight Hodrick</a>. When summoned, he instantly becomes hostile, so kill him for souls</li>
<li data-id="playthrough_4_21" class="f_estus">Head past where Hodrick's summon sign was until you reach a ledge. Fall down to grab the <a href="http://darksouls3.wiki.fextralife.com/Estus+Shard">Estus Shard</a></li>
<li data-id="playthrough_4_22" class="f_misc">Continue around the building to a large bonfire with an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_4_23" class="f_misc">Finish your circuit around the building for a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+an+Unknown+Traveler">Soul of an Unknown Traveler</a></li>
<li data-id="playthrough_4_24" class="f_ring">Back at the Crucifixion Woods bonfire, drop off into the water and kill the <a href="http://darksouls3.wiki.fextralife.com/Great+Crab">Great Crab</a> furthest away from you for the <a href="http://darksouls3.wiki.fextralife.com/Great+Swamp+Ring">Great Swamp Ring</a></li>
<li data-id="playthrough_4_25" class="f_npc f_arm f_weap f_miss">If you are embered, dark spirit <a href="http://darksouls3.wiki.fextralife.com/Yellowfinger+Heysel">Yellowfinger Heysel</a> invades around where the two giant crabs are. Kill her for <a href="http://darksouls3.wiki.fextralife.com/Heysel+Pick">Heysel Pick</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Xanthous+Crown">Xanthous Crown</a></li>
<li data-id="playthrough_4_26" class="f_arm f_misc f_tome f_weap">You will find the following items in the water: <a href="http://darksouls3.wiki.fextralife.com/Green+Blossom">Green Blossom x2</a>, <a href="http://darksouls3.wiki.fextralife.com/Green+Blossom">Green Blossom x4</a>, the <a href="http://darksouls3.wiki.fextralife.com/Grass+Crest+Shield">Grass Crest Shield</a>, the <a href="http://darksouls3.wiki.fextralife.com/Conjurator+Set">Conjurator Set</a>, and the <a href="http://darksouls3.wiki.fextralife.com/Great+Swamp+Pyromancy+Tome">Great Swamp Pyromancy Tome</a>. The tome and the set are in the deep part of the swamp near the entrance of <a href="http://darksouls3.wiki.fextralife.com/Farron+Keep">Farron Keep</a></li>
<li data-id="playthrough_4_27" class="f_arm f_ring">In the water near where you jump down from the Crucifixion Woods bonfire (near where the two Green Blossoms were), there are steps leading out of the water and a door to the left of them. Head through the door to find a small area with the <a href="http://darksouls3.wiki.fextralife.com/Sage+Ring">Sage Ring</a> and the <a href="http://darksouls3.wiki.fextralife.com/Sorcerer+Set">Sorcerer Set</a></li>
<li data-id="playthrough_4_42" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Lingering+Dragoncrest+Ring">Lingering Dragoncrest Ring+1</a> is next to a tree</li>
<li data-id="playthrough_4_34" class="f_gem">Head back out of this small area and take the steps to your left. Enter the building and proceed to the next room ahead to find a hallway with a <a href="http://darksouls3.wiki.fextralife.com/Crystal+Lizard">Crystal Lizard</a>, which will drop a <a href="http://darksouls3.wiki.fextralife.com/Crystal+Gem">Crystal Gem</a> when killed</li>
<li data-id="playthrough_4_28" class="f_ring">Go back to the previous room and head up the steps all the way to a balcony. Drop off the broken end to reach a ledge with a <a href="http://darksouls3.wiki.fextralife.com/Ring+of+Sacrifice">Ring of Sacrifice</a></li>
<li data-id="playthrough_4_29" class="f_weap">Drop down, head back up the steps to the same room you were just in, and head up the stairs in the room, but only until you reach the broken wall. Head through down the path to grab the <a href="http://darksouls3.wiki.fextralife.com/Golden+Falcon+Shield">Golden Falcon Shield</a></li>
<li data-id="playthrough_4_30" class="f_weap">Drop down from here and kill the two NPCs for the <a href="http://darksouls3.wiki.fextralife.com/Great+Club">Great Club</a> and the <a href="http://darksouls3.wiki.fextralife.com/Exile+Greatsword">Exile Greatsword</a></li>
<li data-id="playthrough_4_31" class="f_arm f_misc">Near the water's edge is a corpse with the <a href="http://darksouls3.wiki.fextralife.com/Fallen+Knight+Set">Fallen Knight Set</a>. There is also a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+an+Unknown+Traveler">Large Soul of an Unknown Traveler</a> by the wall</li>
<li data-id="playthrough_4_32" class="f_misc">Head into the building the NPCs were guarding. There is <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone x2</a> on a balcony in here. Double back and head down the ladder to light the Farron Keep bonfire</li>
<li data-id="playthrough_4_33" class="f_weap">Warp or run back to the Crucifixion Woods bonfire. Head into the ruins this time (the ones you previously traveled around before to grab the Estus Shard). The entrance is a hole in the wall in a small depression in the ground. In the first room you'll find the <a href="http://darksouls3.wiki.fextralife.com/Heretic's+Staff">Heretic's Staff</a> in an alcove to the right</li>
<li data-id="playthrough_4_35" class="f_npc f_miss">Continue on until you reach a 4-way crossroads and then go through the door on your left that looks like it leads to a wall. Turn right at the wall and you'll eventually arrive at <a href="http://darksouls3.wiki.fextralife.com/Orbeck+of+Vinheim">Orbeck of Vinheim</a>. Talk to him and he agrees to teach you in sorceries only if you have at least 10 Intelligence and promise to bring him scrolls. He then moves to Firelink Shrine. If you do not bring him any scrolls before defeating 4 bosses, he will leave</li>
<li data-id="playthrough_4_36" class="f_gest f_npc f_ring f_miss"><a href="http://darksouls3.wiki.fextralife.com/Orbeck+of+Vinheim">Orbeck of Vinheim</a> grants you different rewards based on certain criteria. If you are not a sorcerer, the <a href="http://darksouls3.wiki.fextralife.com/Young+Dragon+Ring">Young Dragon Ring</a> is given to you after buying three of his spells and giving him at least one scroll. You will be rewarded with the Silent Ally gesture and the <a href="http://darksouls3.wiki.fextralife.com/Slumbering+Dragoncrest+Ring">Slumbering Dragoncrest Ring</a> after buying Aural Decoy, Farron Flashsword, Pestilent Mist, and Spook.</li>
<li data-id="playthrough_4_37" class="f_misc">There are broken steps that lead down from Orbeck's study with <a href="http://darksouls3.wiki.fextralife.com/Blue+Bug+Pellet">Blue Bug Pellet x2</a>. Drop off to reach the final room before the boss</li>
<li data-id="playthrough_4_38" class="f_boss f_miss">In this room, near one of the stone pillars, <a href="http://darksouls3.wiki.fextralife.com/Eygon+of+Carim">Eygon of Carim</a> has casted down a summon sign. You can summon him if you have recruited Irina to your Shrine and have not harmed her</li>
<li data-id="playthrough_4_39" class="f_boss f_misc">Defeat the <a href="http://darksouls3.wiki.fextralife.com/Crystal+Sage">Crystal Sage</a>; receive <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Crystal+Sage">Soul of a Crystal Sage</a></li>
<li data-id="playthrough_4_40" class="f_tit">Head down the winding paths past the Crystal Sage bonfire to find two Crystal Lizards, who will each drop a <a href="http://darksouls3.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a></li>
<li data-id="playthrough_4_41" class="f_arm">Continue following these twisting paths until you can drop down next to a large fire and the <a href="http://darksouls3.wiki.fextralife.com/Herald+Set">Herald Set</a>. Continue on to the Cathedral of the Deep bonfire</li>
</ul>
<h3 id="Cathedral_of_the_Deep"><a href="#Cathedral_of_the_Deep_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Cathedral+of+the+Deep">Cathedral of the Deep</a> <span id="playthrough_totals_5"></span></h3>
<ul id="Cathedral_of_the_Deep_col" class="collapse in">
<li data-id="playthrough_5_1" class="f_ash">From the Cathedral of the Deep bonfire, head down to the left to find a hostile sword-wielding NPC and the <a href="http://darksouls3.wiki.fextralife.com/Paladin's+Ashes">Paladin's Ashes</a> behind him</li>
<li data-id="playthrough_5_2" class="f_tit">Back up by the bonfire, start heading up the first set of steps, but turn left about halfway up. Follow the path and turn right at the end for a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a> in an alcove</li>
<li data-id="playthrough_5_3" class="f_weap">Head back to the steps and head up to the top of this first set. Before climbing the second set of steps, head right this time and follow the path until you reach the <a href="http://darksouls3.wiki.fextralife.com/Crest+Shield">Crest Shield</a></li>
<li data-id="playthrough_5_4" class="f_weap">From here, you can jump down and kill the axe-wielding NPC on the steps (he can be struck with a plunge attack using a big enough weapon) to get the <a href="http://darksouls3.wiki.fextralife.com/Spider+Shield">Spider Shield</a></li>
<li data-id="playthrough_5_5" class="f_misc">In the next area with the dogs and crossbow enemies, grab the <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+an+Unknown+Traveler">Large Soul of an Unknown Traveler</a> from a ledge</li>
<li data-id="playthrough_5_6" class="f_weap">Continue on and light the Cleansing Chapel bonfire inside the chapel. There is also the <a href="http://darksouls3.wiki.fextralife.com/Notched+Whip">Notched Whip</a> in the corner</li>
<li data-id="playthrough_5_7" class="f_estus">Grab the <a href="http://darksouls3.wiki.fextralife.com/Estus+Shard">Estus Shard</a> right outside the Cleansing Chapel bonfire where enemies are praying near an obelisk</li>
<li data-id="playthrough_5_8" class="f_weap">Instead of heading up the steps past the obelisk, head right and drop down a couple of cliffs into a lower, water-filled area. Head forward a bit to grab the <a href="http://darksouls3.wiki.fextralife.com/Saint-tree+Bellvine">Saint-tree Bellvine</a> from a stump on the right. Remember you can hold a torch to get rid of leeches</li>
<li data-id="playthrough_5_9" class="f_tit">Continue down the waterway and head up the steps at the end. From the top of the steps, there will be a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a> to your right and a Crystal Lizard in front of you which will drop a <a href="http://darksouls3.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a> when killed</li>
<li data-id="playthrough_5_10" class="f_tit">Farther down the path you'll encounter another Crystal Lizard which will drop another <a href="http://darksouls3.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a>. If you head up the stone steps near where the lizard was sitting initially, you can grab another <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a></li>
<li data-id="playthrough_5_11" class="f_tit">From here, you can drop down to where the <a href="http://darksouls3.wiki.fextralife.com/Ravenous+Crystal+Lizard">Ravenous Crystal Lizard</a> is sleeping and kill it for a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Scale">Titanite Scale</a></li>
<li data-id="playthrough_5_12" class="f_ring">Near where the Ravenous Crystal Lizard was sleeping, you'll find a narrow path between the buildings which leads to the <a href="http://darksouls3.wiki.fextralife.com/Poisonbite+Ring">Poisonbite Ring</a></li>
<li data-id="playthrough_5_13" class="f_tit">Turn around and head back outside and continue straight up a set of steps. Here you'll be able to grab a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a> from a window and drop back down to the Cleansing Chapel bonfire</li>
<li data-id="playthrough_5_14" class="f_weap">Head back out past the obelisk with the praying enemies and head up the steps into the graveyard. Take your first left and stay left to reach the <a href="http://darksouls3.wiki.fextralife.com/Astora+Greatsword">Astora Greatsword</a></li>
<li data-id="playthrough_5_15" class="f_misc f_weap">Turn around from the previous item and head straight until you reach a T-intersection. Head left, drop off, and follow the path to the end to drop down in an area with a <a href="http://darksouls3.wiki.fextralife.com/Fading+Soul">Fading Soul</a> and the <a href="http://darksouls3.wiki.fextralife.com/Executioner's+Greatsword">Executioner's Greatsword</a></li>
<li data-id="playthrough_5_16" class="f_bone f_misc">Turn around and head out of this circular area, turning left when you can and crossing a bridge. Head up a set of steps, fight the <a href="http://darksouls3.wiki.fextralife.com/Cathedral+Grave+Warden">Cathedral Grave Warden</a>, and head down more steps to the right to an area riddled with large arrows. Here you can pick up an <a href="http://darksouls3.wiki.fextralife.com/Undead+Bone+Shard">Undead Bone Shard</a>, <a href="http://darksouls3.wiki.fextralife.com/Repair+Powder">Repair Powder x3</a>, a <a href="http://darksouls3.wiki.fextralife.com/Young+White+Branch">Young White Branch</a>, another <a href="http://darksouls3.wiki.fextralife.com/Young+White+Branch">Young White Branch</a>, a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+an+Unknown+Traveler">Large Soul of an Unknown Traveler</a>, and finally another <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+an+Unknown+Traveler">Large Soul of an Unknown Traveler</a></li>
<li data-id="playthrough_5_17" class="f_tit f_weap">Head back up to where you fought the Cathedral Grave Warden, and head up the set of steps and turn right towards a tower. You can find a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a> to the left of the tower. Inside, grab the <a href="http://darksouls3.wiki.fextralife.com/Curse+Ward+Greatshield">Curse Ward Greatshield</a>, head downstairs, and create another shortcut by kicking down the ladder</li>
<li data-id="playthrough_5_18" class="f_misc">Head back up and out and towards the cathedral's main double doors. Head left first and roll through some crates to find <a href="http://darksouls3.wiki.fextralife.com/Rusted+Coin">Rusted Coin x2</a></li>
<li data-id="playthrough_5_19" class="f_misc">Heading right from the double doors, you'll find a corpse with a <a href="http://darksouls3.wiki.fextralife.com/Red+Bug+Pellet">Red Bug Pellet</a></li>
<li data-id="playthrough_5_20" class="f_misc">Continue on across the narrow roof (watching out for ambushes) and grab the <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+an+Unknown+Traveler">Large Soul of an Unknown Traveler</a> from the other side</li>
<li data-id="playthrough_5_21" class="f_misc">You'll come across a few crossbow-wielding enemies in a lower area a bit farther on. Head down and kill them, then jump over onto the next buttress leading up. From above you can get the drop on a group of Thralls lying in ambush on the nearby roof. After expunging them, jump attack the other Thrall hanging on the wall, landing you right on top of <a href="http://darksouls3.wiki.fextralife.com/Red+Bug+Pellet">Red Bug Pellet x3</a>. At the other end of this walkway you'll find <a href="http://darksouls3.wiki.fextralife.com/Undead+Hunter+Charm">Undead Hunter Charm x3</a></li>
<li data-id="playthrough_5_22" class="f_misc">Head back to the lower area where you fought the crossbow-wielding enemies. Continue down the path and take a left into a room where you can grab a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Nameless+Soldier">Soul of a Nameless Soldier</a>. (Watch out for another Thrall ambush)</li>
<li data-id="playthrough_5_23" class="f_misc">Head back outside and continue around the perimeter of the cathedral until you reach a dead end with an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_5_24" class="f_misc">Turn around and head back a short way to open a set of double doors which lead into the cathedral. Head left once inside and grab the <a href="http://darksouls3.wiki.fextralife.com/Duel+Charm">Duel Charm</a> from in front of a poison-spewing statue</li>
<li data-id="playthrough_5_25" class="f_gem">Continue through a dining room until you reach a lift which you can take to open a shortcut to the Cleansing Chapel bonfire. Head back up the lift and take notice of the enemy lurking above before taking the long set of steps (to the right of the balcony) down to grab a <a href="http://darksouls3.wiki.fextralife.com/Deep+Gem">Deep Gem</a></li>
<li data-id="playthrough_5_26" class="f_misc f_ring">Head back up and out onto the balcony. Run around the perimeter, optionally killing the giant (he's easier to kill from the area below), and grab the <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Nameless+Soldier">Soul of a Nameless Soldier</a>, <a href="http://darksouls3.wiki.fextralife.com/Lloyd's+Sword+Ring">Lloyd's Sword Ring</a>, and <a href="http://darksouls3.wiki.fextralife.com/Exploding+Bolt">Exploding Bolt x8</a> (or save them for later if the giant is giving you trouble)</li>
<li data-id="playthrough_5_27" class="f_mirac">Head through the door at the other end of the balcony. Take the first left and head across a bridge-like platform (watching out for Thralls and ceiling slimes) and grab the <a href="http://darksouls3.wiki.fextralife.com/Seek+Guidance">Seek Guidance</a> miracle</li>
<li data-id="playthrough_5_28" class="f_misc">Head back across the bridge and up the ladder to grab an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_5_29" class="f_tome">From here, drop back down to the balcony where the giant attacked and head down the steps again. This time, head straight down to reach a room with a Mimic. Kill (or charm) it for the <a href="http://darksouls3.wiki.fextralife.com/Deep+Braille+Divine+Tome">Deep Braille Divine Tome</a>. Remember, giving this to Irina and buying any of the spells it unlocks will lock you into the bad ending of her quest. I recommend saving this for Karla, unless you really want some of the spells</li>
<li data-id="playthrough_5_30" class="f_misc f_ring">From the Mimic, head down more steps and continue straight to a room with a <a href="http://darksouls3.wiki.fextralife.com/Deep+Accursed">Deep Accursed</a> that drops <a href="http://darksouls3.wiki.fextralife.com/Aldrich's+Sapphire">Aldrich's Sapphire</a> upon death. There is also an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a> in this room</li>
<li data-id="playthrough_5_31" class="f_npc f_weap f_miss">Head back to the previous room and turn right to head through a door and up some steps. If you are embered, <a href="http://darksouls3.wiki.fextralife.com/Longfinger+Kirk">Longfinger Kirk</a> will invade your world. He drops <a href="http://darksouls3.wiki.fextralife.com/Barbed+Straight+Sword">Barbed Straight Sword</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Spiked+Shield">Spiked Shield</a></li>
<li data-id="playthrough_5_32" class="f_arm f_misc">Kill the giant if you haven't already (the one in the larger open area) and grab the <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Nameless+Soldier">Soul of a Nameless Soldier</a> and the <a href="http://darksouls3.wiki.fextralife.com/Maiden+Set">Maiden Set</a></li>
<li data-id="playthrough_5_33" class="f_misc f_weap">Open the double doors next to where the giant was, head down some steps, and open another set of doors. Out here you can pick up the <a href="http://darksouls3.wiki.fextralife.com/Saint+Bident">Saint Bident</a> and <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone x2</a></li>
<li data-id="playthrough_5_34" class="f_misc">Head back up through both doors and walk forward through the water until you can turn left up some steps. You'll find a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+an+Unknown+Traveler">Large Soul of an Unknown Traveler</a> against the wall</li>
<li data-id="playthrough_5_35" class="f_arm f_misc f_weap">Travel over to the other end of the large, open, water-filled area to the other giant. Kill this one and the slimes around him, and you'll be able to grab a <a href="http://darksouls3.wiki.fextralife.com/Pale+Tongue">Pale Tongue</a>, the <a href="http://darksouls3.wiki.fextralife.com/Drang+Armor+Set">Drang Armor Set</a>, and the <a href="http://darksouls3.wiki.fextralife.com/Drang+Hammers">Drang Hammers</a></li>
<li data-id="playthrough_5_36" class="f_misc">Head up the steps behind where the giant was sitting, kill the enemies around the shrine, and grab the <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a> from the ledge that overlooks the water-filled area</li>
<li data-id="playthrough_5_55" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Ring+of+the+Evil+Eye">Ring of the Evil Eye+1</a> is behind the shrine</li>
<li data-id="playthrough_5_37" class="f_misc f_miss">If you turn to face the giant shrine, you should see a door to your left. Head through and you'll reach some double doors that open back out to a previous area (near the graveyard). Staying inside the cathedral, continue past these doors to reach Siegward (if he is not here, follow the first part of the next step). Grab <a href="http://darksouls3.wiki.fextralife.com/Duel+Charm">Duel Charm x3</a> to the right of him. (Note: If you've already gone to the upper rafters where you drop down to Rosaria, the following encounter will not occur)</li>
<li data-id="playthrough_5_38" class="f_npc f_miss">If Siegward is not there, leave the Cathedral completely (go to Firelink Shrine and come back) and then head back into the Cathedral through the large blue double doors you just opened. You will notice that a new bridge has been activated and Siegward is standing next to it. Talk to him and then cross the bridge to trigger a cutscene where it is revealed it was really Patches. Depending on if you killed the Giants or not, you'll either have to fight one or nothing happens</li>
<li data-id="playthrough_5_39" class="f_none">After being lowered, turn directly around and head through the door that's directly underneath the area Patches was standing. Head through a door and down several sets of steps to open the final shortcut to the Cleansing Chapel bonfire</li>
<li data-id="playthrough_5_40" class="f_ring">As you head back through the shortcut you just opened, you should notice another door on your left immediately after you leave the chapel. Open it to reveal a lift, which will take you up to an area where you can climb a ladder to an enemy that drops the <a href="http://darksouls3.wiki.fextralife.com/Deep+Ring">Deep Ring</a> when killed</li>
<li data-id="playthrough_5_41" class="f_misc f_weap">You can drop onto a new roof through the hole in the wall just past the enemy you just killed. Head up the roof, turn right, and begin heading down this long roof. Eventually you'll be able to turn right and head down another roof to reach an <a href="http://darksouls3.wiki.fextralife.com/Arbalest">Arbalest</a>. Head back up to the long roof and head to the end to grab a <a href="http://darksouls3.wiki.fextralife.com/Pale+Tongue">Pale Tongue</a></li>
<li data-id="playthrough_5_56" class="f_ring s_ng++">The <a href="https://darksouls3.wiki.fextralife.com/Ring+of+Favor">Ring of Favor+2</a> is at the very opposite end</li>
<li data-id="playthrough_5_42" class="f_gem">Turn around from the Pale Tongue location and head back down the long roof. Eventually, you'll be able to turn right and head back inside to the rafters of the cathedral. Head right first and grab the <a href="http://darksouls3.wiki.fextralife.com/Blessed+Gem">Blessed Gem</a> near the wall</li>
<li data-id="playthrough_5_43" class="f_gest f_misc f_npc f_miss">Zig-zag your way across the rafters towards the other end, sticking primarily to the right. Eliminate the knight with the crossbow and drop down near where he was standing to a platform with a couple of candelabras. Drop again and you'll find yourself back with Patches. He will be waiting here and pretend to not be responsible for what just happened. Tell him "You know who I am" to receive the Prostration gesture. You can speak with him again for a <a href="http://darksouls3.wiki.fextralife.com/Rusted+Coin">Rusted Coin</a>. You can then buy <a href="http://darksouls3.wiki.fextralife.com/Catarina+Set">Siegward's Armor Set</a> from him. (Note: Purchasing this armor means Patches will not be a rescue option for Greirat later in Irithyll of the Boreal Valley)</li>
<li data-id="playthrough_5_44" class="f_cov f_misc f_npc f_miss">Before leaving this area, continue on up the nearby stairs. Kill all the enemies and the non-agressive one will drop the <a href="http://darksouls3.wiki.fextralife.com/Red+Sign+Soapstone">Red Sign Soapstone</a>. Continue on and you'll eventually find yourself at the Rosaria's Bed Chamber bonfire. Speak with Rosaria to obtain the <a href="http://darksouls3.wiki.fextralife.com/Rosaria's+Fingers">Rosaria's Fingers</a> covenant. For now, do not offer her any Pale Tongues if you intend to do Sirris' quest line. We'll continue this side quest closer to the end of the game</li>
<li data-id="playthrough_5_45" class="f_arm f_miss">If you killed Longfinger Kirk when he invaded earlier, you can grab the <a href="http://darksouls3.wiki.fextralife.com/Armor+of+Thorns+Set">Armor of Thorns Set</a> nearby</li>
<li data-id="playthrough_5_46" class="f_misc f_npc f_miss">If Patches didn't spawn at the Cathedral, return to Firelink Shrine and purchase the Tower Key if you haven't already and head into the Tower behind Firelink Shrine now. As you ascend the lift to the top, you'll hear a door shut behind you. Grab the <a href="http://darksouls3.wiki.fextralife.com/Fire+Keeper+Soul">Fire Keeper Soul</a> at the top, if you haven't before, and then come back down to encounter Patches. He has locked the door and you'll need to drop down from the bridge onto coffins to escape</li>
<li data-id="playthrough_5_47" class="f_estus">Head back to the Tower and get to the bridge that overlooks Firelink Shrine. Drop down onto the roof and move around the roof until you find some windows you can go through. An <a href="http://darksouls3.wiki.fextralife.com/Estus+Shard">Estus Shard</a> will be on the rafters (you may have done this already in the Firelink Shrine section)</li>
<li data-id="playthrough_5_48" class="f_gest f_arm">While on the roof, you can hear <a href="http://darksouls3.wiki.fextralife.com/Pickle+Pee,+Pump-a-Rum+Crow">Pickle-Pee, Pump-a-Rum</a> crow. Trading a <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone</a> will get you the Call Over gesture and the <a href="http://darksouls3.wiki.fextralife.com/Iron+Bracelets">Iron Bracelets</a> (you may have done this already in the Firelink Shrine section). For the other trade options see the <a href="#" onclick="$('.nav.navbar-nav li a[href=\x22#tabMisc\x22]').click();">Misc</a> page</li>
<li data-id="playthrough_5_49" class="f_npc f_miss">With the Fire Keeper Soul, you can heal Dark Sigils that you have in order to completely get rid of your Hollowing Level. If you are following Yoel/Yuria's quest line, however, don't do this until the postgame or you'll end up angering Yoel/Yuria</li>
<li data-id="playthrough_5_50" class="f_gest f_misc f_npc f_miss">Refresh Firelink Shrine and head to the upper right to find Patches now located there. He'll ask for forgiveness; refuse to receive the Prostration gesture and a <a href="http://darksouls3.wiki.fextralife.com/Rusted+Gold+Coin">Rusted Gold Coin</a>. You can then buy Siegward's Armor Set from him. Leaving Firelink Shrine and returning will allow Patches to be in his squatting position. Interact with him to receive the Patches Squat gesture</li>
<li data-id="playthrough_5_51" class="f_npc f_miss">If you can't buy Siegward's Armor Set yet, head to the Cleansing Chapel and check the well at the entrance, where Siegward should trapped. After speaking to him, return to whatever location Patches is at for you and buy the armor</li>
<li data-id="playthrough_5_52" class="f_gest f_npc f_miss">Return to the well Siegward is in and throw his armor down to him to receive the Rejoice gesture</li>
<li data-id="playthrough_5_53" class="f_boss f_misc f_miss">Head back up the steps past where you defeated the second giant. Turn right at the giant shrine. If you are embered, you can summon <a href="http://darksouls3.wiki.fextralife.com/Anri+of+Astora">Anri of Astora</a> and <a href="http://darksouls3.wiki.fextralife.com/Horace+the+Hushed">Horace the Hushed</a> (both behind the shrine) as well as <a href="http://darksouls3.wiki.fextralife.com/Sirris+of+the+Sunless+Realms">Sirris of the Sunless Realms</a> (before the fog door). Defeat the <a href="http://darksouls3.wiki.fextralife.com/Deacons+of+the+Deep">Deacons of the Deep</a> and you'll receive <a href="http://darksouls3.wiki.fextralife.com/small+doll">Small Doll</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Soul+of+the+Deacons+of+the+Deep">Soul of the Deacons of the Deep</a></li>
<li data-id="playthrough_5_54" class="f_arm">Rest at the bonfire so you can pick up the <a href="http://darksouls3.wiki.fextralife.com/Archdeacon+Set">Archdeacon Set</a> near the altar</li>
</ul>
<h3 id="Farron_Keep"><a href="#Farron_Keep_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Farron+Keep">Farron Keep</a> <span id="playthrough_totals_6"></span></h3>
<ul id="Farron_Keep_col" class="collapse in">
<li data-id="playthrough_6_1" class="f_npc">After defeating the Deacons of the Deep, return to Firelink Shrine to find Anri and Horace. Talk to Anri to progress the questline</li>
<li data-id="playthrough_6_49" class="f_none">Farron Keep is a poisonous swamp, hence it might be a good idea to buy a few Purple Moss Clumps from the Shrine Handmaid. In addition, any item with the Quickstep weapon art (such as the Dagger, also sold by the Handmaid) could be useful as well since it allows you to move unimpeded through the deeper sections of the swamp</li>
<li data-id="playthrough_6_48" class="f_misc f_pyro">Leave the bonfire and enter Farron Keep proper. Turn right and in the back corner you will find <a href="http://darksouls3.wiki.fextralife.com/Purple+Moss+Clump">Purple Moss Clump x3</a>. Continue into the swamp from there to find <a href="http://darksouls3.wiki.fextralife.com/Iron+Flesh">Iron Flesh</a> between some trees</li>
<li data-id="playthrough_6_75" class="f_npc f_weap f_miss">Optionally, and only if you are on bad terms with Yuria (healed the Dark Sigil or attacked her) and are embered, head further into the deep swamp on the right. Dark spirit <a href="http://darksouls3.wiki.fextralife.com/Londor+Pale+Shade">Londor Pale Shade</a> will invade your world among the Basilisks there. If you kill him, you will receive the <a href="http://darksouls3.wiki.fextralife.com/Manikin+Claws">Manikin Claws</a></li>
<li data-id="playthrough_6_78" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Magic+Stoneplate+Ring">Magic Stoneplate Ring+1</a> is also in the deep swamp here</li>
<li data-id="playthrough_6_2" class="f_arm">Head back to the Farron Keep bonfire, turn left this time and in the back corner you will find <a href="http://darksouls3.wiki.fextralife.com/Ragged+Mask">Ragged Mask</a> surrounded by slugs</li>
<li data-id="playthrough_6_3" class="f_tit">To the right you will see a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a> in the swamp</li>
<li data-id="playthrough_6_4" class="f_estus">Turn right, head around the island, and in front of the partially sunken stone tower you will find an <a href="http://darksouls3.wiki.fextralife.com/Estus+Shard">Estus Shard</a></li>
<li data-id="playthrough_6_5" class="f_tit">To the left and past a large fire you'll see a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a> before the steps leading up</li>
<li data-id="playthrough_6_6" class="f_misc">Instead of taking these steps, turn left once more to find <a href="http://darksouls3.wiki.fextralife.com/Prism+Stone">Prism Stone x10</a> on a corpse on an island</li>
<li data-id="playthrough_6_7" class="f_weap">Farther out (closer to the stone wall) you will find <a href="http://darksouls3.wiki.fextralife.com/Stone+Parma">Stone Parma</a></li>
<li data-id="playthrough_6_8" class="f_misc">From there go in direction of the rock wall on the right to find <a href="http://darksouls3.wiki.fextralife.com/Rotten+Pine+Resin">Rotten Pine Resin x4</a> against a tree</li>
<li data-id="playthrough_6_9" class="f_coal">Follow this rocky wall to the left to reach a small structure guarded by a darkwraith. The <a href="http://darksouls3.wiki.fextralife.com/Sage's+Coal">Sage's Coal</a> is on a body inside this structure, granting you Crystal, Blessed, and Deep infusions</li>
<li data-id="playthrough_6_54" class="f_none">Continue on, sticking closely to the rock wall on your right until it opens to some steps, which you follow up. Go through the archway and interact with the first altar (on your left) to extinguish the flame</li>
<li data-id="playthrough_6_53" class="f_misc">Go back through the archway and pick up <a href="http://darksouls3.wiki.fextralife.com/Rotten+Pine+Resin">Rotten Pine Resin x2</a> ahead, then go back down the steps on this side</li>
<li data-id="playthrough_6_10" class="f_none">As you arrive at the bottom of the steps, continue straight on into the deeper swamp until you find yourself between two ramp-like segments of a sunken bridge</li>
<li data-id="playthrough_6_14" class="f_misc">Ascend the one on your right for <a href="http://darksouls3.wiki.fextralife.com/Purple+Moss+Clump">Purple Moss Clump x4</a></li>
<li data-id="playthrough_6_13" class="f_weap">Turn around, cross over to the other ramp, and pick up the <a href="http://darksouls3.wiki.fextralife.com/Greatsword">Greatsword</a></li>
<li data-id="playthrough_6_12" class="f_tit">From there, look left to locate a stone pillar, behind which you pick up a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a></li>
<li data-id="playthrough_6_11" class="f_tit">Looking at the fire from there, head to your right towards the rock wall and follow that to the next fire to discover a set of steps as well as another <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a>. (If you stay back as far as possible while picking it up, the <a href="http://darksouls3.wiki.fextralife.com/Ghru+Leaper">Ghru Leaper</a> on the other island should not notice you)</li>
<li data-id="playthrough_6_51" class="f_misc">Head up and stick to the right to find <a href="http://darksouls3.wiki.fextralife.com/Purple+Moss+Clump">Purple Moss Clump x2</a> between two trees</li>
<li data-id="playthrough_6_50" class="f_none">Snuff out the flame on the second altar</li>
<li data-id="playthrough_6_80" class="f_ring s_ng++">The <a href="https://darksouls3.wiki.fextralife.com/Dark+Stoneplate+Ring">Dark Stoneplate Ring+2</a> is behind the wall</li>
<li data-id="playthrough_6_35" class="f_none">Cross the bridge with the three Ghrus to find the Keep Ruins bonfire</li>
<li data-id="playthrough_6_79" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Wolf+Ring">Wolf Ring+1</a> is outside near the wall of this building</li>
<li data-id="playthrough_6_34" class="f_bone">Go down the ramp on the other side and enter the round structure to the right, where you will find an <a href="http://darksouls3.wiki.fextralife.com/Undead+Bone+Shard">Undead Bone Shard</a> amidst some slugs</li>
<li data-id="playthrough_6_19" class="f_misc">From the other side of this structure you can see a ladder surrounded by slugs. Go a bit past this ladder for now and pick up <a href="http://darksouls3.wiki.fextralife.com/Wolf's+Blood+Swordgrass">Wolf's Blood Swordgrass</a> at the foot of the tower</li>
<li data-id="playthrough_6_18" class="f_weap">Step onto the nearby island to find a cauldron of Estus Soup as well as the <a href="http://darksouls3.wiki.fextralife.com/Sunlight+Talisman">Sunlight Talisman</a></li>
<li data-id="playthrough_6_20" class="f_none">Return to the ladder you just passed and climb it</li>
<li data-id="playthrough_6_21" class="f_tit">Once you reach the top, go right (don't enter the tower) to find a Crystal Lizard on the other side who drops a <a href="http://darksouls3.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a></li>
<li data-id="playthrough_6_22" class="f_ash">From the lizard go back from where you came and just before the stairs turn right to find an illusionary wall (look for an archway on the wall). Behind it you will find <a href="http://darksouls3.wiki.fextralife.com/Dreamchaser's+Ashes">Dreamchaser's Ashes</a></li>
<li data-id="playthrough_6_23" class="f_cov f_gest">Enter the room to find the Old Wolf of Farron and his bonfire. Interact with the wolf to receive the Legion Etiquette gesture and join the <a href="http://darksouls3.wiki.fextralife.com/Watchdogs+of+Farron">Watchdogs of Farron</a> covenant</li>
<li data-id="playthrough_6_24" class="f_gest f_npc f_miss">Return to Firelink Shrine and give the Dreamchaser's Ashes to the Shrine Handmaid. Reload the area and Sirris will once again be there. Talk to her to receive the Darkmoon Loyalty gesture</li>
<li data-id="playthrough_6_25" class="f_none">Warp back to the Old Wolf of Farron bonfire and go up the tower with the elevator</li>
<li data-id="playthrough_6_26" class="f_misc">Turn right and on the top you can fight a <a href="http://darksouls3.wiki.fextralife.com/Stray+Demon">Stray Demon</a> to obtain <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Stray+Demon">Soul of a Stray Demon</a></li>
<li data-id="playthrough_6_27" class="f_misc f_weap">Around the Stray Demon you will find a <a href="http://darksouls3.wiki.fextralife.com/Greataxe">Greataxe</a>, an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a>, and another <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_6_28" class="f_none">Turn around and move towards the gate. Just before and to the right of the gate is a spot where you can drop down. Do so and move along, dropping down a few ledges</li>
<li data-id="playthrough_6_29" class="f_gem">After getting to the other side of the gate go left and up to find a Crystal Lizard who drops a <a href="http://darksouls3.wiki.fextralife.com/Heavy+Gem">Heavy Gem</a></li>
<li data-id="playthrough_6_30" class="f_tit">There are two Crystal Lizards before the dead dragon who both drop a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_6_31" class="f_mirac">In front of the dragon you can also find <a href="http://darksouls3.wiki.fextralife.com/Lightning+Spear">Lightning Spear</a></li>
<li data-id="playthrough_6_32" class="f_weap">Right next to it is the <a href="http://darksouls3.wiki.fextralife.com/Dragon+Crest+Shield">Dragon Crest Shield</a></li>
<li data-id="playthrough_6_33" class="f_none">Go back to the ladder that led up the tower and go down. (Note: If you don't want to use a Homeward Bone you can go back by going up the gate and dropping down to the other side)</li>
<li data-id="playthrough_6_17" class="f_tit">Facing away from the ladder, proceed to a small island with a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a> next to a fire</li>
<li data-id="playthrough_6_16" class="f_arm f_miss">From the next small island with a fire, make a quick detour to the left where the <a href="http://darksouls3.wiki.fextralife.com/Nameless+Knight+Set">Nameless Knight Set</a> is stashed between a tower and a rock wall. (Going there may trigger an invasion by Yellowfinger Heysel, but she spawns out of immediate reach on the other side of the tower)</li>
<li data-id="playthrough_6_15" class="f_tit">Up next is <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard x2</a> in front of a tree. (If the Elder Ghru in the area is giving you trouble, you can try luring him into one of the fires for some extra damage)</li>
<li data-id="playthrough_6_52" class="f_none">Keep heading closely along the rocks on your left until you reach a way up. (If dark spirit Yellowfinger Heysel is already in your world, you might encounter her in the area upstairs)</li>
<li data-id="playthrough_6_55" class="f_misc">Go up to the altar and extinguish the last of the three flames. To the right, on the other side of the small stone wall, you'll find a <a href="http://darksouls3.wiki.fextralife.com/Rusted+Gold+Coin">Rusted Gold Coin</a></li>
<li data-id="playthrough_6_56" class="f_misc">Go through the archway on the left to find <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone x2</a></li>
<li data-id="playthrough_6_57" class="f_npc f_miss">Head up the steps, fight the Ghru Leaper (if you sprint up, you should be able to backstab him), and go down on the other side. If not triggered previously, <a href="http://darksouls3.wiki.fextralife.com/Yellowfinger+Heysel">Yellowfinger Heysel</a> will invade you here, provided you are embered. If this is your first time defeating her, you'll gain <a href="http://darksouls3.wiki.fextralife.com/Heysel+Pick">Heysel Pick</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Xanthous+Crown">Xanthous Crown</a></li>
<li data-id="playthrough_6_42" class="f_none">In the swamp area below, you will encounter some <a href="http://darksouls3.wiki.fextralife.com/Basilisks">Basilisks</a>. If you want to beef up your curse resistance, equip Archdeacon Set and Maiden Gloves</li>
<li data-id="playthrough_6_47" class="f_misc">Take a right at the bottom of the steps and then enter an alcove on your left with a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Nameless+Soldier">Large Soul of a Nameless Soldier</a></li>
<li data-id="playthrough_6_46" class="f_misc">Turn around and head to the other side of the steps. Tucked away in the dead end between rocks and tower is another <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Nameless+Soldier">Large Soul of a Nameless Soldier</a></li>
<li data-id="playthrough_6_43" class="f_misc">Turn around yet again and make your way across an island. To the right between two rock formations you can find <a href="http://darksouls3.wiki.fextralife.com/Repair+Powder">Repair Powder x4</a></li>
<li data-id="playthrough_6_44" class="f_tome">Go right into a cave, where you will find the <a href="http://darksouls3.wiki.fextralife.com/Golden+Scroll">Golden Scroll</a></li>
<li data-id="playthrough_6_40" class="f_npc f_miss">Make sure to give this scroll to Orbeck at Firelink Shrine to keep him from leaving (it doesn't have to be the Golden Scroll in particular, but this is the first one available)</li>
<li data-id="playthrough_6_45" class="f_arm">Right next to the scroll is the <a href="http://darksouls3.wiki.fextralife.com/Antiquated+Set">Antiquated Set</a> in a chest</li>
<li data-id="playthrough_6_36" class="f_tit">Warp (or walk straight along the outer walls) to the Keep Ruins bonfire. Standing at the top of the ramp leading down from there, drop off to the left, directly onto a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard</a></li>
<li data-id="playthrough_6_37" class="f_ring">From here you will see a Great Crab and a white birch when looking towards the wall. Kill the crab for the <a href="http://darksouls3.wiki.fextralife.com/Lingering+Dragoncrest+Ring">Lingering Dragoncrest Ring</a>. (Lure the crab close to the white birch tree and the Giant of the Undead Settlement will assist you using his greatarrows)</li>
<li data-id="playthrough_6_38" class="f_arm f_misc">Around this area you will find <a href="http://darksouls3.wiki.fextralife.com/Gold+Pine+Bundle">Gold Pine Bundle x6</a>, an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a>, a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+an+Unknown+Traveler">Large Soul of an Unknown Traveler</a>, a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Nameless+Soldier">Soul of a Nameless Soldier</a>, a <a href="http://darksouls3.wiki.fextralife.com/Young+White+Branch">Young White Branch</a>, another <a href="http://darksouls3.wiki.fextralife.com/Young+White+Branch">Young White Branch</a>, and the <a href="http://darksouls3.wiki.fextralife.com/Crown+of+Dusk">Crown of Dusk</a></li>
<li data-id="playthrough_6_39" class="f_tome">Follow the wall to your right and you'll eventually find the <a href="http://darksouls3.wiki.fextralife.com/Sage's+Scroll">Sage's Scroll</a>, guarded by Ghrus near several dead mushrooms</li>
<li data-id="playthrough_6_41" class="f_arm f_gem f_weap">If you continue in the same direction along the wall you will encounter three Elder Ghrus. Lure these enemies out one by one to get <a href="http://darksouls3.wiki.fextralife.com/Black+Bow+of+Pharis">Black Bow of Pharis</a> and <a href="http://darksouls3.wiki.fextralife.com/Pharis's+Hat">Pharis's Hat</a>. In the middle you can find a <a href="http://darksouls3.wiki.fextralife.com/Poison+Gem">Poison Gem</a>. (If you do not wish to engage the Elder Ghrus in melee, you can instead whittle them down using ranged weapons from up by the Keep Ruins bonfire)</li>
<li data-id="playthrough_6_58" class="f_gem">Warp (or backtrack) to the Keep Ruins bonfire, go down the ramp and through the opened gate. Straight ahead is a <a href="http://darksouls3.wiki.fextralife.com/Shriving+Stone">Shriving Stone</a></li>
<li data-id="playthrough_6_59" class="f_none">Follow the path and once you're in an open area turn right and enter the structure to get to the Farron Keep Perimeter bonfire</li>
<li data-id="playthrough_6_60" class="f_tit">Take the path farther into the structure to encounter a Ravenous Crystal Lizard who drops <a href="http://darksouls3.wiki.fextralife.com/Titanite+Scale">Titanite Scale x2</a></li>
<li data-id="playthrough_6_61" class="f_sorc">Right next to him is the <a href="http://darksouls3.wiki.fextralife.com/Great+Magic+Weapon">Great Magic Weapon</a> sorcery</li>
<li data-id="playthrough_6_62" class="f_none">Open the shortcut back to the Road of Sacrifices</li>
<li data-id="playthrough_6_63" class="f_none">Turn around and go back in direction of the bonfire. After the first set of stairs you can go through the broken wall on the left and drop down</li>
<li data-id="playthrough_6_64" class="f_gem f_mirac">Here you can find <a href="http://darksouls3.wiki.fextralife.com/Atonement">Atonement</a> and on the right side of the cliff you can find a <a href="http://darksouls3.wiki.fextralife.com/Hollow+Gem">Hollow Gem</a></li>
<li data-id="playthrough_6_76" class="f_gest f_npc f_tome f_miss">If you want to be able to access <a href="http://darksouls3.wiki.fextralife.com/Yuria+of+Londor">Yuria of Londor</a> and the Usurpation of Fire ending, make sure that, before proceeding to fight the Abyss Watchers, you have Drawn Out True Strength 5 times with Yoel and then reload Firelink Shrine so that Yoel dies and Yuria appears. You can talk to her to receive the Dignified Bow gesture and buy the <a href="http://darksouls3.wiki.fextralife.com/Londor+Braille+Divine+Tome">Londor Braille Divine Tome</a></li>
<li data-id="playthrough_6_72" class="f_npc f_miss">Before fighting the Abyss Watchers, remember to give Orbeck the <a href="http://darksouls3.wiki.fextralife.com/Golden+Scroll">Golden Scroll</a> and/or <a href="http://darksouls3.wiki.fextralife.com/Sage's+Scroll">Sage's Scroll</a></li>
<li data-id="playthrough_6_77" class="f_gest f_npc f_ring f_miss">Buy Aural Decoy, Farron Flashsword, Pestilent Mist, and Spook from Orbeck. Then talk to him multiple times to obtain the <a href="http://darksouls3.wiki.fextralife.com/Young+Dragon+Ring">Young Dragon Ring</a>, the Silent Ally gesture, and the <a href="http://darksouls3.wiki.fextralife.com/Slumbering+Dragoncrest+Ring">Slumbering Dragoncrest Ring</a></li>
<li data-id="playthrough_6_65" class="f_none">Go back to the Farron Keep Perimeter bonfire and leave the building</li>
<li data-id="playthrough_6_66" class="f_misc">To the right of the Ghrus you can find an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_6_67" class="f_misc">Go up the right side and on the hill you will find <a href="http://darksouls3.wiki.fextralife.com/Black+Bug+Pellet">Black Bug Pellet x3</a></li>
<li data-id="playthrough_6_68" class="f_boss f_gest f_npc f_miss">You can summon <a href="http://darksouls3.wiki.fextralife.com/Yellowfinger+Heysel">Yellowfinger Heysel</a> in Farron Keep right after the Keep Ruins bonfire, but only if you have offered a Pale Tongue to Rosaria, which will block you out of Sirris' quest line, so I recommend saving this part for another playthrough. You'll gain the Proper Bow gesture after her summon</li>
<li data-id="playthrough_6_69" class="f_boss f_gest f_miss"><a href="http://darksouls3.wiki.fextralife.com/Black+Hand+Gotthard">Black Hand Gotthard</a> can be summoned and will grant you the By My Sword gesture. His summon sign is up the first set of stairs</li>
<li data-id="playthrough_6_70" class="f_boss f_miss"><a href="http://darksouls3.wiki.fextralife.com/Sirris+of+the+Sunless+Realms">Sirris</a> can also be summoned here. Her sign is to the left of the mausoleum entrance</li>
<li data-id="playthrough_6_71" class="f_boss f_gest f_npc f_miss">If you are on good terms with Yuria, you can also summon the <a href="http://darksouls3.wiki.fextralife.com/Londor+Pale+Shade">Londor Pale Shade</a> and gain the Duel Bow gesture. His summon sign is right next to the Farron Keep Perimeter bonfire. (Note: In order to be able to summon two phantoms at the same time, you have to use <a href="http://darksouls3.wiki.fextralife.com/Dried+Finger">Dried Finger</a>. Black Hand Gotthard and Londor Pale Shade can also be summoned for another later fight, so don't worry about getting all the gestures here at once)</li>
<li data-id="playthrough_6_73" class="f_boss f_misc">Defeat the <a href="http://darksouls3.wiki.fextralife.com/Abyss+Watchers">Abyss Watchers</a>; receive <a href="http://darksouls3.wiki.fextralife.com/Cinders+of+a+Lord">Cinders of a Lord</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Soul+of+the+Blood+of+the+Wolf">Soul of the Blood of the Wolf</a></li>
<li data-id="playthrough_6_74" class="f_ring">If you have collected all the items around the three white birch trees so far, you'll find the <a href="http://darksouls3.wiki.fextralife.com/Hawk+Ring">Hawk Ring</a> back where the giant was in Undead Settlement</li>
</ul>
<h3 id="Catacombs_of_Carthus"><a href="#Catacombs_of_Carthus_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Catacombs+of+Carthus">Catacombs of Carthus</a> <span id="playthrough_totals_7"></span></h3>
<ul id="Catacombs_of_Carthus_col" class="collapse in">
<li data-id="playthrough_7_1" class="f_npc f_ring f_miss">Return to Firelink Shrine and talk with Hawkwood to receive the <a href="http://darksouls3.wiki.fextralife.com/Farron+Ring">Farron Ring</a>. (If Hawkwood isn't sitting on the stairs inside the Shrine, reload the area until he does)</li>
<li data-id="playthrough_7_2" class="f_npc f_weap">Reload the area, and Hawkwood should no longer be present. <a href="http://darksouls3.wiki.fextralife.com/Hawkwood's+Shield">Hawkwood's Shield</a> will be on the ground by a gravestone outside of Firelink Shrine, near where the dog spawns</li>
<li data-id="playthrough_7_3" class="f_npc f_miss">Eygon of Carim should also now be in Firelink Shrine. Exhaust his dialogue now so he is available for a boss fight later on</li>
<li data-id="playthrough_7_4" class="f_misc">Warp back to the Abyss Watchers bonfire, enter the Catacombs of Carthus and on the left side you'll find <a href="http://darksouls3.wiki.fextralife.com/Carthus+Rouge">Carthus Rouge x2</a></li>
<li data-id="playthrough_7_35" class="f_ring s_ng++">The <a href="https://darksouls3.wiki.fextralife.com/Ring+of+Steel+Protection">Ring of Steel Protection+2</a> is on a pillar below the bridge</li>
<li data-id="playthrough_7_33" class="f_misc">After crossing the bridge, go up the stairs to the left and then immediately turn around to your right. There is <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Nameless+Soldier">Soul of a Nameless Soldier</a> at the end of the way</li>
<li data-id="playthrough_7_5" class="f_misc">Turn back the other way, and follow the path down a ladder. At the bottom you'll find another <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Nameless+Soldier">Soul of a Nameless Soldier</a></li>
<li data-id="playthrough_7_6" class="f_tome">Follow the path and in the room with the pillars strike the wall on the right side to reveal an illusory wall. Behind it you'll find the <a href="http://darksouls3.wiki.fextralife.com/Carthus+Pyromancy+Tome">Carthus Pyromancy Tome</a></li>
<li data-id="playthrough_7_7" class="f_gem">Back in the pillar room you can find a <a href="http://darksouls3.wiki.fextralife.com/Sharp+Gem">Sharp Gem</a> on the right side</li>
<li data-id="playthrough_7_8" class="f_tit">In the next room you'll find <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard x2</a> in the leftmost corner</li>
<li data-id="playthrough_7_9" class="f_npc">Before heading down the giant staircase that a skeleton ball will eventually begin to roll up and down, there will be a hallway to the left you can take. Head down this way and you'll eventually run into Anri, who claims to be looking for Horace. Exhaust the dialogue</li>
<li data-id="playthrough_7_10" class="f_misc f_tit">Head out onto the platform next to Anri, kill a Crystal Lizard for a <a href="http://darksouls3.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a>, and grab <a href="http://darksouls3.wiki.fextralife.com/Bloodred+Moss+Clump">Bloodred Moss Clump x3</a> on the right side</li>
<li data-id="playthrough_7_11" class="f_misc">Go back to the giant staircase and on the left side is an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_7_12" class="f_bone">Once arriving at the bottom of the giant staircase, you'll notice a skeleton with a hat on its head hiding right in the corner of the next room. Kill it and the next time the skeleton ball hits the bottom gate, it'll explode and reveal an <a href="http://darksouls3.wiki.fextralife.com/Undead+Bone+Shard">Undead Bone Shard</a></li>
<li data-id="playthrough_7_13" class="f_ring">In the next hallway you can find the <a href="http://darksouls3.wiki.fextralife.com/Carthus+Milkring">Carthus Milkring</a> on the right side behind some big vases</li>
<li data-id="playthrough_7_34" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Thunder+Stoneplate+Ring">Thunder Stoneplate Ring+1</a> is also between these vases</li>
<li data-id="playthrough_7_14" class="f_misc">On the corpse in the bone-ridden hallway is a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+an+Unknown+Traveler">Large Soul of an Unknown Traveler</a>. At the end of the hallway is an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a>. (Be careful, there is a hole in the ground)</li>
<li data-id="playthrough_7_15" class="f_tit">In the corner where the second skeleton ball spawns is a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_7_16" class="f_none">Activate the Catacombs of Carthus bonfire in the left hallway</li>
<li data-id="playthrough_7_17" class="f_tit">Go down the stairs, turn right and right again to get to a hallway with <a href="http://darksouls3.wiki.fextralife.com/Skeleton+Wheel">Skeleton Wheels</a>. On the left wall is <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard x2</a></li>
<li data-id="playthrough_7_18" class="f_ring">At the end of the hallway you will find the <a href="http://darksouls3.wiki.fextralife.com/Carthus+Bloodring">Carthus Bloodring</a></li>
<li data-id="playthrough_7_19" class="f_tit">Go back to the main room to find <a href="http://darksouls3.wiki.fextralife.com/Titanite+Shard">Titanite Shard x2</a> on a corpse that is lying by a pillar</li>
<li data-id="playthrough_7_20" class="f_ash">To the right of the corpse is an illusory wall. Hit it and go up the stairs to find the <a href="http://darksouls3.wiki.fextralife.com/Grave+Warden's+Ashes">Grave Warden's Ashes</a></li>
<li data-id="playthrough_7_21" class="f_tit">Turn around and go towards the other side, finding a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a> on the right side</li>
<li data-id="playthrough_7_22" class="f_gem">Kill the skeleton with the hat and the skeleton ball will break revealing a <a href="http://darksouls3.wiki.fextralife.com/Dark+Gem">Dark Gem</a></li>
<li data-id="playthrough_7_23" class="f_misc">Stay on the second level and you'll find <a href="http://darksouls3.wiki.fextralife.com/Carthus+Rouge">Carthus Rouge x3</a> next to the archer skeleton</li>
<li data-id="playthrough_7_24" class="f_gem">Go down to the pillar room and head inside the tunnel just past the illusory wall to find a Crystal Lizard who drops a <a href="http://darksouls3.wiki.fextralife.com/Fire+Gem">Fire Gem</a></li>
<li data-id="playthrough_7_25" class="f_misc">Exit the tunnel to find <a href="http://darksouls3.wiki.fextralife.com/Yellow+Bug+Pellet">Yellow Bug Pellet x3</a> on the left side</li>
<li data-id="playthrough_7_26" class="f_misc">Go to the gate with the skeletons to find a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Nameless+Soldier">Large Soul of a Nameless Soldier</a> and <a href="http://darksouls3.wiki.fextralife.com/Black+Bug+Pellet">Black Bug Pellet x2</a></li>
<li data-id="playthrough_7_27" class="f_misc">Open the gate and get the <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a> on the other side</li>
<li data-id="playthrough_7_28" class="f_npc f_gest f_ring f_miss">Go through the tunnel that leads to the main pillar room. If you're embered, you'll be invaded by <a href="http://darksouls3.wiki.fextralife.com/Knight+Slayer+Tsorig">Knight Slayer Tsorig</a>. Regardless of who wins the fight, you will receive the My Thanks! gesture. Defeating him will grant you the <a href="http://darksouls3.wiki.fextralife.com/Knight+Slayer's+Ring">Knight Slayer's Ring</a></li>
<li data-id="playthrough_7_29" class="f_npc">Turn around and just before the bridge go right and follow the path to Anri. Once again you'll be asked whether you have found Horace. You haven't yet, but we're about to. Be sure to exhaust the dialogue</li>
<li data-id="playthrough_7_30" class="f_none">Get down to the left of Anri and follow to the path the next boss</li>
<li data-id="playthrough_7_31" class="f_boss f_misc">Defeat <a href="http://darksouls3.wiki.fextralife.com/High+Lord+Wolnir">High Lord Wolnir</a>; receive <a href="http://darksouls3.wiki.fextralife.com/Soul+of+High+Lord+Wolnir">Soul of High Lord Wolnir</a></li>
<li data-id="playthrough_7_32" class="f_tome">During the battle you had an opportunity to grab the <a href="http://darksouls3.wiki.fextralife.com/Grave+Warden+Pyromancy+Tome">Grave Warden Pyromancy Tome</a>, but should you have not picked it up then it can now be found in the far left corner of the goblet room. Cornyx can't read this pyromancy tome, so you'll have to wait until you free Karla to turn it in</li>
</ul>
<h3 id="Smouldering_Lake"><a href="#Smouldering_Lake_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Smouldering+Lake">Smouldering Lake</a> (Optional) <span id="playthrough_totals_14"></span></h3>
<ul id="Smouldering_Lake_col" class="collapse in">
<li data-id="playthrough_14_1" class="f_none">From the High Lord Wolnir bonfire go back to the bridge and hit the supports to create a ladder</li>
<li data-id="playthrough_14_2" class="f_misc">Head down to find a room with a <a href="http://darksouls3.wiki.fextralife.com/Demon">Demon</a> who drops a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Demon">Soul of a Demon</a> after killing him</li>
<li data-id="playthrough_14_3" class="f_weap">In the same room on the top level is a Mimic which drops the <a href="http://darksouls3.wiki.fextralife.com/Black+Blade">Black Blade</a></li>
<li data-id="playthrough_14_4" class="f_misc f_tit">Go down the stairs to find <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a> and <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Nameless+Soldier">Large Soul of a Nameless Soldier</a></li>
<li data-id="playthrough_14_5" class="f_arm f_ring">Go down the stairs to find <a href="http://darksouls3.wiki.fextralife.com/Old+Sage's+Blindfold">Old Sage's Blindfold</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Witch's+Ring">Witch's Ring</a></li>
<li data-id="playthrough_14_6" class="f_none">Activate the Abandoned Tomb bonfire</li>
<li data-id="playthrough_14_7" class="f_bone f_mirac">When heading towards the Old Demon King fog door, a Carthus Sandworm will appear out of the ground. Align the worm between the ballista and yourself, such that the ballista kills the worm while you are standing in a terrain safe spot. You'll gain <a href="http://darksouls3.wiki.fextralife.com/Lightning+Stake">Lightning Stake</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Undead+Bone+Shard">Undead Bone Shard</a></li>
<li data-id="playthrough_14_8" class="f_tit f_weap">Around the front part of the lake you will find the <a href="http://darksouls3.wiki.fextralife.com/Shield+of+Want">Shield of Want</a> as well as 5 pickups containing one <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a> each</li>
<li data-id="playthrough_14_9" class="f_ring">Obtain the <a href="http://darksouls3.wiki.fextralife.com/Speckled+Stoneplate+Ring">Speckled Stoneplate Ring</a> which is located on a corpse in Smouldering Lake behind a brick wall. Go along the left wall when looking from the fog door to find the wall. You will need to trick the ballista into destroying the brick wall</li>
<li data-id="playthrough_14_10" class="f_gem">Follow the left wall farther into the lake to find a <a href="http://darksouls3.wiki.fextralife.com/Chaos+Gem">Chaos Gem</a> and around the middle of the lake you will see a brick floor; stand on it to trick the ballista into destroying the floor to unlock a shortcut but do not decend into it</li>
<li data-id="playthrough_14_11" class="f_tit">Go up the slope to the right of the fog door for another <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a> as well as the Demon Ruins bonfire down the stairs</li>
<li data-id="playthrough_14_12" class="f_misc">On the top floor go into the left corner to find an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_14_13" class="f_misc f_estus">Go right and fight some Grus to find an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a>. From here you can see an item, an <a href="http://darksouls3.wiki.fextralife.com/Estus+Shard">Estus Shard</a>. It's not recommended to jump for it, we'll get it later</li>
<li data-id="playthrough_14_14" class="f_bone">Head back into the first room, go down the stairs and in the back left you'll find another <a href="http://darksouls3.wiki.fextralife.com/Undead+Bone+Shard">Undead Bone Shard</a></li>
<li data-id="playthrough_14_15" class="f_weap">In this room take the left hallway on the other side (not the one with the rat). Hit the illusory wall at the end and pick up the <a href="http://darksouls3.wiki.fextralife.com/Black+Knight+Sword">Black Knight Sword</a></li>
<li data-id="playthrough_14_38" class="f_ring s_ng++">The <a href="https://darksouls3.wiki.fextralife.com/Flame+Stoneplate+Ring">Flame Stoneplate Ring+2</a> is in a corner</li>
<li data-id="playthrough_14_16" class="f_misc">Go out, right and follow this way until you get to a room with some stairs. Take a left before the stairs, then right to find an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a>. Now go up the stairs to find the Old King's Antechamber bonfire</li>
<li data-id="playthrough_14_17" class="f_gem">From the bonfire go into the nearest hallway and follow the right path until you find a Crystal Lizard who drops a <a href="http://darksouls3.wiki.fextralife.com/Chaos+Gem">Chaos Gem</a></li>
<li data-id="playthrough_14_18" class="f_tome">Take the straight path from the Old King's Antchechamber bonfire and you'll find the <a href="http://darksouls3.wiki.fextralife.com/Izalith+Pyromancy+Tome">Izalith Pyromancy Tome</a> on the ground</li>
<li data-id="playthrough_14_19" class="f_estus">In the Old King's Antechamber there is an illusory wall to the right of the stairs in the corner. Activate it and then move down the hallway that has loads of Writhing Rotten Flesh enemies on the ceiling and grab the <a href="http://darksouls3.wiki.fextralife.com/Estus+Shard">Estus Shard</a> on a body at the end</li>
<li data-id="playthrough_14_20" class="f_none">Turn around and take the left to get back into the main room. From here go into the hallway that is in the left corner (the one with the rat)</li>
<li data-id="playthrough_14_21" class="f_tome">Take the right before the rat, hit the illusory wall straight ahead. Take a left and pick up the <a href="http://darksouls3.wiki.fextralife.com/Quelana+Pyromancy+Tome">Quelana Pyromancy Tome</a>. Only Karla can read this tome</li>
<li data-id="playthrough_14_22" class="f_pyro f_weap">In the lava-filled room right next to the tome you can find <a href="http://darksouls3.wiki.fextralife.com/Toxic+Mist">Toxic Mist</a> and <a href="http://darksouls3.wiki.fextralife.com/White+Hair+Talisman">White Hair Talisman</a></li>
<li data-id="playthrough_14_23" class="f_tit">Head back and keep on taking right turns until you reach a hallway downstairs with a big rat. Reveal an illusory wall on the left side of this hallway and grab <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard x3</a> from a chest</li>
<li data-id="playthrough_14_24" class="f_weap">Behind the chest is another illusory wall. Drop down a ledge to get the <a href="http://darksouls3.wiki.fextralife.com/Izalith+Staff">Izalith Staff</a></li>
<li data-id="playthrough_14_25" class="f_tit">In the room with the Basilisks is a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Scale">Titanite Scale</a></li>
<li data-id="playthrough_14_26" class="f_gest f_ring f_weap f_miss">Before going up the stairs take a left when you get to them and you'll encounter <a href="http://darksouls3.wiki.fextralife.com/Knight+Slayer+Tsorig">Knight Slayer Tsorig</a>. Regardless of who wins the fight, you will receive the My Thanks! gesture (if you haven't gotten it before). After killing him, he will drop <a href="http://darksouls3.wiki.fextralife.com/Fume+Ultra+Greatsword">Fume Ultra Greatsword</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Black+Iron+Greatshield">Black Iron Greatshield</a>. If this is your first time defeating him, he will drop the <a href="http://darksouls3.wiki.fextralife.com/Knight+Slayer's+Ring">Knight Slayer's Ring</a> as well. Also, the <a href="http://darksouls3.wiki.fextralife.com/Black+Iron+Set">Black Iron Set</a> can be obtained via the <a href="http://darksouls3.wiki.fextralife.com/Shrine+Handmaid">Shrine Handmaid</a></li>
<li data-id="playthrough_14_27" class="f_misc f_pyro">In this lava room you can get <a href="http://darksouls3.wiki.fextralife.com/Sacred+Flame">Sacred Flame</a> and an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_14_28" class="f_misc">Go back to the stairs and cross the bridge for a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Crestfallen+Knight">Soul of a Crestfallen Knight</a></li>
<li data-id="playthrough_14_29" class="f_weap">Go up the ladder, then another ladder and drop down to the right to find the <a href="http://darksouls3.wiki.fextralife.com/Dragonrider+Bow">Dragonrider Bow</a></li>
<li data-id="playthrough_14_30" class="f_misc">Exit the tunnel at the top to get back to the Smouldering Lake. Drop down on the left to find <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone x2</a> next to the wall</li>
<li data-id="playthrough_14_37" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Bloodbite+Ring">Bloodbite Ring+1</a> is near the ballista</li>
<li data-id="playthrough_14_31" class="f_tit">After shutting off the ballista, you'll notice some cliffs that you can drop onto that will eventually lead you back to the lake. You'll also land right in front of a cave you haven't explored (you can also get here just by running to the right from the Abandoned Tomb bonfire). Head inside to find two Crystal Lizards who drop <a href="http://darksouls3.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a> and <a href="http://darksouls3.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a></li>
<li data-id="playthrough_14_32" class="f_npc f_weap f_miss">You'll also find Horace, who has succumbed to his Dark Sigils and become hostile. Kill him and he'll drop the <a href="http://darksouls3.wiki.fextralife.com/Llewellyn+Shield">Llewellyn Shield</a>. The Shrine Handmaid will also now sell Horace's <a href="http://darksouls3.wiki.fextralife.com/Executioner+Set">Executioner's Armor Set</a></li>
<li data-id="playthrough_14_33" class="f_misc f_tit">Inside here you will also find <a href="http://darksouls3.wiki.fextralife.com/Yellow+Bug+Pellet">Yellow Bug Pellet x2</a>, a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a>, and another <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_14_34" class="f_npc f_ring f_miss">If you killed Horace but have not yet defeated High Lord Wolnir, you can go back to the Catacombs and speak with Anri above the wooden bridge. Tell of the Smouldering Lake and you'll be given the <a href="http://darksouls3.wiki.fextralife.com/Ring+of+the+Evil+Eye">Ring of the Evil Eye</a>. If Wolnir has already been destroyed, Anri will be gone from the Catacombs and you will be given the ring on your next meeting in Irithyll of the Boreal Valley</li>
<li data-id="playthrough_14_35" class="f_arm f_boss f_weap f_miss">Before fighting the Old Demon King you can summon Knight Slayer Tsorig (next to the Demon Ruins bonfire, if you defeated him in Catacombs of Carthus) and Great Swamp Cuculus (in front of the fog door). If the Great Swamp Cuculus survives the fight, go back to the cage in Undead Settlement you found Cornyx in to receive <a href="http://darksouls3.wiki.fextralife.com/Spotted+Whip">Spotted Whip</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Cornyx's+Set">Cornyx's Set</a></li>
<li data-id="playthrough_14_36" class="f_boss f_misc">Defeat the <a href="http://darksouls3.wiki.fextralife.com/Old+Demon+King">Old Demon King</a>; receive <a href="http://darksouls3.wiki.fextralife.com/Soul+of+the+Old+Demon+King">Soul of the Old Demon King</a></li>
</ul>
<h3 id="Irithyll_of_the_Boreal_Valley"><a href="#Irithyll_of_the_Boreal_Valley_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Irithyll+of+the+Boreal+Valley">Irithyll of the Boreal Valley</a> <span id="playthrough_totals_15"></span></h3>
<ul id="Irithyll_of_the_Boreal_Valley_col" class="collapse in">
<li data-id="playthrough_15_1" class="f_npc f_ring f_weap f_miss">When first arriving in Irithyll, you'll battle one of <a href="http://darksouls3.wiki.fextralife.com/Sulyvahn's+Beast">Sulyvahn's Beasts</a>, which drops <a href="http://darksouls3.wiki.fextralife.com/Pontiff's+Right+Eye">Pontiff's Right Eye</a>, and then move through a force field to the Central Irithyll bonfire. If you run past the beast, it will despawn and you will encounter it later in a more challenging area. Light the bonfire and return to the middle of the bridge and Sirris' summon sign should be there if you've been following her quest. Activate it and you'll enter her world and have to fight <a href="http://darksouls3.wiki.fextralife.com/Creighton+the+Wanderer">Creighton the Wanderer</a>. After defeating the invader, visit Firelink Shrine and she will give you <a href="http://darksouls3.wiki.fextralife.com/Mail+Breaker">Blessed Mail Breaker</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Silvercat+Ring">Silvercat Ring</a> for the troubles</li>
<li data-id="playthrough_15_2" class="f_misc">Just before the barrier you will find one <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone</a></li>
<li data-id="playthrough_15_3" class="f_misc">Around the fountain you can find <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Nameless+Soldier">Large Soul of a Nameless Soldier</a>, <a href="http://darksouls3.wiki.fextralife.com/Rime-blue+Moss+Clump">Rime-blue Moss Clump</a>, and <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Weary+Warrior">Soul of a Weary Warrior</a></li>
<li data-id="playthrough_15_4" class="f_misc">Go up the stairs and to the left on the railing is a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Weary+Warrior">Soul of a Weary Warrior</a></li>
<li data-id="playthrough_15_5" class="f_tit">Going straight and up the two stairs to the right is a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_15_6" class="f_misc">On the fountain up ahead are <a href="http://darksouls3.wiki.fextralife.com/Budding+Green+Blossom">Budding Green Blossom</a> and <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Nameless+Soldier">Large Soul of a Nameless Soldier</a></li>
<li data-id="playthrough_15_7" class="f_misc">A bit farther and to the left next to a tree is <a href="http://darksouls3.wiki.fextralife.com/Rime-blue+Moss+Clump">Rime-blue Moss Clump x2</a></li>
<li data-id="playthrough_15_8" class="f_tit">Go up to the <a href="http://darksouls3.wiki.fextralife.com/Burning+Stake+Witch">Fire Witch</a> to get the <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_15_9" class="f_tit">To the left of the main road is a Crystal Lizard who drops a <a href="http://darksouls3.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a></li>
<li data-id="playthrough_15_10" class="f_tit">Attack the railing to the right of the lizard to reveal a staircase. Go down and to the right is a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_15_11" class="f_mirac">Kill the Evangelist in the area below for <a href="http://darksouls3.wiki.fextralife.com/Dorhy's+Gnawing">Dorhys' Gnawing</a></li>
<li data-id="playthrough_15_12" class="f_weap">Pick up the <a href="http://darksouls3.wiki.fextralife.com/Witchtree+Branch">Witchtree Branch</a>, open the gate, and go back to where the lizard was</li>
<li data-id="playthrough_15_13" class="f_misc">Just before the crossroads is a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Nameless+Soldier">Large Soul of a Nameless Soldier</a></li>
<li data-id="playthrough_15_14" class="f_tit">Take the right here and pick up the <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a> from a corpse</li>
<li data-id="playthrough_15_15" class="f_tit">Now take the left at the crossroads and before going up to the church is a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a> to the left</li>
<li data-id="playthrough_15_16" class="f_misc">Go upstairs and inside, light the Church of Yorshka bonfire, and pick up <a href="http://darksouls3.wiki.fextralife.com/Proof+of+a+Concord+Kept">Proof of a Concord Kept</a> from a corpse in the back</li>
<li data-id="playthrough_15_17" class="f_gest f_npc f_ring f_miss">Anri will be in the same room. Exhaust the dialogue to receive the Quiet Resolve gesture. You will also be given the <a href="http://darksouls3.wiki.fextralife.com/Ring+of+the+Evil+Eye">Ring of the Evil Eye</a> if not obtained previously. Next is the major dividing point in Anri's story: From here on out, if you want to follow this quest line to its conclusion, follow Anri A. If you want the Usurpation of Fire ending, follow Anri B</li>
<li data-id="playthrough_15_18" class="f_npc f_sorc f_miss">Anri A Progress: (Slayer of Aldrich Ending) Look towards the side of the room that has some stone statues. One of these is actually a pilgrim in disguise sent by Yuria. Slash away at the statues until you find him and make sure he's dead. He'll drop the <a href="http://darksouls3.wiki.fextralife.com/Chameleon">Chameleon</a> sorcery for you as well</li>
<li data-id="playthrough_15_19" class="f_npc f_miss">Anri B Progress: (Lord of Hollows Ending) Do nothing in regards to the pilgrim</li>
<li data-id="playthrough_15_20" class="f_misc">From the bonfire go down the stairs and turn right to find the <a href="http://darksouls3.wiki.fextralife.com/Roster+of+Knights">Roster of Knights</a>. Go out onto the graveyard and look for a <a href="http://darksouls3.wiki.fextralife.com/Fading+Soul">Fading Soul</a> near the cliff. To the right near a tree is another <a href="http://darksouls3.wiki.fextralife.com/Fading+Soul">Fading Soul</a></li>
<li data-id="playthrough_15_22" class="f_misc">In front of the large tombstone at the end of this path is <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone x3</a></li>
<li data-id="playthrough_15_21" class="f_npc f_arm f_bone f_weap f_miss">An <a href="http://darksouls3.wiki.fextralife.com/Undead+Bone+Shard">Undead Bone Shard</a> is located behind the grave. If you helped Sirris, <a href="http://darksouls3.wiki.fextralife.com/Creighton+the+Wanderer">Creighton the Wanderer</a> will invade you here if you're embered. Killing him will gain you the <a href="http://darksouls3.wiki.fextralife.com/Dragonslayer's+Axe">Dragonslayer's Axe</a> and allow you to grab Creighton's <a href="http://darksouls3.wiki.fextralife.com/Mirrah+Chain+Set">Mirrah Chain Armor Set</a> on the bridge where you used Sirris' summon sign</li>
<li data-id="playthrough_15_23" class="f_misc">From the entrance to the graveyard go down the stairs on the left and left again to get to <a href="http://darksouls3.wiki.fextralife.com/Kukri">Kukri x8</a> and <a href="http://darksouls3.wiki.fextralife.com/Rusted+Gold+Coin">Rusted Gold Coin</a></li>
<li data-id="playthrough_15_24" class="f_misc">Now take the other way to get to a dark room. On the ground level of this room is <a href="http://darksouls3.wiki.fextralife.com/Blue+Bug+Pellet">Blue Bug Pellet x2</a></li>
<li data-id="playthrough_15_25" class="f_gem f_weap">Up on the rafters is a <a href="http://darksouls3.wiki.fextralife.com/Shriving+Stone">Shriving Stone</a> and in the chest on the mid level is <a href="http://darksouls3.wiki.fextralife.com/Yorshka's+Spear">Yorshka's Spear</a></li>
<li data-id="playthrough_15_70" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Covetous+Gold+Serpent+Ring">Covetous Gold Serpent Ring+1</a> is on a platform below the broken railing outside</li>
<li data-id="playthrough_15_26" class="f_tit">Go down to the stairs and right just before the lake. The wall in the first right tunnel is an illusory wall with a Crystal Lizard behind it who drops <a href="http://darksouls3.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a></li>
<li data-id="playthrough_15_27" class="f_gem">Past the other tunnel and next to the tree is a <a href="http://darksouls3.wiki.fextralife.com/Blood+Gem">Blood Gem</a></li>
<li data-id="playthrough_15_28" class="f_ring">Jump into the lake from here for a <a href="http://darksouls3.wiki.fextralife.com/Ring+of+Sacrifice">Ring of Sacrifice</a></li>
<li data-id="playthrough_15_29" class="f_misc f_mirac">In the lake you'll find a bundle of <a href="http://darksouls3.wiki.fextralife.com/Green+Blossom">Green Blossom x3</a>, a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Nameless+Soldier">Large Soul of a Nameless Soldier</a>, the <a href="http://darksouls3.wiki.fextralife.com/Great+Heal">Great Heal</a> miracle (it's on the right side of the lake that is below the entrance to Irithyll), another <a href="http://darksouls3.wiki.fextralife.com/Green+Blossom">Green Blossom x3</a> bundle, and finally an individual <a href="http://darksouls3.wiki.fextralife.com/Green+Blossom">Green Blossom</a></li>
<li data-id="playthrough_15_30" class="f_none">Activate the Distant Manor bonfire while you're here, then head back upstairs</li>
<li data-id="playthrough_15_31" class="f_misc">Enter the sewers from the lake and pick up two droppings: <a href="http://darksouls3.wiki.fextralife.com/Dung+Pie">Dung Pie x3</a> and <a href="http://darksouls3.wiki.fextralife.com/Dung+Pie">Dung Pie x3</a></li>
<li data-id="playthrough_15_32" class="f_ash">In the corner opposite some stairs are the <a href="http://darksouls3.wiki.fextralife.com/Excrement-covered+Ashes">Excrement-covered Ashes</a></li>
<li data-id="playthrough_15_33" class="f_gest f_mirac f_misc f_npc f_miss">Head up these stairs and you'll find <a href="http://darksouls3.wiki.fextralife.com/Siegward+of+Catarina">Siegward of Catarina</a> hanging out by the fire. Exhaust his dialogue and you'll receive the <a href="http://darksouls3.wiki.fextralife.com/Emit+Force">Emit Force</a> miracle, a <a href="http://darksouls3.wiki.fextralife.com/Siegbrau">Siegbräu</a>, and any gestures you missed from his first encounter</li>
<li data-id="playthrough_15_34" class="f_misc f_ring f_tit f_weap">The first Silver Knight you encounter in the next room drops <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Divine+Blessing">Divine Blessing</a>. Head up the stairs on the left to find two more Silver Knights who both drop <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard x2</a> as well as three chests containing the <a href="http://darksouls3.wiki.fextralife.com/Leo+Ring">Leo Ring</a>, <a href="http://darksouls3.wiki.fextralife.com/Smough's+Great+Hammer">Smough's Great Hammer</a>, and a <a href="http://darksouls3.wiki.fextralife.com/Divine+Blessing">Divine Blessing</a></li>
<li data-id="playthrough_15_73" class="f_ring s_ng++">The <a href="https://darksouls3.wiki.fextralife.com/Wood+Grain+Ring">Wood Grain Ring+2</a> is outside in an alcove to the right</li>
<li data-id="playthrough_15_35" class="f_arm f_npc f_weap f_miss">If you are on bad terms with Yuria (healed the Dark Sigil or attacked her or killed the assassin in the Church of Yorshka) and are embered, dark spirit <a href="http://darksouls3.wiki.fextralife.com/Londor+Pale+Shade">Londor Pale Shade</a> will invade your world after the Silver Knights' room. (Note: If you are currently eligible for the invasion by <a href="http://darksouls3.wiki.fextralife.com/Creighton+the+Wanderer">Creighton the Wanderer</a>, you will have to eliminate that one first to get Londor Pale Shade to spawn.) If this is your first time killing him, you will receive the <a href="http://darksouls3.wiki.fextralife.com/Manikin+Claws">Manikin Claws</a>. If you defeated <a href="http://darksouls3.wiki.fextralife.com/Londor+Pale+Shade">Londor Pale Shade</a> in both of his invasions, then you can pick up the <a href="http://darksouls3.wiki.fextralife.com/Pale+Shade+Set">Pale Shade Set</a> near Yuria's location in Firelink Shrine</li>
<li data-id="playthrough_15_36" class="f_misc f_tit">Next to the stairs here is a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Nameless+Soldier">Large Soul of a Nameless Soldier</a> and farther up on a railing is a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_15_37" class="f_none">You can take the elevator here and open the gate for a shortcut</li>
<li data-id="playthrough_15_38" class="f_misc f_tit">In the next room up ahead you can find <a href="http://darksouls3.wiki.fextralife.com/Blue+Bug+Pellet">Blue Bug Pellet x2</a> on a corpse and if you go down the ladder at the top you can find a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_15_39" class="f_misc">Go outside to find a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Weary+Warrior">Soul of a Weary Warrior</a></li>
<li data-id="playthrough_15_40" class="f_misc">Go down the left side of the fog door and get the <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a> from a corpse and open the shortcut</li>
<li data-id="playthrough_15_41" class="f_gem f_ring">Go up to the fog door again and drop down to the altar for the <a href="http://darksouls3.wiki.fextralife.com/Ring+of+the+Sun's+First+Born">Ring of the Sun's First Born</a> and a <a href="http://darksouls3.wiki.fextralife.com/Lightning+Gem">Lightning Gem</a></li>
<li data-id="playthrough_15_71" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Chloranthy+Ring">Chloranthy Ring+1</a> is behind the altar</li>
<li data-id="playthrough_15_42" class="f_ring">The wall to the left of the altar (with your back to it) is an illusory wall with the <a href="http://darksouls3.wiki.fextralife.com/Magic+Clutch+Ring">Magic Clutch Ring</a> behind it</li>
<li data-id="playthrough_15_43" class="f_misc">Turn around and take the exit opposite of you to get the <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Weary+Warrior">Soul of a Weary Warrior</a> from where the Fire Witch is as well as another <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Weary+Warrior">Soul of a Weary Warrior</a> above it</li>
<li data-id="playthrough_15_44" class="f_npc f_miss">Return to Firelink Shrine and talk to <a href="http://darksouls3.wiki.fextralife.com/Greirat+of+the+Undead+Settlement">Greirat of the Undead Settlement</a>. He will ask to pillage Irithyll. Only do this after confirming Siegward is in Irithyll OR if Patches still has Siegward's armor. If you have neither, Greirat will perish and his ashes can be found in the sewer area</li>
<li data-id="playthrough_15_45" class="f_npc f_miss">If you did not purchase Siegward's armor you can send Patches out to rescue Greirat. Refresh Firelink Shrine after sending Greirat out and Patches will ask you where he went. Tell him and Patches will head out to rescue Greirat</li>
<li data-id="playthrough_15_46" class="f_boss f_gest f_miss"><a href="http://darksouls3.wiki.fextralife.com/Black+Hand+Gotthard">Black Hand Gotthard</a> can be summoned for the Pontiff Sulyvahn fight. If this is the first time you've summoned him, you'll receive the By My Sword gesture</li>
<li data-id="playthrough_15_47" class="f_boss f_gest f_npc f_miss">If you are following the Yoel/Yuria quest line, you can summon the <a href="http://darksouls3.wiki.fextralife.com/Londor+Pale+Shade">Londor Pale Shade</a>. If this is the first time you've summoned them, you'll receive the Duel Bow gesture</li>
<li data-id="playthrough_15_48" class="f_boss f_miss"><a href="http://darksouls3.wiki.fextralife.com/Anri+of+Astora">Anri of Astora</a> can also be summoned instead of the Londor Pale Shade</li>
<li data-id="playthrough_15_49" class="f_boss f_misc">Defeat <a href="http://darksouls3.wiki.fextralife.com/Pontiff+Sulyvahn">Pontiff Sulyvahn</a>; receive <a href="http://darksouls3.wiki.fextralife.com/Soul+of+Pontiff+Sulyvahn">Soul of Pontiff Sulyvahn</a></li>
<li data-id="playthrough_15_50" class="f_npc f_miss">Yuria/Anri B Progress: Head back to Firelink Shrine after defeating Pontiff and talk to Yuria and she'll discuss that the "marriage ceremony" is almost complete</li>
<li data-id="playthrough_15_51" class="f_npc">Greirat should have also returned from his pillage</li>
<li data-id="playthrough_15_52" class="f_tit">Go right after exiting from the Pontiff bonfire to find a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_15_53" class="f_tit">In the same area are two Crystal Lizards who drop <a href="http://darksouls3.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a></li>
<li data-id="playthrough_15_54" class="f_ring">Go to the left of the courtyard and enter the dark section. At the back you'll find the <a href="http://darksouls3.wiki.fextralife.com/Dark+Stoneplate+Ring">Dark Stoneplate Ring</a></li>
<li data-id="playthrough_15_55" class="f_weap">Enter the cathedral from the top of the dark section, unlock an elevator shortcut back down to Sulyvahn's room, and cross the bridge to the other side to find a Mimic who has the <a href="http://darksouls3.wiki.fextralife.com/Golden+Ritual+Spear">Golden Ritual Spear</a></li>
<li data-id="playthrough_15_72" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Ring+of+Favor">Ring of Favor+1</a> is at the other end</li>
<li data-id="playthrough_15_56" class="f_gem">Cross the bridge and go around to the other side to find a Crystal Lizard who drops a <a href="http://darksouls3.wiki.fextralife.com/Simple+Gem">Simple Gem</a></li>
<li data-id="playthrough_15_57" class="f_tit">Exit the same way you entered and go right to find a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a> on a corpse</li>
<li data-id="playthrough_15_58" class="f_misc f_tit">On the courtyard itself you can find a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Weary+Warrior">Soul of a Weary Warrior</a>, a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a>, an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a>, and another <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_15_59" class="f_weap">At the end of the courtyard are two NPCs and one of them drops the <a href="http://darksouls3.wiki.fextralife.com/Drang+Twinspears">Drang Twinspears</a></li>
<li data-id="playthrough_15_60" class="f_cov f_gem f_misc f_ring">Once you enter the building after the giant courtyard, there will be an illusory wall on the left side that reveals a long ladder down. Head down and defeat two of <a href="http://darksouls3.wiki.fextralife.com/Sulyvahn's+Beast">Sulyvahn's Beasts</a> (killing them grants you the <a href="http://darksouls3.wiki.fextralife.com/Ring+of+Favor">Ring of Favor</a>) and interact with <a href="http://darksouls3.wiki.fextralife.com/Archdeacon+McDonnell">Archdeacon McDonnell</a> to gain the <a href="http://darksouls3.wiki.fextralife.com/Aldrich+Faithful">Aldrich Faithful</a> covenant. You can also find <a href="http://darksouls3.wiki.fextralife.com/Human+Dregs">Human Dregs</a>, a <a href="http://darksouls3.wiki.fextralife.com/Deep+Gem">Deep Gem</a>, and the Water Reserve bonfire in this room</li>
<li data-id="playthrough_15_61" class="f_tit">After going up the stairs in the building where the illusory wall was you can find a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Scale">Titanite Scale</a> on a corpse in one of the outside corners</li>
<li data-id="playthrough_15_62" class="f_tit">On the right side of the right tower where you can walk up to the archers is a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_15_63" class="f_ash">As you make your way up the building with the Silver Knight archers, you can drop down to a roof below and find the <a href="http://darksouls3.wiki.fextralife.com/Easterner's+Ashes">Easterner's Ashes</a></li>
<li data-id="playthrough_15_64" class="f_tit">Before you enter the hallway that leads to the lift turn around and walk down to the lower tower for a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a> and open the shortcut in the next tower</li>
<li data-id="playthrough_15_65" class="f_misc f_weap">As you walk back from the shortcut to the hallway you will see <a href="http://darksouls3.wiki.fextralife.com/Dragonslayer+Greatbow">Dragonslayer Greatbow</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Dragonslayer+Greatarrow">Dragonslayer Greatarrow x5</a> on a lower platform</li>
<li data-id="playthrough_15_66" class="f_arm f_npc f_ring f_sorc f_miss">Anri B Progress: Before activating the lift to Anor Londo, there is a path that goes down in the room before the lever. Here you'll find the pilgrim waiting for you. He'll give you the <a href="http://darksouls3.wiki.fextralife.com/Sword+of+Avowal">Sword of Avowal</a> and tell you Anri is waiting ahead. Head down, picking up the <a href="http://darksouls3.wiki.fextralife.com/Brass+Set">Brass Set</a> along the way, to find Anri's body at the altar. Perform the Rite of Avowal and you'll gain 3 Dark Sigils, granting you the total amount of 8 Dark Sigils you need for the Usurpation of Fire ending. To the right of the altar, you will find the <a href="http://darksouls3.wiki.fextralife.com/Reversal+Ring">Reversal Ring</a>. Revisit the pilgrim and you will discover he is now dead with the <a href="http://darksouls3.wiki.fextralife.com/Chameleon">Chameleon</a> sorcery on his body</li>
<li data-id="playthrough_15_69" class="f_npc f_weap f_miss">Anri B Progress: You can reload the area and pick up <a href="http://darksouls3.wiki.fextralife.com/Anri's+Straight+Sword">Anri's Straight Sword</a> from where Anri was lying</li>
<li data-id="playthrough_15_67" class="f_arm f_ring">Anri A Progress: You will find an illusory wall where the path down to the altar would be. You can find the <a href="http://darksouls3.wiki.fextralife.com/Brass+Set">Brass Set</a> and <a href="http://darksouls3.wiki.fextralife.com/Reversal+Ring">Reversal Ring</a> in the same places</li>
<li data-id="playthrough_15_68" class="f_misc">Before the lift is an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
</ul>
<h3 id="Anor_Londo"><a href="#Anor_Londo_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Anor+Londo">Anor Londo</a> <span id="playthrough_totals_8"></span></h3>
<ul id="Anor_Londo_col" class="collapse in">
<li data-id="playthrough_8_1" class="f_cov">Use the lift to reach the Anor Londo bonfire. Run back down the stairs and you'll be able to see a tower in the distance. Walk across the sky on an invisible floor (don't worry, you can't fall off at the sides) and continue walking straight until lined up with the tower, then walk towards it. You'll find <a href="http://darksouls3.wiki.fextralife.com/Company+Captain+Yorshka">Company Captain Yorshka</a> who will allow you into the <a href="http://darksouls3.wiki.fextralife.com/Blades+of+the+Darkmoon">Blade of the Darkmoon</a> covenant if you perform the Darkmoon Loyalty gesture</li>
<li data-id="playthrough_8_2" class="f_arm f_weap">If you drop down the tower you can find <a href="http://darksouls3.wiki.fextralife.com/Painting+Guardian's+Curved+Sword">Painting Guardian's Curved Sword</a> as well as the <a href="http://darksouls3.wiki.fextralife.com/Painting+Guardian+Set">Painting Guardian Set</a>. Warp back to the Anor Londo bonfire</li>
<li data-id="playthrough_8_18" class="f_ring s_ng++"><a href="https://darksouls3.wiki.fextralife.com/Havel's+Ring">Havel's Ring+2</a> can also be found in the tower</li>
<li data-id="playthrough_8_3" class="f_npc f_weap f_miss">Anri B Progress: If you didn't get it before, you can return to where Anri's body was to find <a href="http://darksouls3.wiki.fextralife.com/Anri's+Straight+Sword">Anri's Straight Sword</a></li>
<li data-id="playthrough_8_4" class="f_misc">On the left after going up the stairs to Anor Londo is a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Weary+Warrior">Large Soul of a Weary Warrior</a></li>
<li data-id="playthrough_8_5" class="f_misc">On the right platform with the red-eyed knight is a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Crestfallen+Knight">Soul of a Crestfallen Knight</a></li>
<li data-id="playthrough_8_6" class="f_coal">Head left and you'll find the Giant Blacksmith's corpse with the <a href="http://darksouls3.wiki.fextralife.com/Giant's+Coal">Giant's Coal</a> by his body, granting you Lightning, Simple, and Chaos infusions</li>
<li data-id="playthrough_8_7" class="f_misc">After entering the main hall turn left and next to the Deacons is a <a href="http://darksouls3.wiki.fextralife.com/Proof+of+a+Concord+Kept">Proof of a Concord Kept</a></li>
<li data-id="playthrough_8_8" class="f_misc">On the other side you can find <a href="http://darksouls3.wiki.fextralife.com/Moonlight+Arrow">Moonlight Arrow x6</a></li>
<li data-id="playthrough_8_9" class="f_ring">In the main room of the castle, you will be ambushed by a <a href="http://darksouls3.wiki.fextralife.com/Deep+Accursed">Deep Accursed</a> enemy. Defeating him will provide you with <a href="http://darksouls3.wiki.fextralife.com/Aldrich's+Ruby">Aldrich's Ruby</a></li>
<li data-id="playthrough_8_10" class="f_estus">Looking at the fog door you will find a chest on the left side, surrounded by <a href="http://darksouls3.wiki.fextralife.com/Rotten+Flesh+of+Aldrich">Rotten Flesh of Aldrich</a> enemies, with an <a href="http://darksouls3.wiki.fextralife.com/Estus+Shard">Estus Shard</a> inside</li>
<li data-id="playthrough_8_11" class="f_npc f_miss">Anri A Progress: If you killed Horace in Smouldering Lake, Anri's summoning sign will appear outside in front of the large, golden doors in Anor Londo. Using this sign will cause you to be summoned as a phantom to help kill Aldrich</li>
<li data-id="playthrough_8_12" class="f_boss f_misc">Defeat <a href="http://darksouls3.wiki.fextralife.com/Aldrich,+Devourer+of+Gods">Aldrich, Devourer of Gods</a>; receive <a href="http://darksouls3.wiki.fextralife.com/Cinders+of+a+Lord">Cinders of a Lord</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Soul+of+Aldrich">Soul of Aldrich</a></li>
<li data-id="playthrough_8_13" class="f_ring">After defeating Aldrich, take the elevator up and you will discover the <a href="http://darksouls3.wiki.fextralife.com/Sun+Princess+Ring">Sun Princess Ring</a> in Gwynevere's Chamber</li>
<li data-id="playthrough_8_14" class="f_npc f_weap f_miss">Anri A Progress: Return to Firelink Shrine and talk to Ludleth who hands you <a href="http://darksouls3.wiki.fextralife.com/Anri's+Straight+Sword">Anri's Straight Sword</a>, which was left with him as a thanks to you</li>
<li data-id="playthrough_8_15" class="f_npc f_miss">Anri A Progress: Anri has also succumbed to the Dark Sigils and become hostile. If you told Anri of Horace's location in Smouldering Lake, go there. If not, go up the first set of stairs from the Cathedral of the Deep bonfire and take a right then follow the path up the hill. Killing Anri allows you to purchase the Elite Knight Armor Set from the Shrine Handmaid</li>
<li data-id="playthrough_8_16" class="f_arm f_cov f_npc f_weap f_miss">If you are following Sirris' quest and have defeated Aldrich, travel to Undead Settlement via either the Cliff Underside or Dilapidated Bridge bonfire and make your way back to the room before the Curse-rotted Greatwood fight. You will find Sirris' summon sign right before the giant hole that leads to the Pit of Hollows. You'll be summoned to fight <a href="http://darksouls3.wiki.fextralife.com/Holy+Knight+Hodrick">Holy Knight Hodrick</a>, who turns out to be Sirris' grandfather. After defeating Holy Knight Hodrick, you will gain the <a href="http://darksouls3.wiki.fextralife.com/Mound-Maker">Mound-makers</a> covenant (if not obtained before). The <a href="http://darksouls3.wiki.fextralife.com/Sunset+Armor+Set">Sunset Armor Set</a> will be available in the Pit of Hollows bonfire area and you will find the <a href="http://darksouls3.wiki.fextralife.com/Sunset+Shield">Sunset Shield</a> on a grave at the cliff outside of Firelink Shrine (from the Iudex Gundyr bonfire go up the first set of stairs, then right)</li>
<li data-id="playthrough_8_17" class="f_npc f_miss">After defeating <a href="http://darksouls3.wiki.fextralife.com/Holy+Knight+Hodrick">Holy Knight Hodrick</a>, Sirris will return to Firelink Shrine and she will ask to be your knight. Agree and she'll be able to be summoned for the final three main boss fights of the game. Refuse and you'll find her hollow in the Pit of Hollows</li>
</ul>
<h3 id="Irithyll_Dungeon"><a href="#Irithyll_Dungeon_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Irithyll+Dungeon">Irithyll Dungeon</a> <span id="playthrough_totals_16"></span></h3>
<ul id="Irithyll_Dungeon_col" class="collapse in">
<li data-id="playthrough_16_1" class="f_misc f_tit">Warp to the Distant Manor bonfire, follow the path down, and drop down immediately for a <a href="http://darksouls3.wiki.fextralife.com/Rusted+Gold+Coin">Rusted Gold Coin</a>. Drop farther down to find a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a> behind a pillar</li>
<li data-id="playthrough_16_2" class="f_weap f_npc f_miss">When you are outside on a cliffside path, <a href="http://darksouls3.wiki.fextralife.com/Alva,+Seeker+of+the+Spurned">Alva, Seeker of the Spurned</a>, will invade if you are embered. He drops the <a href="http://darksouls3.wiki.fextralife.com/Murakumo">Murakumo</a> when killed</li>
<li data-id="playthrough_16_3" class="f_misc">The first cell on the left has a <a href="http://darksouls3.wiki.fextralife.com/Rusted+Coin">Rusted Coin</a> in it</li>
<li data-id="playthrough_16_4" class="f_tit">The second cell on the same side has a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_16_5" class="f_misc">On the outer path is a <a href="http://darksouls3.wiki.fextralife.com/Fading+Soul">Fading Soul</a></li>
<li data-id="playthrough_16_6" class="f_tit">At the end of the path is a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_16_7" class="f_misc">Drop down to the lower level for a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Nameless+Soldier">Large Soul of a Nameless Soldier</a></li>
<li data-id="playthrough_16_8" class="f_arm">Continue down this path and in a cell you'll find the <a href="http://darksouls3.wiki.fextralife.com/Old+Sorcerer+Set">Old Sorcerer Set</a></li>
<li data-id="playthrough_16_9" class="f_sorc">The last cell will contain an enemy who drops <a href="http://darksouls3.wiki.fextralife.com/Great+Magic+Shield">Great Magic Shield</a></li>
<li data-id="playthrough_16_10" class="f_tit">Go back to the upper level, cross the bridge in the middle, and the last cell on the right contains a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_16_11" class="f_misc">Turn around and enter the next cell to find <a href="http://darksouls3.wiki.fextralife.com/Pale+Pine+Resin">Pale Pine Resin x2</a> near the destroyed wall</li>
<li data-id="playthrough_16_12" class="f_misc">Go through the rooms and enter the last cell on the other side to find <a href="http://darksouls3.wiki.fextralife.com/Jailbreaker's+Key">Jailbreaker's Key</a>, then reverse direction and open the shortcut door</li>
<li data-id="playthrough_16_15" class="f_ring">Cross the bridge back to the other side, head left, and open the window grate at the end of the hallway using your newly acquired key. Drop down the ledge here to find the <a href="http://darksouls3.wiki.fextralife.com/Bellowing+Dragoncrest+Ring">Bellowing Dragoncrest Ring</a> on the left</li>
<li data-id="playthrough_16_16" class="f_misc">After jumping down to the bridge head left for <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone x2</a></li>
<li data-id="playthrough_16_14" class="f_tit">Re-enter the dungeon via the door here and kill the Crystal Lizard who drops a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Scale">Titanite Scale</a></li>
<li data-id="playthrough_16_13" class="f_gem">The next room on this hallway holds a <a href="http://darksouls3.wiki.fextralife.com/Simple+Gem">Simple Gem</a> in a small side room on the right</li>
<li data-id="playthrough_16_17" class="f_estus">Retrace your steps all the way outside, then head downstairs and kill the Mimic in the next room for an <a href="http://darksouls3.wiki.fextralife.com/Estus+Shard">Estus Shard</a></li>
<li data-id="playthrough_16_18" class="f_misc">Go down the hallway in the next room to find a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Weary+Warrior">Soul of a Weary Warrior</a></li>
<li data-id="playthrough_16_19" class="f_misc f_tit">If you want you can go back to the entrance, jump down the first hole, and quickly take out the Crystal Lizard for a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a> (the giant only becomes hostile if you attack it, so you can safely take out the lizard). Otherwise wait until you've defeated the giant. If you are patient you can kill the giant right here. In front of the giant is a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Crestfallen+Knight">Soul of a Crestfallen Knight</a></li>
<li data-id="playthrough_16_20" class="f_none">If you don't want to deal with the giant right now go back to where you found the Soul of a Weary Warrior and drop down the hole</li>
<li data-id="playthrough_16_21" class="f_weap">Before the gate is a <a href="http://darksouls3.wiki.fextralife.com/Pickaxe">Pickaxe</a></li>
<li data-id="playthrough_16_22" class="f_misc">Go up the tunnel for a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Weary+Warrior">Soul of a Weary Warrior</a></li>
<li data-id="playthrough_16_23" class="f_npc f_ring f_miss">You'll find two chests at the end of a hallway. The chest on the left is a Mimic with the <a href="http://darksouls3.wiki.fextralife.com/Dark+Clutch+Ring">Dark Clutch Ring</a>. After you have taken the <a href="http://darksouls3.wiki.fextralife.com/Old+Cell+Key">Old Cell Key</a> from the right chest, you will be ambushed by several <a href="http://darksouls3.wiki.fextralife.com/Basilisk">Basilisks</a>. The Old Cell Key will be used to free Siegward later</li>
<li data-id="playthrough_16_24" class="f_misc">Turn around, enter the tunnel on the left, and in the next room find <a href="http://darksouls3.wiki.fextralife.com/Dung+Pie">Dung Pie x4</a></li>
<li data-id="playthrough_16_25" class="f_tit">After entering the big room with the jailers go left for a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_16_26" class="f_misc">Continue through the tunnel and near the lift is a dragon statue that has the <a href="http://darksouls3.wiki.fextralife.com/Dragon+Torso+Stone">Dragon Torso Stone</a>. This area will be used later to access the Archdragon Peak once you have the Path of the Dragon gesture</li>
<li data-id="playthrough_16_28" class="f_misc">Go up the lift and find a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Nameless+Soldier">Large Soul of a Nameless Soldier</a> next to the shortcut to the main dungeon</li>
<li data-id="playthrough_16_27" class="f_mirac">If you jump off the elevator midway, you'll find the <a href="http://darksouls3.wiki.fextralife.com/Lightning+Blade">Lightning Blade</a> miracle</li>
<li data-id="playthrough_16_29" class="f_coal">Return to the room with several Jailers. To the left, you'll discover a cell containing five <a href="http://darksouls3.wiki.fextralife.com/Wretch">Wretches</a> and the <a href="http://darksouls3.wiki.fextralife.com/Profaned+Coal">Profaned Coal</a>, which grants Dark, Blood, and Hollow infusions</li>
<li data-id="playthrough_16_30" class="f_misc">In the middle of the room is an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a>. On the right side is another <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_16_31" class="f_tit">In the short tunnel on the left is a Mimic with <a href="http://darksouls3.wiki.fextralife.com/Titanite+Scale">Titanite Scale x2</a></li>
<li data-id="playthrough_16_32" class="f_ash f_ring">In the cell on the far left side, you'll find the <a href="http://darksouls3.wiki.fextralife.com/Xanthous+Ashes">Xanthous Ashes</a> and the <a href="http://darksouls3.wiki.fextralife.com/Dusk+Crown+Ring">Dusk Crown Ring</a></li>
<li data-id="playthrough_16_33" class="f_none">The middle cell on the right holds <a href="http://darksouls3.wiki.fextralife.com/Karla">Karla</a>, but is locked. You'll find the <a href="http://darksouls3.wiki.fextralife.com/Jailer's+Key+Ring">Jailer's Key Ring</a> in the next zone</li>
<li data-id="playthrough_16_34" class="f_arm f_miss">In front of Karla's cell, you'll find the <a href="http://darksouls3.wiki.fextralife.com/Alva+Set">Alva Set</a> (this set only appears if you have killed Alva at the start of the dungeon)</li>
<li data-id="playthrough_16_35" class="f_misc">Head outside and before crossing the bridge go left for a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Weary+Warrior">Large Soul of a Weary Warrior</a></li>
</ul>
<h3 id="Profaned_Capital"><a href="#Profaned_Capital_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Profaned+Capital">Profaned Capital</a> <span id="playthrough_totals_9"></span></h3>
<ul id="Profaned_Capital_col" class="collapse in">
<li data-id="playthrough_9_1" class="f_bone f_gest">At the first bonfire you will find poor Laddersmith Gilligan's dead corpse. You'll receive the Stretch Out gesture and an <a href="http://darksouls3.wiki.fextralife.com/Undead+Bone+Shard">Undead Bone Shard</a> from examining it</li>
<li data-id="playthrough_9_2" class="f_misc">Climb back down, go outside using the hole in the wall, and take the ladder to the left to find <a href="http://darksouls3.wiki.fextralife.com/Rusted+Coin">Rusted Coin x2</a></li>
<li data-id="playthrough_9_32" class="f_ring s_ng++">The <a href="https://darksouls3.wiki.fextralife.com/Magic+Stoneplate+Ring">Magic Stoneplate Ring+2</a> is at the end of the broken stairs leading down</li>
<li data-id="playthrough_9_3" class="f_misc f_tit">Use the plank ramp next to the Gargoyle that ambushes you to enter a room with two Crystal Lizards who drop <a href="http://darksouls3.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a>. In the back left you can find a <a href="http://darksouls3.wiki.fextralife.com/Rusted+Gold+Coin">Rusted Gold Coin</a></li>
<li data-id="playthrough_9_4" class="f_misc">Go outside onto the planks and on the right side you can find <a href="http://darksouls3.wiki.fextralife.com/Blooming+Purple+Moss+Clump">Blooming Purple Moss Clump x3</a></li>
<li data-id="playthrough_9_5" class="f_gem f_misc f_ring">In the toxic swamp below you can find the <a href="http://darksouls3.wiki.fextralife.com/Cursebite+Ring">Cursebite Ring</a> and a <a href="http://darksouls3.wiki.fextralife.com/Poison+Gem">Poison Gem</a> (in the cave behind where you drop down), a <a href="http://darksouls3.wiki.fextralife.com/Purging+Stone">Purging Stone</a> (in the open), and a <a href="http://darksouls3.wiki.fextralife.com/Shriving+Stone">Shriving Stone</a> (behind the building)</li>
<li data-id="playthrough_9_6" class="f_misc f_weap">Enter the building on the ground floor to find <a href="http://darksouls3.wiki.fextralife.com/Hand+Ogre">Hand Ogres</a> (I recommend using a weapon with bleed effect and/or <a href="http://darksouls3.wiki.fextralife.com/Carthus+Rouge">Carthus Rouge</a>). If you kill one, you will receive the <a href="http://darksouls3.wiki.fextralife.com/Eleonora">Eleonora</a> axe. In the same room is <a href="http://darksouls3.wiki.fextralife.com/Purging+Stone">Purging Stone x3</a></li>
<li data-id="playthrough_9_7" class="f_tome">Climb the ladder, take the stairs to the top of the building in this area, and kill the court sorcerer to receive <a href="http://darksouls3.wiki.fextralife.com/Logan's+Scroll">Logan's Scroll</a></li>
<li data-id="playthrough_9_30" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Flame+Stoneplate+Ring">Flame Stoneplate Ring+1</a> is down below, on top of the ground floor entrance</li>
<li data-id="playthrough_9_8" class="f_misc">There is <a href="http://darksouls3.wiki.fextralife.com/Poison+Arrow">Poison Arrow x18</a> on the right side of the roof</li>
<li data-id="playthrough_9_9" class="f_mirac">Fall down from the top of the roof into the building for the <a href="http://darksouls3.wiki.fextralife.com/Wrath+of+the+Gods">Wrath of the Gods</a> miracle</li>
<li data-id="playthrough_9_10" class="f_arm f_weap">In this room, you will find the <a href="http://darksouls3.wiki.fextralife.com/Court+Sorcerer+Set">Court Sorcerer Set</a> and a Mimic chest containing the <a href="http://darksouls3.wiki.fextralife.com/Court+Sorcerer's+Staff">Court Sorcerer's Staff</a></li>
<li data-id="playthrough_9_11" class="f_misc">Go down the stairs here to find some <a href="http://darksouls3.wiki.fextralife.com/Rubbish">Rubbish</a></li>
<li data-id="playthrough_9_12" class="f_npc f_ring f_tit f_miss">On the roof where you fought the court sorcerer, look torwards the stairs against the wall. You should see an open window which you can jump into. This leads to the cell that Siegward is stuck in. Open it and exhaust his dialogue, he'll give you a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Slab">Titanite Slab</a> for saving him. The <a href="http://darksouls3.wiki.fextralife.com/Covetous+Gold+Serpent+Ring">Covetous Gold Serpent Ring</a> is in the same room</li>
<li data-id="playthrough_9_13" class="f_misc">Return to the roof and follow the stairway up. At the top of the stairs, attack into the alcove directly in front of you to unveil two invisible Jailers. At the end of the hall is the <a href="http://darksouls3.wiki.fextralife.com/Jailer's+Key+Ring">Jailer's Key Ring</a>, which is used to free Karla</li>
<li data-id="playthrough_9_14" class="f_none">Exit through the hole in the wall to end up in the giant's cell. If you haven't killed him yet, do so now</li>
<li data-id="playthrough_9_15" class="f_pyro f_tit">In this room you can also pick up the <a href="http://darksouls3.wiki.fextralife.com/Profaned+Flame">Profaned Flame</a> pyromancy, a <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a>, and another <a href="http://darksouls3.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_9_16" class="f_none">Exit the room through the tunnel on the left, go up the elevator, and open the shortcut to the Irithyll Dungeon bonfire</li>
<li data-id="playthrough_9_31" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Covetous+Silver+Serpent+Ring">Covetous Silver Serpent Ring+1</a> is on a platform in the elevator shaft</li>
<li data-id="playthrough_9_17" class="f_misc">Go back to the giant's cell and exit the opposite way for a Mimic chest with <a href="http://darksouls3.wiki.fextralife.com/Dragonslayer+Lightning+Arrow">Dragonslayer Lightning Arrow x10</a></li>
<li data-id="playthrough_9_18" class="f_misc">Go up the ladder and jump from rafter to rafter for <a href="http://darksouls3.wiki.fextralife.com/Lightning+Bolt">Lightning Bolt x9</a></li>
<li data-id="playthrough_9_19" class="f_misc f_tit">With the giant dead, take out the Crystal Lizard for a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a> and pick up a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Crestfallen+Knight">Soul of a Crestfallen Knight</a> (if you haven't done so before)</li>
<li data-id="playthrough_9_20" class="f_none">From here you can also go to where Karla's cell is and send her to Firelink Shrine. Give her the two remaining pyromancy tomes and, with some effort, you can also give her the <a href="http://darksouls3.wiki.fextralife.com/Londor+Braille+Divine+Tome">Londor Braille Divine Tome</a> and <a href="http://darksouls3.wiki.fextralife.com/Deep+Braille+Divine+Tome">Deep Braille Divine Tome</a> instead of corrupting Irina</li>
<li data-id="playthrough_9_21" class="f_ash f_misc">Teleport to the Irithyll Dungeon bonfire and open the last cell on the right in the first section for a <a href="http://darksouls3.wiki.fextralife.com/Rusted+Gold+Coin">Rusted Gold Coin</a>. Now drop down before the window you opened before, turn around, and open the first cell on the left which contains the <a href="http://darksouls3.wiki.fextralife.com/Prisoner+Chief's+Ashes">Prisoner Chief's Ashes</a></li>
<li data-id="playthrough_9_22" class="f_none">Go back to the Profaned Capital bonfire</li>
<li data-id="playthrough_9_23" class="f_misc">Take the ladder on the wall down and cross the bridge for <a href="http://darksouls3.wiki.fextralife.com/Onislayer+Greatarrow">Onislayer Greatarrow x8</a> and a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Weary+Warrior">Large Soul of a Weary Warrior</a> farther on</li>
<li data-id="playthrough_9_24" class="f_weap">From the bridge drop down onto the structure below to find a matching <a href="http://darksouls3.wiki.fextralife.com/Onislayer+Greatbow">Onislayer Greatbow</a></li>
<li data-id="playthrough_9_25" class="f_misc">Drop farther down and loot a <a href="http://darksouls3.wiki.fextralife.com/Rusted+Coin">Rusted Coin</a>. At the end of the platform you can find another <a href="http://darksouls3.wiki.fextralife.com/Rusted+Coin">Rusted Coin</a></li>
<li data-id="playthrough_9_26" class="f_misc f_weap">Before the fog gate go right to find three chests. The leftmost chest is a Mimic with the <a href="http://darksouls3.wiki.fextralife.com/Greatshield+of+Glory">Greatshield of Glory</a>. The chest next to it is also a Mimic, with <a href="http://darksouls3.wiki.fextralife.com/Rusted+Gold+Coin">Rusted Gold Coin x2</a>. The right chest is real and contains an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_9_27" class="f_boss f_misc f_npc f_miss">Enter the boss room. If you are following Siegward's quest, a cutscene will show Siegward has come with you to help put his old friend to rest. Defeat <a href="http://darksouls3.wiki.fextralife.com/Yhorm+the+Giant">Yhorm the Giant</a>; receive <a href="http://darksouls3.wiki.fextralife.com/Cinders+of+a+Lord">Cinders of a Lord</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Soul+of+Yhorm+the+Giant">Soul of Yhorm the Giant</a>. Speak to Siegward for a <a href="http://darksouls3.wiki.fextralife.com/Siegbrau">Siegbräu</a></li>
<li data-id="playthrough_9_28" class="f_misc">Upon defeating Yhorm, you will probably be teleported to <a href="http://darksouls3.wiki.fextralife.com/Emma">Emma</a> at the High Wall of Lothric (since this is the third Lord of Cinder). Speak with her to obtain the <a href="http://darksouls3.wiki.fextralife.com/Basin+of+Vows">Basin of Vows</a>. Approach the statue of a beheading knight to start the boss fight against the <a href="http://darksouls3.wiki.fextralife.com/Dancer+of+the+Boreal+Valley">Dancer of the Boreal Valley</a></li>
<li data-id="playthrough_9_29" class="f_arm f_npc f_weap f_miss">If Siegward helped you defeat Yhorm, return to Yhorm's boss room to find Siegward's <a href="http://darksouls3.wiki.fextralife.com/Storm+Ruler">Storm Ruler</a><span class="p"> + </span><a href="http://darksouls3.wiki.fextralife.com/Pierce+Shield">Pierce Shield</a> as well as his <a href="http://darksouls3.wiki.fextralife.com/Catarina+Set">Catarina Armor Set</a>. If Yhorm is your second Lord of Cinder simply walk towards the flame on the outside and Siegward will die, dropping the items</li>
</ul>
<h3 id="Consumed_Kings_Garden"><a href="#Consumed_Kings_Garden_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Consumed+King's+Garden">Consumed King's Garden</a> (Optional) <span id="playthrough_totals_10"></span></h3>
<ul id="Consumed_Kings_Garden_col" class="collapse in">
<li data-id="playthrough_10_1" class="f_boss f_misc">Defeat the <a href="http://darksouls3.wiki.fextralife.com/Dancer+of+the+Boreal+Valley">Dancer of the Boreal Valley</a>; receive <a href="http://darksouls3.wiki.fextralife.com/Soul+of+the+Dancer">Soul of the Dancer</a></li>
<li data-id="playthrough_10_2" class="f_none">After defeating the Dancer of the Boreal Valley, you can place the basin and climb the ladder to access Lothric Castle</li>
<li data-id="playthrough_10_3" class="f_misc">Take the first left to enter the Consumed King's Garden and pick up a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Weary+Warrior">Soul of a Weary Warrior</a></li>
<li data-id="playthrough_10_4" class="f_estus">Halfway down the elevator, jump off to a platform and then head down the stairs to find an <a href="http://darksouls3.wiki.fextralife.com/Estus+Shard">Estus Shard</a> on the right</li>
<li data-id="playthrough_10_5" class="f_tit">From here go left and drop down to the stairs to find a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a></li>
<li data-id="playthrough_10_18" class="f_ring s_ng++">The <a href="https://darksouls3.wiki.fextralife.com/Sage+Ring">Sage Ring+2</a> is on another set of broken stairs</li>
<li data-id="playthrough_10_6" class="f_ring">To the right of the elevator structure is a <a href="http://darksouls3.wiki.fextralife.com/Ring+of+Sacrifice">Ring of Sacrifice</a></li>
<li data-id="playthrough_10_17" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Wood+Grain+Ring">Wood Grain Ring+1</a> is behind the elevator</li>
<li data-id="playthrough_10_7" class="f_arm f_misc f_weap">Around where the slugs are you can find <a href="http://darksouls3.wiki.fextralife.com/Black+Firebomb">Black Firebomb x2</a>, the <a href="http://darksouls3.wiki.fextralife.com/Claw">Claw</a>, the <a href="http://darksouls3.wiki.fextralife.com/Shadow+Set">Shadow Set</a>, and a <a href="http://darksouls3.wiki.fextralife.com/Human+Pine+Resin">Human Pine Resin</a></li>
<li data-id="playthrough_10_8" class="f_gem f_tit">Below the stairs on the left is a <a href="http://darksouls3.wiki.fextralife.com/Dark+Gem">Dark Gem</a>. Go up the stairs for a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a></li>
<li data-id="playthrough_10_9" class="f_misc f_tit">On the right side you can find <a href="http://darksouls3.wiki.fextralife.com/Human+Pine+Resin">Human Pine Resin x2</a> and another <a href="http://darksouls3.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a></li>
<li data-id="playthrough_10_10" class="f_tit">On the right side of the garden is a door with an elevator. Go up and enter the next room to find a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Scale">Titanite Scale</a> and a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a>. Open the shortcut while you're here</li>
<li data-id="playthrough_10_11" class="f_ring">Take the elevator back down and jump off at the halfway point to find the <a href="http://darksouls3.wiki.fextralife.com/Dragonscale+Ring">Dragonscale Ring</a></li>
<li data-id="playthrough_10_12" class="f_boss f_miss">You can summon <a href="http://darksouls3.wiki.fextralife.com/Hawkwood">Hawkwood the Deserter</a> for assistance if he has left Firelink Shrine. His summon sign is located on the large platform before the two knights</li>
<li data-id="playthrough_10_13" class="f_ring">Kill the second greatsword-wielding knight outside the boss room to receive the <a href="http://darksouls3.wiki.fextralife.com/Magic+Stoneplate+Ring">Magic Stoneplate Ring</a></li>
<li data-id="playthrough_10_14" class="f_boss f_misc">Defeat <a href="http://darksouls3.wiki.fextralife.com/Oceiros,+the+Consumed+King">Oceiros, the Consumed King</a>; receive <a href="http://darksouls3.wiki.fextralife.com/Soul+of+Consumed+Oceiros">Soul of Consumed Oceiros</a></li>
<li data-id="playthrough_10_15" class="f_gest">After defeating Oceiros, continue on down and you'll find the Path of the Dragon gesture on a body</li>
<li data-id="playthrough_10_16" class="f_tit">To the left of the gesture is a chest containing a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Scale">Titanite Scale</a>. Further on is a second chest holding another <a href="http://darksouls3.wiki.fextralife.com/Titanite+Scale">Titanite Scale</a>. Advance through the illusory wall behind this chest to enter the Untended Graves</li>
</ul>
<h3 id="Untended_Graves"><a href="#Untended_Graves_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Untended+Graves">Untended Graves</a> (Optional) <span id="playthrough_totals_11"></span></h3>
<ul id="Untended_Graves_col" class="collapse in">
<li data-id="playthrough_11_1" class="f_gem">From the bonfire go straight to find a <a href="http://darksouls3.wiki.fextralife.com/Shriving+Stone">Shriving Stone</a></li>
<li data-id="playthrough_11_2" class="f_ring">Collect the <a href="http://darksouls3.wiki.fextralife.com/Ashen+Estus+Ring">Ashen Estus Ring</a> located to the left from the bonfire</li>
<li data-id="playthrough_11_3" class="f_misc">Pick up a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Crestfallen+Knight">Soul of a Crestfallen Knight</a> near the square centre</li>
<li data-id="playthrough_11_4" class="f_tit">Near the left outer wall is a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a></li>
<li data-id="playthrough_11_5" class="f_tit">To the right is another <a href="http://darksouls3.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a></li>
<li data-id="playthrough_11_6" class="f_tit">Kill the two Ravenous Crystal Lizards for four <a href="http://darksouls3.wiki.fextralife.com/Titanite+Scale">Titanite Scales</a></li>
<li data-id="playthrough_11_7" class="f_npc f_miss">Where the first bonfire was in Cemetery of Ash, you'll be invaded by <a href="http://darksouls3.wiki.fextralife.com/Daughter+of+Crystal+Kriemhild">Daughter of Crystal Kriemhild</a> if you're embered</li>
<li data-id="playthrough_11_8" class="f_misc">Follow the path on the left for a <a href="http://darksouls3.wiki.fextralife.com/Hidden+Blessing">Hidden Blessing</a></li>
<li data-id="playthrough_11_9" class="f_boss f_miss"><a href="http://darksouls3.wiki.fextralife.com/Sword+Master">Sword Master</a> is available to be summoned outside the boss room</li>
<li data-id="playthrough_11_10" class="f_boss f_misc">Defeat <a href="http://darksouls3.wiki.fextralife.com/Champion+Gundyr">Champion Gundyr</a>; receive <a href="http://darksouls3.wiki.fextralife.com/Soul+of+Champion+Gundyr">Soul of Champion Gundyr</a></li>
<li data-id="playthrough_11_11" class="f_weap">In the arena is also the <a href="http://darksouls3.wiki.fextralife.com/Black+Knight+Glaive">Black Knight Glaive</a></li>
<li data-id="playthrough_11_12" class="f_ring f_weap">At the very end of the Untended Graves when you reach the alternate version of Firelink Shrine, explore the graves for the <a href="http://darksouls3.wiki.fextralife.com/Hornet+Ring">Hornet Ring</a> (on the right where Hawkwood's Shield was) and <a href="http://darksouls3.wiki.fextralife.com/Chaos+Blade">Chaos Blade</a> (where Sword Master was)</li>
<li data-id="playthrough_11_13" class="f_misc">Above the shrine entrance is a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Crestfallen+Knight">Soul of a Crestfallen Knight</a></li>
<li data-id="playthrough_11_14" class="f_misc">Inside Firelink Shrine, you will discover the <a href="http://darksouls3.wiki.fextralife.com/Coiled+Sword+Fragment">Coiled Sword Fragment</a> where the bonfire normally is</li>
<li data-id="playthrough_11_20" class="f_ring s_ng++">The <a href="https://darksouls3.wiki.fextralife.com/Life+Ring">Life Ring+3</a> is behind Lothric's throne</li>
<li data-id="playthrough_11_15" class="f_miss">There is another Shrine Handmaid here that sells the <a href="http://darksouls3.wiki.fextralife.com/Wolf+Knight+Set">Wolf Knight Armor Set</a>, the <a href="http://darksouls3.wiki.fextralife.com/Priestess+Ring">Priestess Ring</a>, and other merchandise. Unlike the regular Handmaid, she will not respawn if killed, so be careful</li>
<li data-id="playthrough_11_16" class="f_weap">Where Andre normally is, you will find the <a href="http://darksouls3.wiki.fextralife.com/Blacksmith+Hammer">Blacksmith Hammer</a></li>
<li data-id="playthrough_11_17" class="f_misc">Activate the illusory wall to where Irina normally is and you'll find the <a href="http://darksouls3.wiki.fextralife.com/Eyes+of+a+Fire+Keeper">Eyes of a Fire Keeper</a>. These can be given to the Fire Keeper to enable the End of Fire ending</li>
<li data-id="playthrough_11_18" class="f_ash f_npc">If Yuria of Londor did not spawn in your game, you will find <a href="http://darksouls3.wiki.fextralife.com/Hollow's+Ashes">Hollow's Ashes</a> where Yoel would normally be</li>
<li data-id="playthrough_11_19" class="f_ring s_ng+">The <a href="https://darksouls3.wiki.fextralife.com/Ring+of+Steel+Protection">Ring of Steel Protection+1</a> is outside next to the tower</li>
</ul>
<h3 id="Archdragon_Peak"><a href="#Archdragon_Peak_col" data-toggle="collapse" class="btn btn-primary btn-collapse btn-sm"></a><a href="http://darksouls3.wiki.fextralife.com/Archdragon+Peak">Archdragon Peak</a> (Optional) <span id="playthrough_totals_12"></span></h3>
<ul id="Archdragon_Peak_col" class="collapse in">
<li data-id="playthrough_12_1" class="f_none">Return to the area in the Irithyll Dungeon with the dragon statue and perform the Path of the Dragon gesture to be teleported to Archdragon Peak</li>
<li data-id="playthrough_12_2" class="f_misc">From where you spawn head to the tree for a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Weary+Warrior">Soul of a Weary Warrior</a></li>
<li data-id="playthrough_12_3" class="f_gem">At the top of the big rock farther on is a <a href="http://darksouls3.wiki.fextralife.com/Lightning+Gem">Lightning Gem</a></li>
<li data-id="playthrough_12_4" class="f_misc">On the left cliff is <a href="http://darksouls3.wiki.fextralife.com/Homeward+Bone">Homeward Bone x2</a></li>
<li data-id="playthrough_12_5" class="f_tit">A <a href="http://darksouls3.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a> is behind some rocks a bit farther on</li>
<li data-id="playthrough_12_6" class="f_misc">Next to the bonfire is an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_12_7" class="f_misc f_tit">To the right of the structure in front of you is a <a href="http://darksouls3.wiki.fextralife.com/Soul+of+a+Nameless+Soldier">Soul of a Nameless Soldier</a> and to the left is a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a></li>
<li data-id="playthrough_12_8" class="f_tit f_weap">On top of the structure is the <a href="http://darksouls3.wiki.fextralife.com/Ancient+Dragon+Greatshield">Ancient Dragon Greatshield</a> and in the corner below is another <a href="http://darksouls3.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a></li>
<li data-id="playthrough_12_9" class="f_ring">Follow the path to the left of the gate to obtain the <a href="http://darksouls3.wiki.fextralife.com/Lightning+Clutch+Ring">Lightning Clutch Ring</a></li>
<li data-id="playthrough_12_10" class="f_boss f_misc">Defeat the <a href="http://darksouls3.wiki.fextralife.com/Ancient+Wyvern">Ancient Wyvern</a> boss and you'll receive the <a href="http://darksouls3.wiki.fextralife.com/Dragon+Head+Stone">Dragon Head Stone</a></li>
<li data-id="playthrough_12_11" class="f_none">After defeating the Ancient Wyvern, you will be transported to the Dragon-Kin Mausoleum bonfire</li>
<li data-id="playthrough_12_12" class="f_none">Return to the entrance of the Ancient Wyvern boss area</li>
<li data-id="playthrough_12_13" class="f_misc">In the middle of the arena is a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Weary+Warrior">Large Soul of a Weary Warrior</a></li>
<li data-id="playthrough_12_14" class="f_misc">Go to the right and pick up <a href="http://darksouls3.wiki.fextralife.com/Stalk+Dung+Pie">Stalk Dung Pie x6</a>, an <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a>, and another <a href="http://darksouls3.wiki.fextralife.com/Ember">Ember</a></li>
<li data-id="playthrough_12_15" class="f_ring">The railing is broken at the end, allowing you to walk along the edge. At the end of the path is the <a href="http://darksouls3.wiki.fextralife.com/Ring+of+Steel+Protection">Ring of Steel Protection</a></li>
<li data-id="playthrough_12_16" class="f_misc">Left of the arena middle is a <a href="http://darksouls3.wiki.fextralife.com/Large+Soul+of+a+Nameless+Soldier">Large Soul of a Nameless Soldier</a>. Go up the stairs and left for <a href="http://darksouls3.wiki.fextralife.com/Lightning+Urn">Lightning Urn x4</a></li>
<li data-id="playthrough_12_17" class="f_tit">Continue down the normal path until you can go left into the dome building to find a <a href="http://darksouls3.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a></li>
<li data-id="playthrough_12_18" class="f_tit">Go down the ladder to find <a href="http://darksouls3.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite x2</a></li>
<li data-id="playthrough_12_19" class="f_misc">Go back to the normal path and on the edge of the platform is <a href="http://darksouls3.wiki.fextralife.com/Dung+Pie">Dung Pie x3</a></li>
<li data-id="playthrough_12_20" class="f_misc f_tit">Go up the stairs and get to the top of this building for <a href="http://darksouls3.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk x2</a> and <a href="http://darksouls3.wiki.fextralife.com/Lightning+Bolt">Lightning Bolt x12</a></li>
<li data-id="playthrough_12_21" class="f_tit">Head to the area where you did the plunging attack, but this time climb up the ladder on the other end for <a href="http://darksouls3.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite x2</a></li>
<li data-id="playthrough_12_22" class="f_arm f_weap">Kill the <a href="http://darksouls3.wiki.fextralife.com/Drakeblood+Knight">Drakeblood Knight</a> back at the Dragon-Kin Mausoleum to receive the <a href="http://darksouls3.wiki.fextralife.com/Drakeblood+Greatsword">Drakeblood Greatsword</a>. After killing the Drakeblood Knight, return to the Oceiros, the Consumed King bonfire and run up to the altar where you got the Path of the Dragon gesture to find the <a href="http://darksouls3.wiki.fextralife.com/Drakeblood+Set">Drakeblood Set</a> waiting for you there</li>
<li data-id="playthrough_12_23" class="f_ring">Perform the Path of the Dragon gesture in front of the altar in the Dragon-Kin Mausoleum to receive the <a href="http://darksouls3.wiki.fextralife.com/Calamity+Ring">Calamity Ring</a></li>