forked from pkajaba/dark-souls-cheat-sheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1443 lines (1371 loc) · 221 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 Cheat Sheet</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Cheat sheet for Dark Souls. Checklist of things to do, items to get etc.">
<meta name="author" content="loidas">
<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>
<div class="container">
<div class="navbar">
<div class="navbar-inner">
<h1>Dark Souls Cheat Sheet</h1>
<ul class="nav nav-tabs">
<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">Checklists</a></li>
<li><a href="#tabInformation" data-toggle="tab">Information</a></li>
<li><a href="#tabHelp" data-toggle="tab">Help</a></li>
</ul>
<div class="profile form-inline" style="float: right;">
<div class="input-group" style="display: flex; flex-direction: row;">
<select class="form-control" style="width: auto;" id="themes"><!-- Gets filled by jQuery. --></select>
<select class="form-control" style="width: auto;" id="profiles"></select>
<span class="input-group-btn">
<button class="btn btn-default" type="button" id="profileAdd">Add</button>
<button class="btn btn-default" type="button" id="profileEdit">Edit</button>
<button class="btn btn-default" type="button" id="profileNG+">NG+</button>
</span>
</div>
</div>
</div>
</div>
<div id="intro">
<p>
The following is a checklist and set of information I use when playing Dark Souls to make sure I don't miss
an item, conversation or boss. I hope you find it useful. A big thanks goes out to the community
of contributors on the <a href="https://darksouls.wiki.fextralife.com/">Dark Souls Wiki</a> where
some of this information is borrowed from. If this is your first time visiting this page please check
out the Help section.
</p>
<p>
<em>Warning: Contains Spoilers!</em>
</p>
</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>
<div class="tab-pane active" id="tabPlaythrough">
<h2>Playthrough Checklist <span id="playthrough_overall_total"></span></h2>
<ul>
<li><a href="#Undead_Asylum">Undead Asylum</a> (Level 1) <span id="playthrough_nav_totals_1"></span></li>
<li><a href="#Firelink_Shrine">Firelink Shrine</a> (Levels 1-5) <span id="playthrough_nav_totals_2"></span></li>
<li><a href="#Undead_Burg">Undead Burg</a> (Levels 5-10) <span id="playthrough_nav_totals_3"></span></li>
<li><a href="#Undead_Parish">Undead Parish</a> (Levels 10-20) <span id="playthrough_nav_totals_4"></span></li>
<li><a href="#Lower_Undead_Burg">Lower Undead Burg</a> (Levels 20-30) <span id="playthrough_nav_totals_5"></span></li>
<li><a href="#The_Depths">The Depths</a> (Levels 20-30) <span id="playthrough_nav_totals_6"></span></li>
<li><a href="#Blighttown">Blighttown</a> (Levels 30-40) <span id="playthrough_nav_totals_7"></span></li>
<li><a href="#Darkroot_Basin">Darkroot Basin</a> (Level 35+) <span id="playthrough_nav_totals_8"></span></li>
<li><a href="#Darkroot_Garden">Darkroot Garden</a> (Level 20+) <span id="playthrough_nav_totals_9"></span></li>
<li><a href="#Sens_Fortress">Sen's Fortress</a> (Level 40+) <span id="playthrough_nav_totals_10"></span></li>
<li><a href="#Anor_Londo">Anor Londo</a> (Level 50+) <span id="playthrough_nav_totals_11"></span></li>
<li><a href="#Undead_Asylum_Revisited">Undead Asylum Revisited</a> (Levels 30-40) <span id="playthrough_nav_totals_12"></span></li>
<li><a href="#New_Londo_Ruins">New Londo Ruins</a> (Level 60+) <span id="playthrough_nav_totals_13"></span></li>
<li><a href="#The_Great_Hollow">The Great Hollow</a> (Level 50+) <span id="playthrough_nav_totals_14"></span></li>
<li><a href="#Ash_Lake">Ash Lake</a> (Level 50+) <span id="playthrough_nav_totals_15"></span></li>
<li><a href="#Painted_World_of_Ariamis">Painted World of Ariamis</a> (Level 60+) <span id="playthrough_nav_totals_16"></span></li>
<li><a href="#The_Dukes_Archives">The Duke's Archives</a> (Level 60+) <span id="playthrough_nav_totals_17"></span></li>
<li><a href="#Crystal_Cave">Crystal Cave</a> (Level 50+) <span id="playthrough_nav_totals_18"></span></li>
<li><a href="#Demon_Ruins">Demon Ruins</a> (Level 60+) <span id="playthrough_nav_totals_19"></span></li>
<li><a href="#Lost_Izalith">Lost Izalith</a> (Level 75+) <span id="playthrough_nav_totals_20"></span></li>
<li><a href="#The_Catacombs">The Catacombs</a> (Level 30-50) <span id="playthrough_nav_totals_21"></span></li>
<li><a href="#Tomb_Of_The_Giants">Tomb of the Giants</a> (Level 70+) <span id="playthrough_nav_totals_22"></span></li>
<li><a href="#Miscellaneous">Miscellaneous Tasks</a> <span id="playthrough_nav_totals_23"></span></li>
<li><a href="#Sanctuary_Garden">Sanctuary Garden / Oolacile Sanctuary / Royal Woods</a> (DLC Only) <span id="playthrough_nav_totals_24"></span></li>
<li><a href="#Oolacile_Township">Oolacile Township</a> (DLC Only) <span id="playthrough_nav_totals_25"></span></li>
<li><a href="#Chasm_of_the_Abyss">Chasm of the Abyss</a> (DLC Only) <span id="playthrough_nav_totals_26"></span></li>
<li><a href="#New_Game_Plus">New Game Plus Preparation</a> <span id="playthrough_nav_totals_27"></span></li>
<li><a href="#Kiln_of_the_First_Flame">Kiln of the First Flame</a> (Level 60-80) <span id="playthrough_nav_totals_28"></span></li>
</ul>
<hr />
<a name="Undead_Asylum"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Northern+Undead+Asylum">Undead Asylum</a> (Level 1) <span id="playthrough_totals_1"></span></h3>
<ul>
<li data-id="playthrough_1_1">Grab the <a href="https://darksouls.wiki.fextralife.com/Dungeon+Cell+Key">Dungeon Cell Key</a></li>
<li data-id="playthrough_1_2">Run passed the <a href="https://darksouls.wiki.fextralife.com/Asylum+Demon">Asylum Demon</a> boss or kill him to get the <a href="https://darksouls.wiki.fextralife.com/Demon%27s+Great+Hammer">Demon's Great Hammer</a></li>
<li data-id="playthrough_1_3">Grab your sword and shield</li>
<li data-id="playthrough_1_4">Remember about the boulder!</li>
<li data-id="playthrough_1_5">Talk to the Asylum knight to get the <a href="https://darksouls.wiki.fextralife.com/Estus+Flask">Estus Flask</a> and <a href="https://darksouls.wiki.fextralife.com/Undead+Asylum+F2+East+Key">Undead Asylum F2 East Key</a></li>
<li data-id="playthrough_1_6">Unlock the gate leading to bonfire</li>
<li data-id="playthrough_1_7">If you choose a magic class then grab your catalyst or <a href="https://darksouls.wiki.fextralife.com/Pyromancy+Flame">Pyromancy Flame</a></li>
<li data-id="playthrough_1_8">Kill the <a href="https://darksouls.wiki.fextralife.com/Asylum+Demon">Asylum Demon</a> boss if you haven't already, remembering to do a two-handed drop attack at the start</li>
<li data-id="playthrough_1_9">Continue on to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a>, grabbing the soul on the left on the way up to the nest</li>
</ul>
<a name="Firelink_Shrine"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a> (Levels 1-5) <span id="playthrough_totals_2"></span></h3>
<ul>
<li data-id="playthrough_2_1">Talk to the <a href="https://darksouls.wiki.fextralife.com/Crestfallen+Warrior">Crestfallen Warrior</a></li>
<li data-id="playthrough_2_2">Talk to <a href="https://darksouls.wiki.fextralife.com/Petrus+of+Thorolund">Petrus of Thorolund</a> to get the <a href="https://darksouls.wiki.fextralife.com/Copper+Coin">Copper Coin</a> and optionally join the <a href="https://darksouls.wiki.fextralife.com/Way+of+White">Way of White</a> covenant</li>
<li data-id="playthrough_2_3">Pick up the souls, <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a>, <a href="https://darksouls.wiki.fextralife.com/Firebomb">Firebombs</a>, <a href="https://darksouls.wiki.fextralife.com/Homeward+Bone">Homeward Bones</a>, <a href="https://darksouls.wiki.fextralife.com/Morning+Star">Morning Star</a>, <a href="https://darksouls.wiki.fextralife.com/Talisman">Talisman</a>, <a href="https://darksouls.wiki.fextralife.com/Cracked+Red+Eye+Orb">Cracked Red Eye Orbs</a> and <a href="https://darksouls.wiki.fextralife.com/Lloyd%27s+Talisman">Lloyd's Talismans</a> around the shrine</li>
<li data-id="playthrough_2_5">Run around the graveyard and pick up the souls, <a href="https://darksouls.wiki.fextralife.com/Zweihander">Zweihander</a>, <a href="https://darksouls.wiki.fextralife.com/Winged+Spear">Winged Spear</a>, <a href="https://darksouls.wiki.fextralife.com/Caduceus+Round+Shield">Caduceus Round Shield</a> and the <a href="https://darksouls.wiki.fextralife.com/Binoculars">Binoculars</a></li>
<li data-id="playthrough_2_6">Level up with all your soft souls and then head down to <a href="https://darksouls.wiki.fextralife.com/New+Londo+Ruins">New Londo Ruins</a> to talk to <a href="https://darksouls.wiki.fextralife.com/Rickert+of+Vinheim">Rickert of Vinheim</a> and pick up the souls, <a href="https://darksouls.wiki.fextralife.com/Estoc">Estoc</a> and <a href="https://darksouls.wiki.fextralife.com/Transient+Curse">Transient Curses</a></li>
<li data-id="playthrough_2_7">Suicide run in to the ruins to get the <a href="https://darksouls.wiki.fextralife.com/Fire+Keeper+Soul">Fire Keeper Soul</a></li>
<li data-id="playthrough_2_8">Talk to <a href="https://darksouls.wiki.fextralife.com/Anastacia+of+Astora">Anastacia of Astora</a> to reinforce your <a href="https://darksouls.wiki.fextralife.com/Estus+Flask">Estus Flask</a></li>
<li data-id="playthrough_2_9">Head to the <a href="https://darksouls.wiki.fextralife.com/Valley+of+Drakes">Valley Of Drakes</a> and suicide run to the <a href="https://darksouls.wiki.fextralife.com/undead+dragon">Undead Dragon</a> to grab the soul on the right first, then <a href="https://darksouls.wiki.fextralife.com/Astora%27s+Straight+Sword">Astora's Straight Sword</a> and the <a href="https://darksouls.wiki.fextralife.com/Dragon+Crest+Shield">Dragon Crest Shield</a></li>
<li data-id="playthrough_2_10">If you died return to the dragon and then go down the valley and take the elevator up to the <a href="https://darksouls.wiki.fextralife.com/Darkroot+Basin">Darkroot Basin</a> bonfire</li>
<li data-id="playthrough_2_11">Kill the <a href="https://darksouls.wiki.fextralife.com/The+Black+Knight">Black Knight</a> to get the <a href="https://darksouls.wiki.fextralife.com/Blue+Titanite+Chunk">Blue Titanite Chunk</a> and the <a href="https://darksouls.wiki.fextralife.com/Grass+Crest+Shield">Grass Crest Shield</a></li>
<li data-id="playthrough_2_12">Go up the basin and pick up the <a href="https://darksouls.wiki.fextralife.com/Hunter+Set">Hunter Set</a>, <a href="https://darksouls.wiki.fextralife.com/Longbow">Longbow</a> and arrows, and quickly kill the <a href="https://darksouls.wiki.fextralife.com/Crystal+Lizard">Crystal Lizard</a></li>
<li data-id="playthrough_2_13">Keep going up to <a href="https://darksouls.wiki.fextralife.com/Undead+Parish">Undead Parish</a>, light the bonfire above <a href="https://darksouls.wiki.fextralife.com/Blacksmith+Andrei">Andre the Blacksmith</a>, and use the elevator shortcut back to the shrine</li>
<li data-id="playthrough_2_4">Pick up the <a href="https://darksouls.wiki.fextralife.com/Undead+Asylum+F2+West+Key">Undead Asylum F2 West Key</a> from the roof and take a quick return flight back to <a href="https://darksouls.wiki.fextralife.com/Northern+Undead+Asylum">Undead Asylum</a> to get the <a href="https://darksouls.wiki.fextralife.com/Rusted+Iron+Ring">Rusted Iron Ring</a></li>
<li data-id="playthrough_2_14">Continue up to <a href="https://darksouls.wiki.fextralife.com/Undead+Burg">Undead Burg</a>, picking up the souls and <a href="https://darksouls.wiki.fextralife.com/Ring+of+Sacrifice">Ring Of Sacrifice</a> from the arches under the aqueduct on the way</li>
</ul>
<a name="Undead_Burg"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Undead+Burg">Undead Burg</a> (Levels 5-10) <span id="playthrough_totals_3"></span></h3>
<ul>
<li data-id="playthrough_3_1">Remember about the Dragon and the archer!</li>
<li data-id="playthrough_3_2">Optionally kill the <a href="https://darksouls.wiki.fextralife.com/Undead+Merchant">Undead Merchant</a> to get the <a href="https://darksouls.wiki.fextralife.com/Uchigatana">Uchigatana</a>, <a href="https://darksouls.wiki.fextralife.com/Residence+Key">Residence Key</a>, <a href="https://darksouls.wiki.fextralife.com/Orange+Guidance+Soapstone">Orange Guidance Soapstone</a> and <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a></li>
<li data-id="playthrough_3_3">Or keep him alive and buy the useful stuff from him
<ul>
<li data-id="playthrough_3_3_1"><a href="https://darksouls.wiki.fextralife.com/Orange+Guidance+Soapstone">Orange Guidance Soapstone</a> @ 100 souls</li>
<li data-id="playthrough_3_3_2"><a href="https://darksouls.wiki.fextralife.com/Residence+Key">Residence Key</a> @ 1,000 souls</li>
<li data-id="playthrough_3_3_3"><a href="https://darksouls.wiki.fextralife.com/Bottomless+Box">Bottomless Box</a> @ 1,000 souls</li>
<li data-id="playthrough_3_3_4"><a href="https://darksouls.wiki.fextralife.com/Repairbox">Repairbox</a> @ 2,000 souls</li>
<li data-id="playthrough_3_3_5">Some <a href="https://darksouls.wiki.fextralife.com/Ammunition">Standard Arrows</a> @ 10 souls each</li>
<li data-id="playthrough_3_3_6"><a href="https://darksouls.wiki.fextralife.com/Lloyd%27s+Talisman">Lloyd's Talismans</a> for Mimics later on @ 500 souls each</li>
</ul>
</li>
<li data-id="playthrough_3_4">Pick up the souls, <a href="https://darksouls.wiki.fextralife.com/Throwing+Knife">Throwing Knives</a>, <a href="https://darksouls.wiki.fextralife.com/Light+Crossbow">Light Crossbow</a> and bolts, <a href="https://darksouls.wiki.fextralife.com/Rubbish">Rubbish</a>, <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a> from around the first part of the burg</li>
<li data-id="playthrough_3_5">Open the door below the first archer to get the <a href="https://darksouls.wiki.fextralife.com/Wooden+Shield">Wooden Shield</a></li>
<li data-id="playthrough_3_6">Light the bonfire</li>
<li data-id="playthrough_3_7">Pick up the <a href="https://darksouls.wiki.fextralife.com/Black+Firebomb">Black Firebombs</a> and <a href="https://darksouls.wiki.fextralife.com/Gold+Pine+Resin">Gold Pine Resin</a></li>
<li data-id="playthrough_3_8">Remember about the second archer in the tower!</li>
<li data-id="playthrough_3_9">Kill the <a href="https://darksouls.wiki.fextralife.com/The+Black+Knight">Black Knight</a> and get the <a href="https://darksouls.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a> and <a href="https://darksouls.wiki.fextralife.com/Blue+Tearstone+Ring">Blue Tearstone Ring</a></li>
<li data-id="playthrough_3_10">Watch out for the barrel!</li>
<li data-id="playthrough_3_11">Quickly kill the <a href="https://darksouls.wiki.fextralife.com/Crystal+Lizard">Crystal Lizard</a> under the barrels while going up the tower to get the <a href="https://darksouls.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a></li>
<li data-id="playthrough_3_12">Go through the fog gate and go up the ladder to take out the two archers</li>
<li data-id="playthrough_3_13">Kill the <a href="https://darksouls.wiki.fextralife.com/Taurus+Demon">Taurus Demon</a> boss, remembering to do a two-handed drop attack at the start</li>
<li data-id="playthrough_3_14">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 5-10 to get summoned</li>
<li data-id="playthrough_3_15">Pick up the soul behind the crate in the tower</li>
<li data-id="playthrough_3_16">Talk to <a href="https://darksouls.wiki.fextralife.com/Solaire+of+Astora">Solaire</a>, answering Yes to his questions to get the <a href="https://darksouls.wiki.fextralife.com/White+Sign+Soapstone">White Sign Soapstone</a>. Praise the Sun!
<ul>
<li data-id="playthrough_3_16_1">If you won't need to summon him later you can kill him to get his <a href="https://darksouls.wiki.fextralife.com/Sunlight+Straight+Sword">Sunlight Straight Sword</a>, <a href="https://darksouls.wiki.fextralife.com/Iron+and+Sun+Set">Iron and Sun Set</a>, <a href="https://darksouls.wiki.fextralife.com/Sunlight+Shield">Sunlight Shield</a> and <a href="https://darksouls.wiki.fextralife.com/Sunlight+Talisman">Sunlight Talisman</a></li>
</ul>
</li>
<li data-id="playthrough_3_17">Try not to get burned alive by the <a href="https://darksouls.wiki.fextralife.com/the+Bridge+Wyvern">Hellkite Wyvern</a> as you cross to the middle of the bridge and head down the stairs</li>
<li data-id="playthrough_3_18">Kick the ladder to open the shortcut back to the bonfire</li>
<li data-id="playthrough_3_19">Go below the bridge and use your bow to attack the wyvern's tail to get the <a href="https://darksouls.wiki.fextralife.com/Drake+Sword">Drake Sword</a></li>
<li data-id="playthrough_3_20">Go back up on the bridge and make a run for the far side when the wyvern lands</li>
<li data-id="playthrough_3_21">Light the <a href="https://darksouls.wiki.fextralife.com/Warrior+of+Sunlight">Warrior of Sunlight</a> bonfire, optionally join the covenant if you have enough faith, and then open the <a href="https://darksouls.wiki.fextralife.com/Undead+Parish">Undead Parish</a> gate</li>
<li data-id="playthrough_3_22">Pick up the souls and the <a href="https://darksouls.wiki.fextralife.com/Claymore">Claymore</a> on the bridge</li>
<li data-id="playthrough_3_23">Continue on to <a href="https://darksouls.wiki.fextralife.com/Undead+Parish">Undead Parish</a></li>
</ul>
<a name="Undead_Parish"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Undead+Parish">Undead Parish</a> (Levels 10-20) <span id="playthrough_totals_4"></span></h3>
<ul>
<li data-id="playthrough_4_1">Kill the <a href="https://darksouls.wiki.fextralife.com/The+Black+Knight">Black Knight</a> up in the tower to get the <a href="https://darksouls.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a></li>
<li data-id="playthrough_4_2">Kill the <a href="https://darksouls.wiki.fextralife.com/Mecha+Boar">Mecha Boar</a></li>
<li data-id="playthrough_4_3">Get the <a href="https://darksouls.wiki.fextralife.com/Mystery+Key">Mystery Key</a> that you will soon need to free <a href="https://darksouls.wiki.fextralife.com/Knight+Lautrec">Knight Lautrec</a> and grab the soul from the beam</li>
<li data-id="playthrough_4_4">Kill the <a href="https://darksouls.wiki.fextralife.com/Undead+Knight">Undead Knight</a> to get the <a href="https://darksouls.wiki.fextralife.com/Knight+Shield">Knight Shield</a></li>
<li data-id="playthrough_4_5">Get the <a href="https://darksouls.wiki.fextralife.com/Basement+Key">Basement Key</a> to unlock the Hellkite Bridge door, pull the lever to open the gate and get the <a href="https://darksouls.wiki.fextralife.com/Halberd">Halberd</a></li>
<li data-id="playthrough_4_6">Rest at the bonfire above <a href="https://darksouls.wiki.fextralife.com/Blacksmith+Andrei">Andre the Blacksmith</a></li>
<li data-id="playthrough_4_7">Learn the Hurrah gesture from Andre and buy useful stuff from him
<ul>
<li data-id="playthrough_4_7_1"><a href="https://darksoulswiki.wikispaces.com/Repairbox">Repairbox</a> @ 2,000 souls</li>
<li data-id="playthrough_4_7_2"><a href="https://darksoulswiki.wikispaces.com/Weapon+Smithbox">Weapon Smithbox</a> @ 2,000 souls</li>
<li data-id="playthrough_4_7_3"><a href="https://darksoulswiki.wikispaces.com/Armor+Smithbox">Armor Smithbox</a> @ 2,000 souls</li>
<li data-id="playthrough_4_7_4"><a href="https://darksoulswiki.wikispaces.com/Crest+of+Artorias">Crest of Artorias</a> @ 20,000 souls</li>
<li data-id="playthrough_4_7_5">Upgrade your weapons</li>
</ul>
</li>
<li data-id="playthrough_4_8">Talk to <a href="https://darksouls.wiki.fextralife.com/Siegmeyer+of+Catarina">Siegmeyer of Catarina</a> outside the gate to <a href="https://darksouls.wiki.fextralife.com/Sen%27s+Fortress">Sen's Fortress</a></li>
<li data-id="playthrough_4_9">Kill the <a href="https://darksouls.wiki.fextralife.com/The+Black+Knight">Black Knight</a> and get the <a href="https://darksouls.wiki.fextralife.com/Fire+Keeper+Soul">Firekeeper Soul</a></li>
<li data-id="playthrough_4_10">Optionally make a return trip to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a> and talk to <a href="https://darksouls.wiki.fextralife.com/Anastacia+of+Astora">Anastacia of Astora</a> to reinforce your <a href="https://darksouls.wiki.fextralife.com/Estus+Flask">Estus Flask</a></li>
<li data-id="playthrough_4_11">Kill the <a href="https://darksouls.wiki.fextralife.com/The+Channeler">Channeler</a> and all the zombies</li>
<li data-id="playthrough_4_12">Pick up the soul, <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a> and free <a href="https://darksouls.wiki.fextralife.com/Knight+Lautrec">Lautrec</a> from his cell</li>
<li data-id="playthrough_4_13">Kill the <a href="https://darksouls.wiki.fextralife.com/Bell+Gargoyle">Bell Gargoyles</a>
<ul>
<li data-id="playthrough_4_13_1">You can summon <a href="https://darksouls.wiki.fextralife.com/Solaire+of+Astora">Solaire</a> just outside the fog gate</li>
<li data-id="playthrough_4_13_2">You can also summon <a href="https://darksouls.wiki.fextralife.com/Knight+Lautrec">Lautrec</a> from the ledge after the first ladder to the fog gate if you rescued him and went to talk to him at <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a></li>
<li data-id="playthrough_4_13_3">Cut off the tail of the first gargoyle to get the <a href="https://darksouls.wiki.fextralife.com/Gargoyle+Tail+Axe">Gargoyle Tail Axe</a></li>
</ul>
</li>
<li data-id="playthrough_4_14">Ring the bell</li>
<li data-id="playthrough_4_15">Talk to <a href="https://darksouls.wiki.fextralife.com/Oswald+of+Carim">Oswald of Carim</a>, learn the Well! What Is It! gesture and buy useful stuff from him
<ul>
<li data-id="playthrough_4_15_1"><a href="https://darksouls.wiki.fextralife.com/Purging+Stone">Purging Stones</a> @ 4,000 souls each for <a href="https://darksouls.wiki.fextralife.com/Depths">The Depths</a> later on</li>
<li data-id="playthrough_4_15_2"><a href="https://darksouls.wiki.fextralife.com/Indictment">Indictment</a> @ 200 souls</li>
<li data-id="playthrough_4_15_3"><a href="https://darksouls.wiki.fextralife.com/Book+of+the+Guilty">Book of the Guilty</a> @ 1,000 souls</li>
<li data-id="playthrough_4_15_4"><a href="https://darksouls.wiki.fextralife.com/Karmic+Justice">Karmic Justice Miracle</a> @ 40,000 souls</li>
<li data-id="playthrough_4_15_5"><a href="https://darksouls.wiki.fextralife.com/Bloodbite+Ring">Bloodbite Ring</a> @ 10,000 souls</li>
<li data-id="playthrough_4_15_6"><a href="https://darksouls.wiki.fextralife.com/Poisonbite+Ring">Poisonbite Ring</a> @ 15,000 souls</li>
</ul>
</li>
<li data-id="playthrough_4_16">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 15-25 to get summoned</li>
<li data-id="playthrough_4_17">Head back to the Hellkite Bridge and unlock the basement door and head down to the <a href="https://darksouls.wiki.fextralife.com/Undead+Burg#Lower Undead Burg">Lower Undead Burg</a></li>
</ul>
<a name="Lower_Undead_Burg"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Undead+Burg#Lower Undead Burg">Lower Undead Burg</a> (Levels 20-30) <span id="playthrough_totals_5"></span></h3>
<ul>
<li data-id="playthrough_5_1">Open the shortcut to the <a href="https://darksouls.wiki.fextralife.com/Undead+Burg">Undead Burg</a></li>
<li data-id="playthrough_5_2">Use the <a href="https://darksouls.wiki.fextralife.com/Residence+Key">Residence Key</a> to free <a href="https://darksouls.wiki.fextralife.com/Griggs+of+Vinheim">Griggs of Vinheim</a> from the house and pick up the <a href="https://darksouls.wiki.fextralife.com/Sorcerer+Set">Sorcerer Set</a> and <a href="https://darksouls.wiki.fextralife.com/Sorcerer's+Catalyst">Sorcerer's Catalyst</a></li>
<li data-id="playthrough_5_3">Pick up the <a href="https://darksouls.wiki.fextralife.com/twin+Humanities">Twin Humanities</a>, <a href="https://darksouls.wiki.fextralife.com/Mail+Breaker">Mail Breaker</a>, <a href="https://darksouls.wiki.fextralife.com/Thief+Set">Thief Set</a>, <a href="https://darksouls.wiki.fextralife.com/Target+Shield">Target Shield</a> and soul from around the burg</li>
<li data-id="playthrough_5_4">Kill the <a href="https://darksouls.wiki.fextralife.com/Capra+Demon">Capra Demon</a> to get the <a href="https://darksouls.wiki.fextralife.com/Key+to+Depths">Key to Depths</a></li>
<li data-id="playthrough_5_5">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 20-30 to get summoned</li>
<li data-id="playthrough_5_6">Head down the stairs and up the left tower to the <a href="https://darksouls.wiki.fextralife.com/Undead+Merchant+%28Female%29">Female Undead Merchant</a> and buy useful stuff from her
<ul>
<li data-id="playthrough_5_6_1"><a href="https://darksouls.wiki.fextralife.com/Purple+Moss+Clump">Purple Moss Clumps</a> @ 500 souls each for <a href="https://darksouls.wiki.fextralife.com/Blighttown">Blighttown</a> later on</li>
<li data-id="playthrough_5_6_2"><a href="https://darksouls.wiki.fextralife.com/Blooming+Purple+Moss+Clump">Blooming Purple Moss Clumps</a> @ 1,000 souls each for <a href="https://darksouls.wiki.fextralife.com/Blighttown">Blighttown</a> later on</li>
<li data-id="playthrough_5_6_3"><a href="https://darksouls.wiki.fextralife.com/Transient+Curse">Transient Curses</a> @ 4,000 souls each for <a href="https://darksouls.wiki.fextralife.com/New+Londo+Ruins">New Londo Ruins</a> later on</li>
<li data-id="playthrough_5_6_4"><a href="https://darksouls.wiki.fextralife.com/Homeward+Bone">Homeward Bones</a> @ 800 souls each</li>
</ul>
</li>
<li data-id="playthrough_5_7">Open the shortcut back to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a></li>
<li data-id="playthrough_5_8">Head down to the shrine and talk to <a href="https://darksouls.wiki.fextralife.com/Griggs+of+Vinheim">Griggs of Vinheim</a>, answering Yes to his question and buy any sorceries you need from him</li>
<li data-id="playthrough_5_9">Talk to the <a href="https://darksouls.wiki.fextralife.com/Crestfallen+Warrior">Crestfallen Warrior</a></li>
<li data-id="playthrough_5_10">Talk to <a href="https://darksouls.wiki.fextralife.com/Knight+Lautrec">Lautrec</a> to receive a <a href="https://darksouls.wiki.fextralife.com/Sunlight+Medal">Sunlight Medal</a></li>
<li data-id="playthrough_5_11">Optionally kill <a href="https://darksouls.wiki.fextralife.com/Knight+Lautrec">Lautrec</a> if you want to keep the <a href="https://darksouls.wiki.fextralife.com/Anastacia+of+Astora">shrine Firekeeper</a> alive and don't need <a href="https://darksouls.wiki.fextralife.com/Favor+set">his armor</a> but want the <a href="https://darksouls.wiki.fextralife.com/Anastacia+of+Astora">Ring of Favor and Protection</a></li>
<li data-id="playthrough_5_12">Head back up to the aqueduct, go down the tower and across to the other tower that leads to <a href="https://darksouls.wiki.fextralife.com/Depths">The Depths</a></li>
</ul>
<a name="The_Depths"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Depths">The Depths</a> (Levels 20-30) <span id="playthrough_totals_6"></span></h3>
<ul>
<li data-id="playthrough_6_1">Kill the first <a href="https://darksouls.wiki.fextralife.com/Butcher">Butcher</a> and get the <a href="https://darksouls.wiki.fextralife.com/Large+Ember">Large Ember</a> from the chest</li>
<li data-id="playthrough_6_2">Free <a href="https://darksouls.wiki.fextralife.com/Laurentius+of+the+Great+Swamp">Laurentius of the Great Swamp</a> by rolling in to the barrels and talk to him</li>
<li data-id="playthrough_6_3">Kill the second <a href="https://darksouls.wiki.fextralife.com/Butcher">Butcher</a></li>
<li data-id="playthrough_6_4">Remember about the slime above the first soul!</li>
<li data-id="playthrough_6_5">Light the bonfire</li>
<li data-id="playthrough_6_6">Head back up to the butcher area, drop down the hole behind his table, get the <a href="https://darksouls.wiki.fextralife.com/Spider+Shield">Spider Shield</a>, kill the <a href="https://darksouls.wiki.fextralife.com/Giant+Rat">Giant Rat</a>, get the <a href="https://darksouls.wiki.fextralife.com/Sewer+Chamber+Key">Sewer Chamber Key</a> and soul</li>
<li data-id="playthrough_6_7">On the upper level kill the <a href="https://darksouls.wiki.fextralife.com/The+Channeler">Channeler</a>, and pick up the <a href="https://darksouls.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a> and <a href="https://darksouls.wiki.fextralife.com/Greataxe">Greataxe</a></li>
<li data-id="playthrough_6_8">Either slide, drop or walk down to the lower level and beward the <a href="https://darksouls.wiki.fextralife.com/Basilisk">Basilisks</a>!</li>
<li data-id="playthrough_6_9">On the lower level get the <a href="https://darksouls.wiki.fextralife.com/Ring+of+the+Evil+Eye">Ring of the Evil Eye</a> and <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a></li>
<li data-id="playthrough_6_10">Open up the shortcut back to the bonfire and if you're not already in human form go to the bonfire and reverse hollowing</li>
<li data-id="playthrough_6_11">Go back down and get <a href="https://darksouls.wiki.fextralife.com/Knight+Kirk">Knight Kirk</a> to invade and then kill him</li>
<li data-id="playthrough_6_12">Head down to the boss fog gate, picking up the <a href="https://darksouls.wiki.fextralife.com/Heavy+Crossbow">Heavy Crossbow</a> and bolts on the way</li>
<li data-id="playthrough_6_13">Kill the <a href="https://darksouls.wiki.fextralife.com/Gaping+Dragon">Gaping Dragon</a> to get the <a href="https://darksouls.wiki.fextralife.com/Blighttown+Key">Blighttown Key</a>
<ul>
<li data-id="playthrough_6_13_1">You can summon <a href="https://darksouls.wiki.fextralife.com/Solaire+of+Astora">Solaire</a> just above the fog gate</li>
<li data-id="playthrough_6_13_2">You can also summon <a href="https://darksouls.wiki.fextralife.com/Knight+Lautrec">Lautrec</a> using the summon sign on the other side of the pillar from Solaire</li>
<li data-id="playthrough_6_13_3">Cut off the tail of the dragon to get the <a href="https://darksoulswiki.wikispaces.com/Dragon+Kings+Great+Axe">Dragon King Great Axe</a></li>
<li data-id="playthrough_6_13_4">Pick up the <a href="https://darksouls.wiki.fextralife.com/Warrior+Set">Warrior Set</a> when you've killed it</li>
</ul>
</li>
<li data-id="playthrough_6_14">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 25-35 to get summoned</li>
<li data-id="playthrough_6_15">Talk to <a href="https://darksouls.wiki.fextralife.com/Domhnall+of+Zena">Domhnall of Zena</a>, learn the Joy gesture and buy any armor, arrows etc. that you need</li>
<li data-id="playthrough_6_16">Make sure you have some <a href="https://darksouls.wiki.fextralife.com/Purple+Moss+Clump">Purple Moss Clumps</a> and <a href="https://darksouls.wiki.fextralife.com/Blooming+Purple+Moss+Clump">Blooming Purple Moss Clumps</a>, if not run back to the <a href="https://darksouls.wiki.fextralife.com/Undead+Merchant+%28Female%29">Female Undead Merchant</a> and buy some</li>
<li data-id="playthrough_6_17">Open the door to <a href="https://darksouls.wiki.fextralife.com/Blighttown">Blighttown</a> and head down the ladder</li>
</ul>
<a name="Blighttown"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Blighttown">Blighttown</a> (Levels 30-40) <span id="playthrough_totals_7"></span></h3>
<ul>
<li data-id="playthrough_7_1">Take it slowly. Be wary of <a href="https://darksouls.wiki.fextralife.com/Blowdart+Sniper">Blowdart Snipers</a>!</li>
<li data-id="playthrough_7_2">Make a running jump to get the <a href="https://darksouls.wiki.fextralife.com/Iaito">Iaito</a>, aim for the post</li>
<li data-id="playthrough_7_3">Light the first bonfire</li>
<li data-id="playthrough_7_4">Go down below where the Iaito was to get the <a href="https://darksouls.wiki.fextralife.com/Blooming+Purple+Moss+Clump">Blooming Purple Moss Clumps</a> and walk over the swaying bridge to get the <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a> and then go back up to the bonfire</li>
<li data-id="playthrough_7_5">Continue on passed the bonfire and remember about the collapsing floor trap beside the soul!</li>
<li data-id="playthrough_7_6">Go up to get the <a href="https://darksouls.wiki.fextralife.com/Shadow+Set">Shadow Set</a></li>
<li data-id="playthrough_7_7">Move on to the next section remembering about the <a href="https://darksouls.wiki.fextralife.com/Blowdart+Sniper">Blowdart Sniper</a> perched on a high ledge</li>
<li data-id="playthrough_7_8">Go down the longest ladder in this section and get rid of the <a href="https://darksouls.wiki.fextralife.com/Blowdart+Sniper">Blowdart Sniper</a> and grab the <a href="https://darksouls.wiki.fextralife.com/Eagle+Shield">Eagle Shield</a></li>
<li data-id="playthrough_7_9">Go back up to snipe the <a href="https://darksouls.wiki.fextralife.com/Parasitic+Wall+Hugger">Parasitic Wall Hugger</a> with your bow and go down to get the <a href="https://darksouls.wiki.fextralife.com/Power+Within">Power Within</a> pyromancy spell</li>
<li data-id="playthrough_7_10">Head through the gap in the wall and down the ladder to the fog gate</li>
<li data-id="playthrough_7_11">Double back and fall down to grab the <a href="https://darksouls.wiki.fextralife.com/Whip">Whip</a></li>
<li data-id="playthrough_7_12">Fall down again and continue down the walkways towards the second bonfire, remembering about the <a href="https://darksouls.wiki.fextralife.com/Blowdart+Sniper">Blowdart Sniper</a> along the way</li>
<li data-id="playthrough_7_13">Get the <a href="https://darksouls.wiki.fextralife.com/Wanderer+Set">Wanderer Set</a> and the <a href="https://darksouls.wiki.fextralife.com/Falchion">Falchion</a> from beside the sniper</li>
<li data-id="playthrough_7_14">Put on the <a href="https://darksouls.wiki.fextralife.com/Rusted+Iron+Ring">Rusted Iron Ring</a> before you get to the bottom and make a run for the bonfire</li>
<li data-id="playthrough_7_15">Light the second bonfire and get the <a href="https://darksouls.wiki.fextralife.com/Dragon+Scale">Dragon Scale</a> from the chest in the bonfire tunnel</li>
<li data-id="playthrough_7_16">Run around the swamp to get the <a href="https://darksouls.wiki.fextralife.com/Pyromancer+Set">Pyromancer Set</a>, <a href="https://darksouls.wiki.fextralife.com/Poison+Mist">Poison Mist</a> pyromancy spell, the <a href="https://darksouls.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shards</a>, <a href="https://darksouls.wiki.fextralife.com/Server">Server</a> and souls</li>
<li data-id="playthrough_7_17">Take a quick detour up the branch towards <a href="https://darksouls.wiki.fextralife.com/The+Great+Hollow">The Great Hollow</a> to get the <a href="https://darksouls.wiki.fextralife.com/Plank+Shield">Plank Shield</a> on the corpse and the <a href="https://darksouls.wiki.fextralife.com/twin+Humanities">Twin Humanities</a> behind the illusory wall</li>
<li data-id="playthrough_7_18">Kill the boulder throwing <a href="https://darksouls.wiki.fextralife.com/Infested+Barbarian">Infested Barbarians</a> to get the <a href="https://darksouls.wiki.fextralife.com/Great+Club">Great Club</a></li>
<li data-id="playthrough_7_19">Optionally farm the <a href="https://darksouls.wiki.fextralife.com/Giant+Leech">Giant Leeches</a> for <a href="https://darksouls.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shards</a> and <a href="https://darksouls.wiki.fextralife.com/Green+Titanite+Shard">Green Titanite Shards</a></li>
<li data-id="playthrough_7_20">Go up on the wheel, go up two ladders and then run around the ledge to kill the <a href="https://darksouls.wiki.fextralife.com/Blowdart+Sniper">Blowdart Snipers</a></li>
<li data-id="playthrough_7_21">Slide down the ladder, kill the <a href="https://darksouls.wiki.fextralife.com/Enemies#Flaming%20Attack%20Dog">Dogs</a> and pick up the <a href="https://darksouls.wiki.fextralife.com/Fire+Keeper+Soul">Fire Keeper Soul</a></li>
<li data-id="playthrough_7_22">Return to the bonfire and if you're not human then reverse hollowing and kill <a href="https://darksouls.wiki.fextralife.com/Maneater+Mildred">Maneater Mildred</a> when she invades to get the <a href="https://darksouls.wiki.fextralife.com/Butcher+Knife">Butcher Knife</a> and some <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a></li>
<li data-id="playthrough_7_23">Kill <a href="https://darksouls.wiki.fextralife.com/Chaos+Witch+Quelaag">Chaos Witch Quelaag</a>
<ul>
<li data-id="playthrough_7_23_1">You can summon <a href="https://darksouls.wiki.fextralife.com/Maneater+Mildred">Maneater Mildred</a> from beside the fog gate if you killed her</li>
</ul>
</li>
<li data-id="playthrough_7_24">Ring the second bell</li>
<li data-id="playthrough_7_25">Go down and hit the illusory wall and talk to <a href="https://darksouls.wiki.fextralife.com/Eingyi">Eingyi</a>, answering Yes to his question so he moves to the side. Reload your game if you answered No and try again
<ul>
<li data-id="playthrough_7_25_1">If you want to buy the <a href="https://darksouls.wiki.fextralife.com/Poison+Mist">Poison Mist</a> or <a href="https://darksouls.wiki.fextralife.com/Toxic+Mist">Toxic Mist</a> pyromancy spells then you need to get infested with an <a href="https://darksouls.wiki.fextralife.com/Egg+Head">Egg Head</a> first</li>
<li data-id="playthrough_7_25_2">If your intelligence is 11 or above he will give you a <a href="https://darksouls.wiki.fextralife.com/Pyromancy+Flame">Pyromancy Flame</a></li>
<li data-id="playthrough_7_25_3">He will upgrade your <a href="https://darksouls.wiki.fextralife.com/Pyromancy+Flame">Pyromancy Flame</a></li>
</ul>
</li>
<li data-id="playthrough_7_26">Talk to <a href="https://darksouls.wiki.fextralife.com/The+Ancient+Spider+Queen">The Ancient Spider Queen</a> and optionally join the <a href="https://darksouls.wiki.fextralife.com/Chaos+Servant">Chaos Servant</a> covenant
<ul>
<li data-id="playthrough_7_26_1">If you joined the convenant then feed her 30 <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a> to open up the shortcut to <a href="https://darksouls.wiki.fextralife.com/Lost+Izalith">Lost Izalith</a></li>
</ul>
</li>
<li data-id="playthrough_7_27">Reinforce your <a href="https://darksouls.wiki.fextralife.com/Estus+Flask">Estus Flask</a></li>
<li data-id="playthrough_7_28">Light this bonfire and then return to the previous bonfire</li>
<li data-id="playthrough_7_29">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 25-40 to get summoned</li>
<li data-id="playthrough_7_30">Talk to <a href="https://darksouls.wiki.fextralife.com/Quelana+of+Izalith">Quelana of Izalith</a> if she is there to upgrade your <a href="https://darksouls.wiki.fextralife.com/Pyromancy+Flame">Pyromancy Flame</a> or buy some Pyromancy spells</li>
<li data-id="playthrough_7_31">Go up on the wheel again and at the top of first ladder cross <a href="http://www.reddit.com/r/darksouls/comments/zleys/one_of_the_hardest_bosses_in_the_game/">That Fucking Branch</a> to get the <a href="https://darksouls.wiki.fextralife.com/Crimson+Set">Crimson Set</a>, <a href="https://darksouls.wiki.fextralife.com/Tin+Banishment+Catalyst">Tin Banishment Catalyst</a> and <a href="https://darksouls.wiki.fextralife.com/Remedy">Remedy</a> sorcery</li>
<li data-id="playthrough_7_32">Keep going up to the top and get the <a href="https://darksouls.wiki.fextralife.com/Key+to+New+Londo+Ruins">Key to New Londo Ruins</a></li>
<li data-id="playthrough_7_33">Go out to the <a href="https://darksouls.wiki.fextralife.com/Valley+of+Drakes">Valley of Drakes</a> and kill the <a href="https://darksouls.wiki.fextralife.com/Undead+Dragon">Undead Dragon</a> with your bow or spells</li>
<li data-id="playthrough_7_34">Return to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a></li>
<li data-id="playthrough_7_35">If you didn't kill <a href="https://darksouls.wiki.fextralife.com/Knight+Lautrec">Lautrec</a> earlier pick up the <a href="https://darksouls.wiki.fextralife.com/Dingy+Set">Dingy Set</a> and <a href="https://darksouls.wiki.fextralife.com/Black+Eye+Orb">Black Eye Orb</a> from where <a href="https://darksouls.wiki.fextralife.com/Anastacia+of+Astora">Anastacia of Astora</a> was sitting</li>
<li data-id="playthrough_7_36">Talk to the various people now at the shrine
<ul>
<li data-id="playthrough_7_36_1"><a href="https://darksouls.wiki.fextralife.com/Crestfallen+Warrior">Crestfallen Warrior</a></li>
<li data-id="playthrough_7_36_2"><a href="https://darksouls.wiki.fextralife.com/Griggs+of+Vinheim">Griggs of Vinheim</a> to learn sorceries if your intelligence is 10 or over</li>
<li data-id="playthrough_7_36_3"><a href="https://darksouls.wiki.fextralife.com/Laurentius+of+the+Great+Swamp">Laurentius of the Great Swamp</a> to get a <a href="https://darksouls.wiki.fextralife.com/Pyromancy+Flame">Pyromancy Flame</a> if you need one and to upgrade it</li>
<li data-id="playthrough_7_36_4"><a href="https://darksouls.wiki.fextralife.com/Petrus+of+Thorolund">Petrus of Thorolund</a> to buy any miracles you need</li>
<li data-id="playthrough_7_36_5"><a href="https://darksouls.wiki.fextralife.com/Reah+of+Thorolund">Reah of Thorolund</a>, <a href="https://darksouls.wiki.fextralife.com/Vince+of+Thorolund">Vince of Thorolund</a> and <a href="https://darksouls.wiki.fextralife.com/Nico+of+Thorolund">Nico of Thorolund</a></li>
<li data-id="playthrough_7_36_6"><a href="https://darksouls.wiki.fextralife.com/Kingseeker+Frampt">Kingseeker Frampt</a> if you want to trade some titanite or items</li>
</ul>
</li>
</ul>
<a name="Darkroot_Basin"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Darkroot+Basin">Darkroot Basin</a> (Level 35+) <span id="playthrough_totals_8"></span></h3>
<ul>
<li data-id="playthrough_8_1">Head to the <a href="https://darksouls.wiki.fextralife.com/Undead+Parish">Undead Parish</a> and rest at the bonfire above Andre</li>
<li data-id="playthrough_8_2">Give the <a href="https://darksouls.wiki.fextralife.com/Large+Ember">Large Ember</a> to <a href="https://darksouls.wiki.fextralife.com/Blacksmith+Andrei">Andre the Blacksmith</a> and upgrade your weapons</li>
<li data-id="playthrough_8_3">Kill the <a href="https://darksouls.wiki.fextralife.com/Titanite+Demon">Titanite Demon</a> to get a <a href="https://darksouls.wiki.fextralife.com/Demon+Titanite">Demon Titanite</a></li>
<li data-id="playthrough_8_4">Head in to <a href="https://darksouls.wiki.fextralife.com/Darkroot+Garden">Darkroot Garden</a>, rest at the bonfire behind the illusory wall and open the door using the <a href="https://darksoulswiki.wikispaces.com/Crest+of+Artorias">Crest of Artorias</a> but do not go through it</li>
<li data-id="playthrough_8_5">Go down to <a href="https://darksouls.wiki.fextralife.com/Darkroot+Basin">Darkroot Basin</a></li>
<li data-id="playthrough_8_6">Head up to the tower and kill <a href="https://darksouls.wiki.fextralife.com/Havel+the+Rock">Havel the Rock</a> to get <a href="https://darksouls.wiki.fextralife.com/Havel%27s+Ring">Havel's Ring</a></li>
<li data-id="playthrough_8_7">Make sure you are wearing the <a href="https://darksouls.wiki.fextralife.com/Rusted+Iron+Ring">Rusted Iron Ring</a></li>
<li data-id="playthrough_8_8">Kill the <a href="https://darksouls.wiki.fextralife.com/Crystal+Golem">Crystal Golems</a> and then the <a href="https://darksouls.wiki.fextralife.com/Hydra">Hydra</a> to get the <a href="https://darksouls.wiki.fextralife.com/Dragon+Scale">Dragon Scale</a> and <a href="https://darksouls.wiki.fextralife.com/Dusk+Crown+Ring">Dusk Crown Ring</a></li>
<li data-id="playthrough_8_9">Pick up the <a href="https://darksouls.wiki.fextralife.com/Knight+Set">Knight Set</a></li>
<li data-id="playthrough_8_10">Kill the <a href="https://darksouls.wiki.fextralife.com/Golden+Crystal+Golem">Golden Crystal Golem</a>, reloading your game if it's not there</li>
<li data-id="playthrough_8_11">Talk to <a href="https://darksouls.wiki.fextralife.com/Dusk+of+Oolacile">Dusk of Oolacile</a>, answering Yes to her question</li>
<li data-id="playthrough_8_12">Go back to where the Hydra fight happened and summon <a href="https://darksouls.wiki.fextralife.com/Dusk+of+Oolacile">Dusk of Oolacile</a>, learn her Proper Bow gesture and buy any sorceries you need or the catalyst</li>
<li data-id="playthrough_8_13">Go back to where you killed the <a href="https://darksouls.wiki.fextralife.com/Golden+Crystal+Golem">Golden Crystal Golem</a> and pick up the <a href="https://darksouls.wiki.fextralife.com/Antiquated+Set">Antiquated Set</a></li>
<li data-id="playthrough_8_14">Climb up the ladder beside the waterfall and then climb the second ladder to the bridge</li>
<li data-id="playthrough_8_15">Head across the bridge in to <a href="https://darksouls.wiki.fextralife.com/Darkroot+Garden">Darkroot Garden</a></li>
</ul>
<a name="Darkroot_Garden"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Darkroot+Garden">Darkroot Garden</a> (Level 20+) <span id="playthrough_totals_9"></span></h3>
<ul>
<li data-id="playthrough_9_1">Kill the three <a href="https://darksouls.wiki.fextralife.com/Giant+Cat">Giant Cats</a></li>
<li data-id="playthrough_9_2">Draw out the <a href="https://darksouls.wiki.fextralife.com/Mushroom+People">Mushroom People</a> and get the <a href="https://darksouls.wiki.fextralife.com/Enchanted+Ember">Enchanted Ember</a> from the chest</li>
<li data-id="playthrough_9_3">Head deeper in to the forest to the broken tower beside the bridge and get the <a href="https://darksouls.wiki.fextralife.com/Stone+Knight+Set">Stone Knight Set</a> from the chest behind the tower</li>
<li data-id="playthrough_9_4">Go across the bridge and talk to <a href="https://darksouls.wiki.fextralife.com/Alvina+of+the+Darkroot+Wood">Alvina of the Darkroot Wood</a> and optionally join the <a href="https://darksouls.wiki.fextralife.com/Forest+Hunter">Forest Hunter</a> covenant to get the <a href="https://darksouls.wiki.fextralife.com/Cat+Covenant+Ring">Cat Covenant Ring</a></li>
<li data-id="playthrough_9_5">If you joined the covenant talk to <a href="https://darksouls.wiki.fextralife.com/Shiva+of+the+East">Shiva of the East</a> so that you can buy stuff from him later</li>
<li data-id="playthrough_9_6">If you didn't join the covenant
<ul>
<li data-id="playthrough_9_6_1">Kill <a href="https://darksouls.wiki.fextralife.com/Pharis">Pharis</a> to get the <a href="https://darksouls.wiki.fextralife.com/Black+Bow+of+Pharis">Black Bow of Pharis</a> and <a href="https://darksouls.wiki.fextralife.com/Pharis%27+Hat">Pharis' Hat</a></li>
<li data-id="playthrough_9_6_2">Clear out the rest of the enemies in this section of the forest</li>
</ul>
</li>
<li data-id="playthrough_9_7">Go to the lower section of the forest and kill all the <a href="https://darksouls.wiki.fextralife.com/Ents">Ents</a> and pick up the <a href="https://darksouls.wiki.fextralife.com/Eastern+Set">Eastern Set</a></li>
<li data-id="playthrough_9_8">Return to the bonfire through the door you opened earlier with the <a href="https://darksoulswiki.wikispaces.com/Crest+of+Artorias">Crest of Artorias</a></li>
<li data-id="playthrough_9_9">Go through the gap in the wall to the right of the door and head down, remembering that when you pick up the soul on the right it will spawn three <a href="https://darksouls.wiki.fextralife.com/Ents">Ents</a></li>
<li data-id="playthrough_9_10">After the fog gate kill the tree on the right to open up a passage to a secret area</li>
<li data-id="playthrough_9_11">Kill the <a href="https://darksouls.wiki.fextralife.com/Great+Stone+Knight">Great Stone Knight</a> in the main area first, then the one in the tower and pick up the <a href="https://darksouls.wiki.fextralife.com/Wolf+Ring">Wolf Ring</a></li>
<li data-id="playthrough_9_12">Head back out of the secret area and kill the other <a href="https://darksouls.wiki.fextralife.com/Great+Stone+Knight">Great Stone Knights</a> and <a href="https://darksouls.wiki.fextralife.com/Ents">Ents</a> that spawn</li>
<li data-id="playthrough_9_13">Pick up the <a href="https://darksouls.wiki.fextralife.com/Elite+Knight+Set">Elite Knight Set</a></li>
<li data-id="playthrough_9_14">Pick up the <a href="https://darksouls.wiki.fextralife.com/Partizan">Partizan</a> from the alcove on the left wall</li>
<li data-id="playthrough_9_15">Kill the <a href="https://darksouls.wiki.fextralife.com/Moonlight+Butterfly">Moonlight Butterfly</a>
<ul>
<li data-id="playthrough_9_15_1">You can summon <a href="https://darksouls.wiki.fextralife.com/Witch+Beatrice">Witch Beatrice</a> at the bottom of the tower leading to the boss, her summoning sign is hidden under a bush</li>
<li data-id="playthrough_9_15_2">After the fight head up the tower to get the <a href="https://darksouls.wiki.fextralife.com/Watchtower+Basement+Key">Watchtower Basement Key</a>, <a href="https://darksouls.wiki.fextralife.com/Divine+Ember">Divine Ember</a> and <a href="https://darksouls.wiki.fextralife.com/Homeward+Bone">Homeward Bone</a></li>
</ul>
</li>
<li data-id="playthrough_9_16">Return to the bonfire</li>
<li data-id="playthrough_9_17">Go back through the forest and kill <a href="https://darksouls.wiki.fextralife.com/Great+Grey+Wolf+Sif">Great Grey Wolf Sif</a> to get the <a href="https://darksouls.wiki.fextralife.com/Covenant+of+Artorias">Covenant of Artorias</a> and remember to pick up the <a href="https://darksouls.wiki.fextralife.com/Hornet+Ring">Hornet Ring</a></li>
<li data-id="playthrough_9_18">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 15-25 for the Butterfly and 20-50 for Sif, though summons for both are rare</li>
<li data-id="playthrough_9_19">Return to <a href="https://darksouls.wiki.fextralife.com/Blacksmith+Andrei">Andre</a> and give him the <a href="https://darksouls.wiki.fextralife.com/Divine+Ember">Divine Ember</a> and upgrade your weapon if needed</li>
<li data-id="playthrough_9_20">Return to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a></li>
<li data-id="playthrough_9_21"><a href="https://darksouls.wiki.fextralife.com/Reah+of+Thorolund">Reah</a> and her companions should be gone. If <a href="https://darksouls.wiki.fextralife.com/Petrus+of+Thorolund">Petrus</a> is there talk to him and then kill him now if you don't want him to kill Reah later. If he's not then come back later</li>
<li data-id="playthrough_9_22">Make a quick run down to <a href="https://darksouls.wiki.fextralife.com/New+Londo+Ruins">New Londo Ruins</a>, give the <a href="https://darksouls.wiki.fextralife.com/Enchanted+Ember">Enchanted Ember</a> to <a href="https://darksouls.wiki.fextralife.com/Blacksmith+Rickert+of+Vinheim">Blacksmith Rickert of Vinheim</a> and upgrade your weapons if needed</li>
<li data-id="playthrough_9_23">If you're a member of the <a href="https://darksouls.wiki.fextralife.com/Forest+Hunter">Forest Hunter</a> covenant and talked to <a href="https://darksouls.wiki.fextralife.com/Shiva+of+the+East">Shiva</a> earlier then optionally do a quick run to <a href="https://darksouls.wiki.fextralife.com/Blighttown">Blighttown</a> to talk to him
<ul>
<li data-id="playthrough_9_23_1">Learn the Look Skyward gesture</li>
<li data-id="playthrough_9_23_2">Buy weapons or the <a href="https://darksouls.wiki.fextralife.com/East+Wood+Grain+Ring">East Wood Grain Ring</a> from him</li>
<li data-id="playthrough_9_23_3">If you've bought all you need then you can now kill him and his bodyguard to get their gear but you will be kicked out of the covenant</li>
<li data-id="playthrough_9_23_4">If you fail to kill him then they will return to the forest where you first met them and you can kill them there</li>
</ul>
</li>
<li data-id="playthrough_9_24">Head back to the <a href="https://darksouls.wiki.fextralife.com/Undead+Parish">Undead Parish</a> and rest at the bonfire above Andre</li>
</ul>
<a name="Sens_Fortress"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Sen%27s+Fortress">Sen's Fortress</a> (Level 40+) <span id="playthrough_totals_10"></span></h3>
<ul>
<li data-id="playthrough_10_1">Cross the bridge to <a href="https://darksouls.wiki.fextralife.com/Sen%27s+Fortress">Sen's Fortress</a></li>
<li data-id="playthrough_10_2">Cross the first swinging blade walkway, remembering about the <a href="https://darksouls.wiki.fextralife.com/Man-Serpent#Snake-Headed%20Mage">Serpent Mage</a> trying to knock you off</li>
<li data-id="playthrough_10_3">Take out the <a href="https://darksouls.wiki.fextralife.com/Man-Serpent#Snake-Headed%20Mage">Serpent Mage</a> with your bow before crossing the second walkway and remember about the arrow trap at the end</li>
<li data-id="playthrough_10_4">Get the <a href="https://darksouls.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shards</a> from the chest</li>
<li data-id="playthrough_10_5">Cross the next walkway and remember about the boulder and the <a href="https://darksouls.wiki.fextralife.com/Man-Serpent#Snake-Headed%20Guard">Serpent Soldier</a> at the end</li>
<li data-id="playthrough_10_6">Run halfway to the fog gate, wait for a boulder and then run to the top and get the <a href="https://darksouls.wiki.fextralife.com/Ring+Of+Steel+Protection">Ring Of Steel Protection</a> from the chest</li>
<li data-id="playthrough_10_7">Go back to the fog gate and remember about the reverse arrow trap in the next room</li>
<li data-id="playthrough_10_8">Wait for a boulder and then run up and jump off to the left just before the broken pillar on to a wooden platform</li>
<li data-id="playthrough_10_9">Pick up the <a href="https://darksouls.wiki.fextralife.com/Black+Sorcerer+Set">Black Sorcerer Set</a> and <a href="https://darksouls.wiki.fextralife.com/Hush">Hush</a> sorcery</li>
<li data-id="playthrough_10_10">Run up to the boulder switch, turn it so that it breaks the wall, then turn it so that it starts filling the hole</li>
<li data-id="playthrough_10_11">Get the <a href="http://darksouls.wiki.fextralife.com/Shotel">Shotel</a> and talk to <a href="https://darksouls.wiki.fextralife.com/Siegmeyer+of+Catarina">Siegmeyer of Catarina</a></li>
<li data-id="playthrough_10_12">Free <a href="https://darksouls.wiki.fextralife.com/Big+Hat+Logan">Big Hat Logan</a></li>
<li data-id="playthrough_10_13">Return to the boulder switch and point it outside</li>
<li data-id="playthrough_10_14">Run down to the hole the boulder fills, get the <a href="https://darksouls.wiki.fextralife.com/Covetous+Gold+Serpent+Ring">Covetous Gold Serpent Ring</a> and use a <a href="https://darksouls.wiki.fextralife.com/Lloyd%27s+Talisman">Lloyd's Talisman</a> on the mimic chest to get the <a href="https://darksouls.wiki.fextralife.com/Lightning+Spear">Lightning Spear</a></li>
<li data-id="playthrough_10_15">Use the elevator to get back to the boulder switch room and continue through the corridor, remembering about the multi arrow trap</li>
<li data-id="playthrough_10_16">Cross the next swinging blade walkway, kill the <a href="https://darksouls.wiki.fextralife.com/Man-Serpent#Snake-Headed%20Guard">Serpent Soldiers</a> and get the <a href="https://darksouls.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shards</a></li>
<li data-id="playthrough_10_17">Cross the last swinging blade walkway, remembering about the <a href="https://darksouls.wiki.fextralife.com/Man-Serpent#Snake-Headed%20Mage">Serpent Mage</a> at the start and the arrow traps at the end</li>
<li data-id="playthrough_10_18">Go through the fog gate and wait for a gap in the fire and light the first bonfire</li>
<li data-id="playthrough_10_19">Kill the fire bomb giant</li>
<li data-id="playthrough_10_20">Jump across the gap in the walkway and buy useful stuff from the <a href="https://darksouls.wiki.fextralife.com/Crestfallen+Merchant">Crestfallen Merchant</a>
<ul>
<li data-id="playthrough_10_20_1"><a href="https://darksouls.wiki.fextralife.com/Titanite+Shard">Titanite Shards</a> @ 1,000 souls each</li>
<li data-id="playthrough_10_20_2"><a href="https://darksouls.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shards</a> @ 4,000 souls each</li>
<li data-id="playthrough_10_20_3"><a href="https://darksouls.wiki.fextralife.com/Green+Titanite+Shard">Green Titanite Shard</a> @ 5,000 souls each</li>
<li data-id="playthrough_10_20_4"><a href="https://darksouls.wiki.fextralife.com/Thunder+Stoneplate+Ring">Thunder Stoneplate Ring</a> @ 15,000 souls</li>
<li data-id="playthrough_10_20_5"><a href="https://darksouls.wiki.fextralife.com/Spell+Stoneplate+Ring">Spell Stoneplate Ring</a> @ 15,00 souls</li>
</ul>
</li>
<li data-id="playthrough_10_21">Go down the stairs below the merchant and get the <a href="https://darksouls.wiki.fextralife.com/Cage+Key">Cage Key</a></li>
<li data-id="playthrough_10_22">Get the <a href="https://darksouls.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shards</a>, <a href="https://darksouls.wiki.fextralife.com/Sniper+Crossbow">Sniper Crossbow</a>, bolts and <a href="https://darksouls.wiki.fextralife.com/Flame+Stoneplate+Ring">Flame Stoneplate Ring</a> from around the fortress</li>
<li data-id="playthrough_10_23">Kill <a href="https://darksouls.wiki.fextralife.com/Ricard+the+Archer">Ricard the Archer</a> to get his <a href="https://darksouls.wiki.fextralife.com/Ricard%27s+Rapier">Rapier</a> and get the <a href="https://darksouls.wiki.fextralife.com/Divine+Blessing">Divine Blessing</a> and <a href="https://darksouls.wiki.fextralife.com/Rare+Ring+of+Sacrifice">Rare Ring of Sacrifice</a> in the tower above him</li>
<li data-id="playthrough_10_24">Open the cage shortcut using the <a href="https://darksouls.wiki.fextralife.com/Cage+Key">Cage Key</a> and quickly run in and out of the cage to send it down</li>
<li data-id="playthrough_10_25">Kill the <a href="https://darksouls.wiki.fextralife.com/Iron+Golem">Iron Golem</a> to open up the portal to <a href="https://darksouls.wiki.fextralife.com/Anor+Londo">Anor Londo</a>
<ul>
<li data-id="playthrough_10_25_1">You can summon <a href="https://darksouls.wiki.fextralife.com/Iron+Knight+Tarkus">Iron Knight Tarkus</a> in the tower across from the fog gate</li>
</ul>
</li>
<li data-id="playthrough_10_26">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 40-50 to get summoned</li>
<li data-id="playthrough_10_27">Put on the <a href="https://darksouls.wiki.fextralife.com/Rusted+Iron+Ring">Rusted Iron Ring</a>, go down in the cage elevator and drop down on to the ledge with the serpents and kill them</li>
<li data-id="playthrough_10_28">Kill the two <a href="https://darksouls.wiki.fextralife.com/Titanite+Demon">Titanite Demons</a> in the first area to get <a href="https://darksouls.wiki.fextralife.com/Demon+Titanite">Demon Titanites</a> and the <a href="https://darksouls.wiki.fextralife.com/Scythe">Scythe</a></li>
<li data-id="playthrough_10_29">Kill the other two <a href="https://darksouls.wiki.fextralife.com/Titanite+Demon">Titanite Demons</a> to get more <a href="https://darksouls.wiki.fextralife.com/Demon+Titanite">Demon Titanites</a></li>
<li data-id="playthrough_10_30">Climb the ladder out of the pit, hit the illusory wall, climb the second ladder and kill the giant that opened the gate to get a <a href="https://darksouls.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a></li>
<li data-id="playthrough_10_31">Return to the wooden platform you jump on to during the boulder run and drop down the other side to get the <a href="https://darksouls.wiki.fextralife.com/Slumbering+Dragoncrest+Ring">Slumbering Dragoncrest Ring</a></li>
<li data-id="playthrough_10_32">Return to the bonfire and go up and use the portal to <a href="https://darksouls.wiki.fextralife.com/Anor+Londo">Anor Londo</a></li>
</ul>
<a name="Anor_Londo"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Anor+Londo">Anor Londo</a> (Level 45+) <span id="playthrough_totals_11"></span></h3>
<ul>
<li data-id="playthrough_11_1">Run passed the <a href="https://darksouls.wiki.fextralife.com/Sentinel">Sentinels</a>, light the bonfire, talk to <a href="https://darksouls.wiki.fextralife.com/Darkmoon+Knightess">Darkmoon Knightess</a> and reinforce your <a href="https://darksouls.wiki.fextralife.com/Estus+Flask">Estus Flask</a> if you need to</li>
<li data-id="playthrough_11_2">Kill the two <a href="https://darksouls.wiki.fextralife.com/Sentinel">Sentinels</a> you ran passed and open the chest to get a <a href="https://darksouls.wiki.fextralife.com/Demon+Titanite">Demon Titanite</a></li>
<li data-id="playthrough_11_3">Cross the courtyard and kill the other two, using a <a href="https://darksouls.wiki.fextralife.com/Lloyd%27s+Talisman">Lloyd's Talisman</a> on the right mimic chest to get the <a href="https://darksouls.wiki.fextralife.com/Halberd">Crystal Halberd</a> and opening the left chest to get a <a href="https://darksouls.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a></li>
<li data-id="playthrough_11_4">Go down the elevator and kill the <a href="https://darksouls.wiki.fextralife.com/Gargoyle+%28Lightning%29">Lightning Gargoyle</a></li>
<li data-id="playthrough_11_5">Get the <a href="https://darksouls.wiki.fextralife.com/Demon+Titanite">Demon Titanite</a> from the chest below and walk up the beams in to the chapel</li>
<li data-id="playthrough_11_6">Walk along the rafters and remember to hit the chain of the chandelier</li>
<li data-id="playthrough_11_7">Turn the bridge lever once in an anti-clockwise direction to lower the platform and kill the second <a href="https://darksouls.wiki.fextralife.com/Gargoyle+%28Lightning%29">Lightning Gargoyle</a></li>
<li data-id="playthrough_11_8">Go up the giant staircase and kill the <a href="https://darksouls.wiki.fextralife.com/Sentinel">Sentinels</a> and <a href="https://darksouls.wiki.fextralife.com/Bat+Wing+Demon">Bat Wing Demons</a></li>
<li data-id="playthrough_11_9">Go up the buttress and kill the right <a href="https://darksouls.wiki.fextralife.com/Silver+Knight">Silver Knight Archer</a>, remembering not to use your shield but dodge towards him instead until he starts meleeing</li>
<li data-id="playthrough_11_10">If you have the balls go and kill the second archer to get the <a href="https://darksouls.wiki.fextralife.com/Soul+of+a+Hero">Soul of a Hero</a></li>
<li data-id="playthrough_11_11">Drop down on to the platform after the first archer and enter the left door to light the bonfire. Congratulate yourself!</li>
<li data-id="playthrough_11_12">Talk to <a href="https://darksouls.wiki.fextralife.com/Solaire+of+Astora">Solaire</a></li>
<li data-id="playthrough_11_13">Cross the hallway and get the <a href="https://darksouls.wiki.fextralife.com/Sunlight+Medal">Sunlight Medals</a> from the chest</li>
<li data-id="playthrough_11_14">Go down the corridor and through the left door and hit the illusory wall</li>
<li data-id="playthrough_11_15">Go down in to the basement and open the four chests that sit together to get <a href="https://darksouls.wiki.fextralife.com/Havel%27s+Set">Havel's Set</a>, <a href="https://darksouls.wiki.fextralife.com/Havel%27s+Greatshield">Havel's Greatshield</a> and the <a href="https://darksouls.wiki.fextralife.com/Dragon+Tooth">Dragon Tooth</a></li>
<li data-id="playthrough_11_16">Use a <a href="https://darksouls.wiki.fextralife.com/Lloyd%27s+Talisman">Lloyd's Talisman</a> on the single mimic chest to get the <a href="https://darksouls.wiki.fextralife.com/Club">Occult Club</a></li>
<li data-id="playthrough_11_17">Go up the stairs and use <a href="https://darksouls.wiki.fextralife.com/Lloyd%27s+Talisman">Lloyd's Talismans</a> on the two mimic chests to get the <a href="https://darksouls.wiki.fextralife.com/Silver+Coin">Silver Coins</a> and the <a href="https://darksouls.wiki.fextralife.com/Gold+Coin">Gold Coin</a></li>
<li data-id="playthrough_11_18">Use ranged attacks to kill the <a href="https://darksouls.wiki.fextralife.com/Titanite+Demon">Titanite Demon</a> from above</li>
<li data-id="playthrough_11_19">Kill the <a href="https://darksouls.wiki.fextralife.com/Silver+Knight">Silver Knight Archer</a> at the end of the corridor</li>
<li data-id="playthrough_11_20">Coming from the dead archer go through the right door and up to the roof, remembering about the <a href="https://darksouls.wiki.fextralife.com/Silver+Knight">Silver Knight</a> behind the door</li>
<li data-id="playthrough_11_21">Kill the archer on the right but then head down the stairs on the left to talk to <a href="https://darksouls.wiki.fextralife.com/Siegmeyer+of+Catarina">Siegmeyer</a></li>
<li data-id="playthrough_11_22">Bait each of the four <a href="https://darksouls.wiki.fextralife.com/Silver+Knight">Silver Knights</a> one at a time from the room up on to the roof to kill them</li>
<li data-id="playthrough_11_23">Talk to <a href="https://darksouls.wiki.fextralife.com/Siegmeyer+of+Catarina">Siegmeyer</a> again to get the <a href="https://darksouls.wiki.fextralife.com/Tiny+Being%27s+Ring">Tiny Being's Ring</a></li>
<li data-id="playthrough_11_24">Open the chest in the room to get the two <a href="https://darksouls.wiki.fextralife.com/Demon+Titanite">Demon Titanites</a></li>
<li data-id="playthrough_11_25">Unlock the door, go back up the roof and go down the stairs where the archer was</li>
<li data-id="playthrough_11_26">Go across the corridor and kill the two <a href="https://darksouls.wiki.fextralife.com/Silver+Knight">Silver Knights</a>, get the <a href="https://darksouls.wiki.fextralife.com/Silver+Knight+Set">Silver Knight Set</a> from the two chests and unlock the shortcut back to the bonfire</li>
<li data-id="playthrough_11_27">Go back upstairs and keep going up to top of the large hall, go around the walkway and down to the <a href="https://darksouls.wiki.fextralife.com/Giant+Blacksmith">Giant Blacksmith</a></li>
<li data-id="playthrough_11_28">Get the <a href="https://darksouls.wiki.fextralife.com/Hawk+Ring">Hawk Ring</a> from the chest behind him</li>
<li data-id="playthrough_11_29">Talk to him and buy useful stuff from him
<ul>
<li data-id="playthrough_11_29_1"><a href="https://darksouls.wiki.fextralife.com/Titanite+Shard">Titanite Shards</a> @ 800 souls each</li>
<li data-id="playthrough_11_29_2"><a href="https://darksouls.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shards</a> @ 3,800 souls each</li>
<li data-id="playthrough_11_29_3"><a href="https://darksouls.wiki.fextralife.com/Green+Titanite+Shard">Green Titanite Shard</a> @ 4,800 souls each</li>
<li data-id="playthrough_11_29_4"><a href="https://darksouls.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a> @ 8,000 souls each</li>
<li data-id="playthrough_11_29_5">Create any <a href="https://darksouls.wiki.fextralife.com/Upgrades#Boss Souls: Upgrade Usage">Boss Soul Weapons</a> you need</li>
<li data-id="playthrough_11_29_6">Create any lightning weapons you need</li>
<li data-id="playthrough_11_29_7">Upgrade your other weapons</li>
</ul>
</li>
<li data-id="playthrough_11_30">Open the gate leading back to the giant staircase and pick up the <a href="https://darksouls.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a></li>
<li data-id="playthrough_11_31">Go back upstairs and drop out the broken window to get the <a href="https://darksouls.wiki.fextralife.com/Dragonslayer+Greatbow">Dragonslayer Greatbow</a></li>
<li data-id="playthrough_11_32">Go back to the large hall and open the large main door</li>
<li data-id="playthrough_11_33">Return to the bonfire if you need to</li>
<li data-id="playthrough_11_34">Kill <a href="https://darksouls.wiki.fextralife.com/Ornstein+and+Smough">Ornstein and Smough</a>
<ul>
<li data-id="playthrough_11_34_1">You can summon <a href="https://darksouls.wiki.fextralife.com/Solaire+of+Astora">Solaire</a> from the steps near the archer in the large hall</li>
<li data-id="playthrough_11_34_2">The best place to summon other players for this fight is the second bonfire in the room after the archers</li>
<li data-id="playthrough_11_34_3">If you want to get <a href="https://darksouls.wiki.fextralife.com/Smough%27s+Set">Smough's Set</a> from <a href="https://darksouls.wiki.fextralife.com/Domnhall+of+Zena">Domhnhall of Zena</a> or want to make <a href="https://darksouls.wiki.fextralife.com/Smough%27s+Hammer">Smough's Hammer</a> then kill Ornstein first</li>
<li data-id="playthrough_11_34_4">If you want to get <a href="https://darksouls.wiki.fextralife.com/Ornstein%27s+Set">Ornstein's Set</a> from <a href="https://darksouls.wiki.fextralife.com/Domnhall+of+Zena">Domhnhall of Zena</a> or want the <a href="https://darksouls.wiki.fextralife.com/Leo+Ring">Leo Ring</a> or want to make the <a href="https://darksouls.wiki.fextralife.com/Dragon-Slayer+Spear">Dragon-Slayer Spear</a> then kill Smough first</li>
</ul>
</li>
<li data-id="playthrough_11_35">Go up one the screw elevators and light the bonfire</li>
<li data-id="playthrough_11_36">Talk to <a href="https://darksouls.wiki.fextralife.com/Gwynevere">Princess Gwynevere</a>, get the <a href="https://darksouls.wiki.fextralife.com/Lordvessel">Lordvessel</a> and optionally join the <a href="https://darksouls.wiki.fextralife.com/Princess+Guard">Princess Guard</a> covenant</li>
<li data-id="playthrough_11_37">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 40-50 to get summoned</li>
<li data-id="playthrough_11_41">If you didn't kill <a href="https://darksouls.wiki.fextralife.com/Knight+Lautrec">Lautrec</a> earlier then return to the large hall and use the the <a href="https://darksouls.wiki.fextralife.com/Black+Eye+Orb">Black Eye Orb</a> to invade his world and kill him
<ul>
<li data-id="playthrough_11_41_1">You will get the <a href="https://darksouls.wiki.fextralife.com/Anastacia+of+Astora">Ring of Favor and Protection</a>, <a href="https://darksouls.wiki.fextralife.com/Anastacia+of+Astora">Anastacia of Astora</a>'s soul, a <a href="https://darksouls.wiki.fextralife.com/Souvenir+of+Reprisal">Souvenir of Reprisal</a> and five <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a></li>
<li data-id="playthrough_11_41_2">When you return to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a> you can revive <a href="https://darksouls.wiki.fextralife.com/Anastacia+of+Astora">Anastacia of Astora</a> with her soul or you can choose to use it to reinforce your <a href="https://darksouls.wiki.fextralife.com/Estus+Flask">Estus Flask</a></li>
<li data-id="playthrough_11_41_3">After killing him you can get the <a href="https://darksouls.wiki.fextralife.com/Favor+set">Favor Set</a> from the balcony above where you fought <a href="https://darksouls.wiki.fextralife.com/Ornstein+and+Smough">Ornstein and Smough</a></li>
</ul>
</li>
<li data-id="playthrough_11_38">Now that we can fast travel, warp back to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a></li>
<li data-id="playthrough_11_39">Talk to the various people now at the shrine
<ul>
<li data-id="playthrough_11_39_1"><a href="https://darksouls.wiki.fextralife.com/Griggs+of+Vinheim">Griggs of Vinheim</a> and the recently freed <a href="https://darksouls.wiki.fextralife.com/Big+Hat+Logan">Big Hat Logan</a></li>
<li data-id="playthrough_11_39_2">Talk to <a href="https://darksouls.wiki.fextralife.com/Siegmeyer+of+Catarina">Siegmeyer</a> and answer Yes to his question to get the <a href="https://darksouls.wiki.fextralife.com/Emit+Force">Emit Force</a> miracle</li>
<li data-id="playthrough_11_39_3">Do not speak to <a href="https://darksouls.wiki.fextralife.com/Kingseeker+Frampt">Frampt</a> if you want to join the <a href="https://darksouls.wiki.fextralife.com/Darkwraith">Darkwraith</a> covenant later</li>
<li data-id="playthrough_11_39_4">Talk to <a href="https://darksouls.wiki.fextralife.com/Domhnall+of+Zena">Domhnall of Zena</a> under the aqueduct to buy any of the boss armor you need</li>
</ul>
</li>
<li data-id="playthrough_11_40">Take a flight back to <a href="https://darksouls.wiki.fextralife.com/Northern+Undead+Asylum">Undead Asylum</a></li>
</ul>
<a name="Undead_Asylum_Revisited"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Northern+Undead+Asylum">Undead Asylum Revisited</a> (Levels 30-40) <span id="playthrough_totals_12"></span></h3>
<ul>
<li data-id="playthrough_12_1">Remember about the collapsing floor!</li>
<li data-id="playthrough_12_2">Kill the <a href="https://darksouls.wiki.fextralife.com/Stray+Demon">Stray Demon</a> to get a <a href="https://darksouls.wiki.fextralife.com/Titanite+Slab">Titanite Slab</a></li>
<li data-id="playthrough_12_3">Kill the <a href="https://darksouls.wiki.fextralife.com/The+Black+Knight">Black Knight</a> near your starting cell to get a <a href="https://darksouls.wiki.fextralife.com/Red+Titanite+Chunk">Red Titanite Chunk</a> and pick up the <a href="https://darksouls.wiki.fextralife.com/Peculiar+Doll">Peculiar Doll</a></li>
<li data-id="playthrough_12_4">Kill the <a href="https://darksouls.wiki.fextralife.com/The+Black+Knight">Black Knight</a> near where you picked up your first weapon to get another <a href="https://darksouls.wiki.fextralife.com/Red+Titanite+Chunk">Red Titanite Chunk</a></li>
<li data-id="playthrough_12_5">Kill the now hollow Elite Knight to get the <a href="https://darksouls.wiki.fextralife.com/Crest+Shield">Crest Shield</a></li>
<li data-id="playthrough_12_6">Warp back to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a></li>
</ul>
<a name="New_Londo_Ruins"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/New+Londo+Ruins">New Londo Ruins</a> (Levels 60+) <span id="playthrough_totals_13"></span></h3>
<ul>
<li data-id="playthrough_13_1">Run up to the <a href="https://darksouls.wiki.fextralife.com/Undead+Merchant+%28Female%29">Female Undead Merchant</a> in the aqueduct and buy all the <a href="https://darksouls.wiki.fextralife.com/Transient+Curse">Transient Curses</a> she has and equip them</li>
<li data-id="playthrough_13_2">Go down to <a href="https://darksouls.wiki.fextralife.com/New+Londo+Ruins">New Londo Ruins</a></li>
<li data-id="playthrough_13_3">On your way to the wooden bridges get ready to be attacked by the <a href="https://darksouls.wiki.fextralife.com/Crestfallen+Warrior">Crestfallen Warrior</a></li>
<li data-id="playthrough_13_4">Use one of your <a href="https://darksouls.wiki.fextralife.com/Transient+Curse">Transient Curses</a> and keep them visible on your HUD so that you know when it expires</li>
<li data-id="playthrough_13_5">Make your way through the first part of the ruins picking up the <a href="https://darksouls.wiki.fextralife.com/Parrying+Dagger">Parrying Dagger</a> and killing the <a href="https://darksouls.wiki.fextralife.com/Banshee">Banshee</a> to get the two <a href="https://darksouls.wiki.fextralife.com/Transient+Curse">Transient Curses</a></li>
<li data-id="playthrough_13_6">Go through the fog gate</li>
<li data-id="playthrough_13_7">Kick the ladder to relase it and go down and kill the two <a href="https://darksouls.wiki.fextralife.com/Ghost">Ghosts</a> to stop them attacking you from below</li>
<li data-id="playthrough_13_8">Approach the house and kill the <a href="https://darksouls.wiki.fextralife.com/Ghost">Ghosts</a> that come out of the water before entering house</li>
<li data-id="playthrough_13_9">Go up the ladder in the fireplace and talk to <a href="https://darksouls.wiki.fextralife.com/Ingward">Ingward</a> to get the <a href="https://darksouls.wiki.fextralife.com/Key+to+the+Seal">Key to the Seal</a> and buy more <a href="https://darksouls.wiki.fextralife.com/Transient+Curse">Transient Curses</a> if you need them</li>
<li data-id="playthrough_13_10">Go downstairs and get the <a href="https://darksouls.wiki.fextralife.com/Cursebite+Ring">Cursebite Ring</a> from the ledge</li>
<li data-id="playthrough_13_11">Go out the other door and get <a href="https://darksouls.wiki.fextralife.com/Green+Titanite+Shard">Green Titanite Shard</a>, <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a> and jump to the roof to get the <a href="https://darksouls.wiki.fextralife.com/Rare+Ring+of+Sacrifice">Rare Ring of Sacrifice</a></li>
<li data-id="playthrough_13_12">Head to the tower, open the door with the <a href="https://darksouls.wiki.fextralife.com/Key+to+the+Seal">Key to the Seal</a> and push the lever clockwise to drain the water</li>
<li data-id="playthrough_13_13">Go upstairs in the tower and get the <a href="https://darksouls.wiki.fextralife.com/Composite+Bow">Composite Bow</a> and large arrows</li>
<li data-id="playthrough_13_14">Pull the lever and go down the elevator to the <a href="https://darksouls.wiki.fextralife.com/Valley+of+Drakes">Valley of Drakes</a> entrance</li>
<li data-id="playthrough_13_15">Kill the <a href="https://darksouls.wiki.fextralife.com/Drake">Drakes</a>, get the <a href="https://darksouls.wiki.fextralife.com/Brigand+Armor+Set">Brigand Armor Set</a> and <a href="https://darksouls.wiki.fextralife.com/Spider+Shield">Spider Shield</a>, go up the ladder to get the <a href="https://darksouls.wiki.fextralife.com/Red+Tearstone+Ring">Red Tearstone Ring</a> and grab the humanity in the cave</li>
<li data-id="playthrough_13_16">Continue through the buildings and through the fog gate</li>
<li data-id="playthrough_13_17">Clear out the <a href="https://darksouls.wiki.fextralife.com/Darkwraith+Knight">Darkwraith Knights</a> and <a href="https://darksouls.wiki.fextralife.com/Mass+of+Souls">Mass of Souls</a> so you can get the <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a> and trigger the elevator shortcut to the beginning of the ruins</li>
<li data-id="playthrough_13_18">Go out the smaller side door and up to open the chest with the <a href="https://darksouls.wiki.fextralife.com/Very+Large+Ember">Very Large Ember </a></li>
<li data-id="playthrough_13_19">Go back down and out the larger door and pick up the souls and six <a href="https://darksouls.wiki.fextralife.com/Cracked+Red+Eye+Orb">Cracked Red Eye Orbs</a></li>
<li data-id="playthrough_13_20">Hit the illusory wall and open the chest to get a <a href="https://darksouls.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a></li>
<li data-id="playthrough_13_21">Clear out the <a href="https://darksouls.wiki.fextralife.com/Darkwraith+Knight">Darkwraith Knights</a> and <a href="https://darksouls.wiki.fextralife.com/Mass+of+Souls">Mass of Souls</a> and get the <a href="https://darksouls.wiki.fextralife.com/Titanite+Chunk">Titanite Chunk</a> from the chest</li>
<li data-id="playthrough_13_22">Put on the <a href="https://darksouls.wiki.fextralife.com/Covenant+of+Artorias">Covenant of Artorias</a> ring</li>
<li data-id="playthrough_13_23">Kill the <a href="https://darksouls.wiki.fextralife.com/Four+Kings">Four Kings</a>
<ul>
<li data-id="playthrough_13_23_1">You can summon <a href="https://darksouls.wiki.fextralife.com/Witch+Beatrice">Witch Beatrice</a> from behind the pillar if you previously summoned her for the <a href="https://darksouls.wiki.fextralife.com/Moonlight+Butterfly">Moonlight Butterfly</a> fight</li>
</ul>
</li>
<li data-id="playthrough_13_24">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 60-75 to get summoned</li>
<li data-id="playthrough_13_28">Warp to <a href="https://darksouls.wiki.fextralife.com/Undead+Parish">Undead Parish</a> and give the <a href="https://darksouls.wiki.fextralife.com/Very+Large+Ember">Very Large Ember</a> to <a href="https://darksouls.wiki.fextralife.com/Blacksmith+Andrei">Andre</a> and upgrade your weapons</li>
<li data-id="playthrough_13_29">Warp to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a> and go down to the <a href="https://darksouls.wiki.fextralife.com/Valley+of+Drakes">Valley of Drakes</a> to get the <a href="https://darksouls.wiki.fextralife.com/Witch+Set">Witch Set</a> and <a href="https://darksouls.wiki.fextralife.com/Beatrice%27s+Catalyst">Beatrice's Catalyst</a></li>
<li data-id="playthrough_13_25">Make sure you have at least three <a href="https://darksouls.wiki.fextralife.com/Purple+Moss+Clump">Purple Moss Clumps</a> and warp to the <a href="https://darksouls.wiki.fextralife.com/Daughter+of+Chaos">Daughter of Chaos</a> bonfire</li>
<li data-id="playthrough_13_26">Go talk to <a href="https://darksouls.wiki.fextralife.com/Siegmeyer+of+Catarina">Siegmeyer</a> in the <a href="https://darksouls.wiki.fextralife.com/Blighttown">Blighttown</a> swamp and give him the <a href="https://darksouls.wiki.fextralife.com/Purple+Moss+Clump">Purple Moss Clumps</a> to get the <a href="https://darksouls.wiki.fextralife.com/Pierce+Shield">Pierce Shield</a></li>
<li data-id="playthrough_13_27">Go up the branch and hit the illusory wall behind the chest and go in to <a href="https://darksouls.wiki.fextralife.com/The+Great+Hollow">The Great Hollow</a></li>
</ul>
<a name="The_Great_Hollow"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/The+Great+Hollow">The Great Hollow</a> (Levels 50+) <span id="playthrough_totals_14"></span></h3>
<p><em>Note: It's very hard to give good directions for this section due to the maze of branches and random spawning patterns of the <a href="https://darksouls.wiki.fextralife.com/Crystal+Lizard">Crystal Lizards</a></em></p>
<ul>
<li data-id="playthrough_14_1">Light and rest at the bonfire after you go down the first ladder</li>
<li data-id="playthrough_14_2">Make your way down the branches looking out for <a href="https://darksouls.wiki.fextralife.com/Crystal+Lizard">Crystal Lizards</a> and <a href="https://darksouls.wiki.fextralife.com/Basilisk">Basilisks</a></li>
<li data-id="playthrough_14_3">Near the top you can roll down in to the main tree trunk in the center of the area to pick up the <a href="https://darksouls.wiki.fextralife.com/Cloranthy+Ring">Cloranthy Ring</a></li>
<li data-id="playthrough_14_4">Roll and drop to various branches to get the titanites</li>
<li data-id="playthrough_14_5">After you kill the first three <a href="https://darksouls.wiki.fextralife.com/Basilisk">Basilisks</a> there is a soul hidden to the left as you exit the cave they were in</li>
<li data-id="playthrough_14_6">Slide down the two ladders to the first canopy and kill the two <a href="https://darksouls.wiki.fextralife.com/Basilisk">Basilisks</a> there</li>
<li data-id="playthrough_14_7">Slide down the ladder in the center to the next canopy and be ready to kill four more and then pick up the soul</li>
<li data-id="playthrough_14_8">Continue down the branches and then on to the mushrooms, exiting the fog gate at the bottom to get to <a href="https://darksouls.wiki.fextralife.com/Ash+Lake">Ash Lake</a></li>
</ul>
<a name="Ash_Lake"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Ash+Lake">Ash Lake</a> (Levels 50+) <span id="playthrough_totals_15"></span></h3>
<ul>
<li data-id="playthrough_15_1">Light and rest at the bonfire</li>
<li data-id="playthrough_15_2">Kill the <a href="https://darksouls.wiki.fextralife.com/Black+Hydra">Black Hydra</a> to get two <a href="https://darksouls.wiki.fextralife.com/Dragon+Scale">Dragon Scales</a> and then get one more from the corpse to the left</li>
<li data-id="playthrough_15_3">Walk along the sand and get the <a href="https://darksouls.wiki.fextralife.com/Dragon+Scale">Dragon Scale</a> from the small dead tree</li>
<li data-id="playthrough_15_4">Get the <a href="https://darksouls.wiki.fextralife.com/Dragon+Scale">Dragon Scale</a> from the corpse on left by the water after the small dead tree</li>
<li data-id="playthrough_15_5">Go up the branch on the outside of the first huge tree, drop off to the right on to the hidden platform and head in to the tree to get the <a href="https://darksouls.wiki.fextralife.com/Great+Magic+Barrier">Great Magic Barrier</a> miracle</li>
<li data-id="playthrough_15_6">Continue along the sand to the next tree, light the bonfire and optionally join the <a href="https://darksouls.wiki.fextralife.com/Path+of+the+Dragon">Path of the Dragon</a> covenant</li>
<li data-id="playthrough_15_7">Cut off the tail of the dragon to get the <a href="https://darksouls.wiki.fextralife.com/Dragon+Greatsword">Dragon Greatsword</a></li>
<li data-id="playthrough_15_8">Make sure you have some <a href="https://darksouls.wiki.fextralife.com/Blooming+Purple+Moss+Clump">Blooming Purple Moss Clumps</a> in case you get toxic from the <a href="https://darksouls.wiki.fextralife.com/Engorged+Zombie">Engorged Zombies</a></li>
<li data-id="playthrough_15_9">Warp to <a href="https://darksouls.wiki.fextralife.com/Anor+Londo">Anor Londo</a></li>
</ul>
<a name="Painted_World_of_Ariamis"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Painted+World+of+Ariamis">Painted World of Ariamis</a> (Levels 60+) <span id="playthrough_totals_16"></span></h3>
<ul>
<li data-id="playthrough_16_1">Go down the elevator and turn the platform lever anti-clockwise and enter the chapel</li>
<li data-id="playthrough_16_2">Pick up the <a href="https://darksouls.wiki.fextralife.com/Great+Magic+Weapon">Great Magic Weapon</a> sorcery, <a href="https://darksouls.wiki.fextralife.com/Black+Iron+Set">Black Iron Set</a>, <a href="https://darksouls.wiki.fextralife.com/Greatsword">Greatsword</a> and <a href="https://darksouls.wiki.fextralife.com/Black+Iron+Greatshield">Black Iron Greatshield</a></li>
<li data-id="playthrough_16_3">Examine the painting to warp to the <a href="https://darksouls.wiki.fextralife.com/Painted+World+of+Ariamis">Painted World of Ariamis</a></li>
<li data-id="playthrough_16_4">Light and rest at the bonfire</li>
<li data-id="playthrough_16_5">Use ranged attacks or fire damage to kill the <a href="https://darksouls.wiki.fextralife.com/Engorged+Zombie">Engorged Zombies</a> so you don't get toxic</li>
<li data-id="playthrough_16_6">Go up the stairs and on to the roof of the first building and use your bow to pull the two <a href="https://darksouls.wiki.fextralife.com/Crow+Demon">Crow Demons</a> from the other tower to you so they don't ambush you later</li>
<li data-id="playthrough_16_7">Drop down to get the <a href="https://darksouls.wiki.fextralife.com/Dried+Finger">Dried Finger</a> and then go the bottom floor of the building to get the soul</li>
<li data-id="playthrough_16_8">Clear out the next building, remembering about the two <a href="https://darksouls.wiki.fextralife.com/Zombie">Zombies</a> hanging from the ledge, and hit the rope holding the zombie to drop it down</li>
<li data-id="playthrough_16_9">Go upstairs, jump across the gap and get the soul and the <a href="https://darksouls.wiki.fextralife.com/Egg+Vermifuge">Egg Vermifuge</a>, slide down the ladder and get the <a href="https://darksouls.wiki.fextralife.com/Painting+Guardian+Set">Painting Guardian Set</a></li>
<li data-id="playthrough_16_10">Lure the <a href="https://darksouls.wiki.fextralife.com/Crow+Demon">Crow Demons</a> out of the tower one by one</li>
<li data-id="playthrough_16_11">Go to the top of the spiral staircase to get the <a href="https://darksouls.wiki.fextralife.com/Red+Sign+Soapstone">Red Sign Soapstone</a> and on the way back down drop to the ledge to get the soul</li>
<li data-id="playthrough_16_12">Kill the <a href="https://darksouls.wiki.fextralife.com/Undead+Dragon">Undead Dragon</a> and then pick up the soul, <a href="https://darksouls.wiki.fextralife.com/Dragon+Scale">Dragon Scale</a> and the <a href="https://darksouls.wiki.fextralife.com/Bloodshield">Bloodshield</a> from the bridge</li>
<li data-id="playthrough_16_13">Go back to the tower, through the fog gate and open the shortcut back to the bonfire</li>
<li data-id="playthrough_16_14">Go down to the basement and kill the six <a href="https://darksouls.wiki.fextralife.com/Wheel+Skeleton">Wheel Skeletons</a>, making sure to pull one at a time with your bow</li>
<li data-id="playthrough_16_15">Grab the two souls and turn the lever to open the gate that leads to the boss</li>
<li data-id="playthrough_16_16">Hit the illusory wall and explore the tunnels, kill the three <a href="https://darksouls.wiki.fextralife.com/Wheel+Skeleton">Wheel Skeletons</a>, get the <a href="https://darksouls.wiki.fextralife.com/Annex+Key">Annex Key</a> and kill the <a href="https://darksouls.wiki.fextralife.com/Engorged+Zombie">Engorged Zombie</a> to get the <a href="https://darksouls.wiki.fextralife.com/Fire+Surge">Fire Surge</a> pyromancy</li>
<li data-id="playthrough_16_17">Leave the tunnels using the well ladder, go up the stairs to get the <a href="https://darksouls.wiki.fextralife.com/Ring+of+Sacrifice">Ring of Sacrifice</a> and grab the <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a> from the zombie you dropped earlier</li>
<li data-id="playthrough_16_18">Open the Annex door and head up the stairs</li>
<li data-id="playthrough_16_19">Head up on to the roof of the building to the left, kill the two <a href="https://darksouls.wiki.fextralife.com/Crow+Demon">Crow Demons</a>, watch for an ambush by two more and get the <a href="https://darksouls.wiki.fextralife.com/Vow+of+Silence">Vow Of Silence</a> miracle</li>
<li data-id="playthrough_16_20">Take the stairs in to the round tower and pick up the <a href="https://darksouls.wiki.fextralife.com/Black+Set">Black Set</a></li>
<li data-id="playthrough_16_21">Go to the lower section and get the <a href="https://darksouls.wiki.fextralife.com/Dark+Ember">Dark Ember</a></li>
<li data-id="playthrough_16_22">Break the wooden fence to get <a href="https://darksouls.wiki.fextralife.com/Velka%27s+Rapier">Velka's Rapier</a>, drop down in to the building and get the <a href="https://darksouls.wiki.fextralife.com/Gold+Coin">Gold Coin</a></li>
<li data-id="playthrough_16_23">Return to the bonfire and reverse hollowing</li>
<li data-id="playthrough_16_24">Go the open area with all the spikes, wait for <a href="https://darksouls.wiki.fextralife.com/King+Jeremiah">King Jeremiah</a> to invade and kill him to get the <a href="https://darksouls.wiki.fextralife.com/Notched+Whip">Notched Whip</a></li>
<li data-id="playthrough_16_25">Pick up the souls in the area and the <a href="https://darksouls.wiki.fextralife.com/Acid+Surge">Acid Surge</a> pyromancy hidden behind the wall</li>
<li data-id="playthrough_16_26">Go through the gate you opened earlier, walk across the bridge, watching out for the zombies and kill the <a href="https://darksouls.wiki.fextralife.com/The+Tower+Knight">Tower Knight</a> to get the <a href="https://darksouls.wiki.fextralife.com/Large+Titanite+Shard">Large Titanite Shard</a></li>
<li data-id="playthrough_16_27">Reload your game before you enter the fog gate, go through and pick up the <a href="https://darksouls.wiki.fextralife.com/Xanthous+Set">Xanthous Set</a> that should now have appeared</li>
<li data-id="playthrough_16_28">Talk to and optionally kill <a href="https://darksouls.wiki.fextralife.com/Crossbreed+Priscilla">Crossbreed Priscilla</a>
<ul>
<li data-id="playthrough_16_28_1">Cut off her tail to get <a href="https://darksouls.wiki.fextralife.com/Priscilla%27s+Dagger">Priscilla's Dagger</a></li>
</ul>
</li>
<li data-id="playthrough_16_29">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 55-60 to get summoned</li>
<li data-id="playthrough_16_30">Jump off the ledge to warp back to <a href="https://darksouls.wiki.fextralife.com/Anor+Londo">Anor Londo</a></li>
<li data-id="playthrough_16_31">Leave the chapel and turn the platform lever clockwise to return it to its normal position and go to the first <a href="https://darksouls.wiki.fextralife.com/Anor+Londo">Anor Londo</a> bonfire</li>
<li data-id="playthrough_16_32">Warp to <a href="https://darksouls.wiki.fextralife.com/Undead+Parish">Undead Parish</a> and give the <a href="https://darksouls.wiki.fextralife.com/Dark+Ember">Dark Ember</a> to <a href="https://darksouls.wiki.fextralife.com/Blacksmith+Andrei">Andre</a> and upgrade your weapons</li>
<li data-id="playthrough_16_33">Warp back to <a href="https://darksouls.wiki.fextralife.com/Anor+Londo">Anor Londo</a> and head to <a href="https://darksouls.wiki.fextralife.com/The+Duke%27s+Archives">The Duke's Archives</a></li>
</ul>
<a name="The_Dukes_Archives"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/The+Duke%27s+Archives">The Duke's Archives</a> (Levels 60+) <span id="playthrough_totals_17"></span></h3>
<ul>
<li data-id="playthrough_17_1">Kill the two <a href="https://darksouls.wiki.fextralife.com/Mecha+Boar">Mecha Boars</a> and rest at the bonfire</li>
<li data-id="playthrough_17_2">Go up the first elevator and kill the <a href="https://darksouls.wiki.fextralife.com/Crystal+Golem">Crystal Golem</a> to get the <a href="https://darksouls.wiki.fextralife.com/Broken+Pendant">Broken Pendant</a> (DLC Only)</li>
<li data-id="playthrough_17_3">Clear out the crystal skeletons and the <a href="https://darksouls.wiki.fextralife.com/The+Channeler">Channeler</a> and get the soul</li>
<li data-id="playthrough_17_4">Take the left hand side stairs and get the <a href="https://darksouls.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a> from the chest</li>
<li data-id="playthrough_17_5">Go around to the other side and get the <a href="https://darksouls.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a> from the balcony and the crystal <a href="https://darksouls.wiki.fextralife.com/Knight+Shield">Knight Shield</a> from the mimic</li>
<li data-id="playthrough_17_6">Take the elevator up to the next level, draw out and kill the crytalline hollow, and quickly kill the <a href="https://darksouls.wiki.fextralife.com/Crystal+Lizard">Crystal Lizard</a> on the stairs to get two <a href="https://darksouls.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanites</a></li>
<li data-id="playthrough_17_7">Put on a <a href="https://darksouls.wiki.fextralife.com/Rare+Ring+of+Sacrifice">Rare Ring of Sacrifice</a>, go through the fog gate and let <a href="https://darksouls.wiki.fextralife.com/Seath+The+Scaleless">Seath the Scaleless</a> kill you</li>
<li data-id="playthrough_17_8">Rest at the cell bonfire and kill the <a href="https://darksouls.wiki.fextralife.com/Man-Serpent">Man Serpent</a> to get the <a href="https://darksouls.wiki.fextralife.com/Archive+Tower+Cell+Key">Archive Tower Cell Key</a></li>
<li data-id="playthrough_17_9">Let yourself out of the cell, try to kill the two <a href="https://darksouls.wiki.fextralife.com/Man-Serpent">Man Serpents</a> that run passed then kill the four <a href="https://darksouls.wiki.fextralife.com/Pisaca">Pisacas</a> that are chasing them</li>
<li data-id="playthrough_17_10">Head up the stairs and up the ladder, walk along the ledge to the left and drop down to the cell to get the <a href="https://darksouls.wiki.fextralife.com/Maiden+Set">Maiden Set</a> and the <a href="https://darksouls.wiki.fextralife.com/White+Seance+Ring">White Seance Ring</a></li>
<li data-id="playthrough_17_11">Open the third cell, drop down to get the <a href="https://darksouls.wiki.fextralife.com/Archive+Prison+Extra+Key">Archive Prison Extra Key</a> and use it to open the second cell and get the soul</li>
<li data-id="playthrough_17_12">Kill the rest of the <a href="https://darksouls.wiki.fextralife.com/Pisaca">Pisacas</a> at the bottom, get the <a href="https://darksouls.wiki.fextralife.com/Soothing+Sunlight">Soothing Sunlight</a> and <a href="https://darksouls.wiki.fextralife.com/Bountiful+Sunlight">Bountiful Sunlight</a> miracles, and talk to <a href="https://darksouls.wiki.fextralife.com/Big+Hat+Logan">Big Hat Logan</a></li>
<li data-id="playthrough_17_13">Go up the ladder, kill the two <a href="https://darksouls.wiki.fextralife.com/Man-Serpent">Man Serpents</a>, turn off the alarm and get the <a href="https://darksouls.wiki.fextralife.com/Archive+Tower+Giant+Cell+Key">Archive Tower Giant Cell Key</a> from the chest</li>
<li data-id="playthrough_17_14">Head back up to your cell and open the other door, drop down to get the soul and then drop down a couple of levels back to the alarm</li>
<li data-id="playthrough_17_15">Head all the way back up and open the door at the top of the ladder</li>
<li data-id="playthrough_17_16">Head up and kill the <a href="https://darksouls.wiki.fextralife.com/The+Channeler">Channeler</a> up on the ledge and the second one around the corner</li>
<li data-id="playthrough_17_17">Head to the left, spin the staircase around, go down to get the <a href="https://darksouls.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a> from the chest and then head back up the stairs again</li>
<li data-id="playthrough_17_18">Make sure you have full health and drop down to the second spinning staircase</li>
<li data-id="playthrough_17_19">Go up the stairs and get the <a href="https://darksouls.wiki.fextralife.com/Strong+Magic+Shield">Strong Magic Shield</a> sorcery</li>
<li data-id="playthrough_17_20">Spin the stairs, go down and kill the archer on the ledge, slide down the ladder and pull the lever to open the bookcase shortcut</li>
<li data-id="playthrough_17_21">Go in to the larger of the two rooms and get the <a href="https://darksouls.wiki.fextralife.com/Symbol+of+Avarice">Symbol of Avarice</a> and the enchanted <a href="https://darksouls.wiki.fextralife.com/Falchion">Falchion</a> from the mimic in the far right part of the room</li>
<li data-id="playthrough_17_22">Open the other chests, remembering about the one behind the bookcase, to get the <a href="https://darksouls.wiki.fextralife.com/Channeler+Set">Channeler Set</a>, <a href="https://darksouls.wiki.fextralife.com/Archive+Tower+Giant+Cell+Key">Archive Tower Giant Cell Key</a> and the <a href="https://darksouls.wiki.fextralife.com/Crystal+Ember">Crystal Ember</a></li>
<li data-id="playthrough_17_23">Go to the smaller room and get the <a href="https://darksouls.wiki.fextralife.com/Blue+Titanite+Chunk">Blue Titanite Chunk</a> from the chest</li>
<li data-id="playthrough_17_24">Go out through the bookcase shortcut and rest at the bonfire</li>
<li data-id="playthrough_17_25">Clear out the two rooms of the library, including the archer on the bookcase and the <a href="https://darksouls.wiki.fextralife.com/The+Channeler">Channelers</a></li>
<li data-id="playthrough_17_26">Spin the staircase and jump off the lower steps while it's rotating to land on the top of the bookshelf and get the <a href="https://darksouls.wiki.fextralife.com/Avelyn">Avelyn</a> crossbow from the chest</li>
<li data-id="playthrough_17_27">Go back through the bookcase shortcut, pull the lever in the larger room to lower the stairs, get the <a href="https://darksouls.wiki.fextralife.com/Prism+Stone">Prism Stones</a> from the chest and go through the fog gate</li>
<li data-id="playthrough_17_28">Kill the <a href="https://darksouls.wiki.fextralife.com/Golden+Crystal+Golem">Golden Crystal Golem</a> and talk to <a href="https://darksouls.wiki.fextralife.com/Sieglinde+of+Catarina">Sieglinde of Catarina</a>, answering Yes to her question</li>
<li data-id="playthrough_17_29">Kill the other <a href="https://darksouls.wiki.fextralife.com/Crystal+Golem">Crystal Golems</a> and pick up the <a href="https://darksouls.wiki.fextralife.com/Crystalline+Set">Crystalline Set</a> and the <a href="https://darksouls.wiki.fextralife.com/Blue+Titanite+Chunk">Blue Titanite Chunk</a></li>
<li data-id="playthrough_17_30">Head down in to the <a href="https://darksouls.wiki.fextralife.com/Crystal+Cave">Crystal Cave</a></li>
</ul>
<a name="Crystal_Cave"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Crystal+Cave">Crystal Cave</a> (Levels 50+) <span id="playthrough_totals_18"></span></h3>
<ul>
<li data-id="playthrough_18_1">Take the first invisible path and get the <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a></li>
<li data-id="playthrough_18_2">Take the next invisible path, kill the <a href="https://darksouls.wiki.fextralife.com/Crystal+Golem">Crystal Golem</a>, drop off to the left and double back in to the small tunnel behind you and kill the three <a href="https://darksouls.wiki.fextralife.com/Crystal+Lizard">Crystal Lizards</a></li>
<li data-id="playthrough_18_3">Turn around again and take the invisible path down to get the <a href="https://darksouls.wiki.fextralife.com/Blue+Titanite+Slab">Blue Titanite Slab</a></li>
<li data-id="playthrough_18_4">Head back up and kill the <a href="https://darksouls.wiki.fextralife.com/Golden+Crystal+Golem">Golden Crystal Golem</a> and get the <a href="https://darksouls.wiki.fextralife.com/Blue+Titanite+Chunk">Blue Titanite Chunk</a></li>
<li data-id="playthrough_18_5">Go down the last invisible path and get the soul in front of the <a href="https://darksouls.wiki.fextralife.com/Moonlight+Butterfly">Moonlight Butterfly</a> but be careful because it will probably attack you</li>
<li data-id="playthrough_18_6">Put on the <a href="https://darksouls.wiki.fextralife.com/Covetous+Gold+Serpent+Ring">Covetous Gold Serpent Ring</a> and kill the <a href="https://darksouls.wiki.fextralife.com/Enemies#Wildlife--Man-Eater%20Shell">Man-Eater Shells</a> to get some <a href="https://darksouls.wiki.fextralife.com/Purging+Stone">Purging Stones</a> and <a href="https://darksouls.wiki.fextralife.com/Twinkling+Titanite">Twinkling Titanite</a></li>
<li data-id="playthrough_18_7">Kill <a href="https://darksouls.wiki.fextralife.com/Seath+The+Scaleless">Seath the Scaleless</a>
<ul>
<li data-id="playthrough_18_7_1">You have to break the crystal before you can do damage to him</li>
<li data-id="playthrough_18_7_2">Cut off his tail to get the <a href="https://darksouls.wiki.fextralife.com/Moonlight+Greatsword">Moonlight Greatsword</a></li>
</ul>
</li>
<li data-id="playthrough_18_8">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 60-75+ to get summoned</li>
<li data-id="playthrough_18_9">Return to the bonfire, go through the bookcase shortcut and in to the small room to talk to <a href="https://darksouls.wiki.fextralife.com/Big+Hat+Logan">Big Hat Logan</a> and buy any sorceries you need
<ul>
<li data-id="playthrough_18_9_1">If you want <a href="https://darksouls.wiki.fextralife.com/Big+Hat%27s+Set">Big Hat's Set</a> then you will need to buy all of his sorceries to get him to leave and go hollow</li>
<li data-id="playthrough_18_9_2">If you only need the <a href="https://darksouls.wiki.fextralife.com/White+Dragon+Breath">White Dragon Breath</a> sorcery, his <a href="https://darksouls.wiki.fextralife.com/Big+Hat%27s+Set">Big Hat</a> and <a href="https://darksouls.wiki.fextralife.com/Tin+Crystallization+Catalyst">Tin Crystallization Catalyst</a> you can kill him now</li>
<li data-id="playthrough_18_9_3">When he has left, go to the room where you first encountered <a href="https://darksouls.wiki.fextralife.com/Seath+The+Scaleless">Seath the Scaleless</a>, kill him and then return to this room to get <a href="https://darksouls.wiki.fextralife.com/Big+Hat%27s+Set">Big Hat's Set</a> from the new chest</li>
</ul>
</li>
<li data-id="playthrough_18_10">Go back up the ladder, spin the stairs, go down them and out on to the balcony, and go back in to the prison area</li>
<li data-id="playthrough_18_11">Go down to the bottom and use the <a href="https://darksouls.wiki.fextralife.com/Archive+Tower+Giant+Cell+Key">Archive Tower Giant Cell Key</a> to open the gate and get the <a href="https://darksouls.wiki.fextralife.com/Fire+Keeper+Soul">Firekeeper Soul</a></li>
<li data-id="playthrough_18_12">Return to the archives, go down one floor to the second floor, go to the first archive room and use the lever to call the elevator</li>
<li data-id="playthrough_18_13">Go to the room where you first encountered <a href="https://darksouls.wiki.fextralife.com/Seath+The+Scaleless">Seath the Scaleless</a> and get the <a href="https://darksouls.wiki.fextralife.com/Large+Magic+Ember">Large Magic Ember</a> from the chest and the soul from the balcony</li>
<li data-id="playthrough_18_14">Return to the bonfire, warp to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a>, talk to <a href="https://darksouls.wiki.fextralife.com/Sieglinde+of+Catarina">Sieglinde</a>, answering Yes to her question, and go down to reinforce your <a href="https://darksouls.wiki.fextralife.com/Estus+Flask">Estus Flask</a></li>
<li data-id="playthrough_18_15">Go down to <a href="https://darksouls.wiki.fextralife.com/New+Londo+Ruins">New Londo Ruins</a>, give the <a href="https://darksouls.wiki.fextralife.com/Large+Magic+Ember">Large Magic Ember</a> to <a href="https://darksouls.wiki.fextralife.com/Blacksmith+Rickert+of+Vinheim">Rickert</a> and upgrade your weapons if needed</li>
<li data-id="playthrough_18_16">Warp to the Chamber of the Princess bonfire, give the <a href="https://darksouls.wiki.fextralife.com/Crystal+Ember">Crystal Ember</a> to the <a href="https://darksouls.wiki.fextralife.com/Giant+Blacksmith">Giant Blacksmith</a> and upgrade your weapons if needed</li>
<li data-id="playthrough_18_17">Warp to the <a href="https://darksouls.wiki.fextralife.com/Daughter+of+Chaos">Daughter of Chaos</a> bonfire, go down to the <a href="https://darksouls.wiki.fextralife.com/Demon+Ruins">Demon Ruins</a>, rest at the first bonfire</li>
</ul>
<a name="Demon_Ruins"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Demon+Ruins">Demon Ruins</a> (Levels 60+) <span id="playthrough_totals_19"></span></h3>
<ul>
<li data-id="playthrough_19_1">Kill the <a href="https://darksouls.wiki.fextralife.com/Ceaseless+Discharge">Ceasless Discharge</a>
<ul>
<li data-id="playthrough_19_1_1">Get the <a href="https://darksouls.wiki.fextralife.com/Gold-Hemmed+Black+Set">Gold-Hemmed Black Set</a> to start the fight</li>
</ul>
</li>
<li data-id="playthrough_19_2">Make sure you are human and continue down in to the ruins</li>
<li data-id="playthrough_19_3">Wait for <a href="https://darksouls.wiki.fextralife.com/Knight+Kirk">Knight Kirk</a> to invade and then kill him to get the <a href="https://darksouls.wiki.fextralife.com/Spiked+Shield">Spiked Shield</a> and <a href="https://darksouls.wiki.fextralife.com/Barbed+Straight+Sword">Barbed Straight Sword</a></li>
<li data-id="playthrough_19_4">Roll down to the first platform, kill the <a href="https://darksouls.wiki.fextralife.com/Burrowing+Rockworm">Burrowing Rockworm</a> guarding the bonfire and rest there</li>
<li data-id="playthrough_19_5">Go down the stairs and go left along the ledge to get the <a href="https://darksouls.wiki.fextralife.com/Large+Flame+Ember">Large Flame Ember</a> from the chest, remembering about the <a href="https://darksouls.wiki.fextralife.com/Burrowing+Rockworm">Burrowing Rockworm</a> traps</li>
<li data-id="playthrough_19_6">Go back to the fog gate and if you are level two in the <a href="https://darksouls.wiki.fextralife.com/Chaos+Servant">Chaos Servant</a> covenant then go down to the right and open the shortcut to <a href="https://darksouls.wiki.fextralife.com/Lost+Izalith">Lost Izalith</a>
<ul>
<li data-id="playthrough_19_6_1">If you want to save <a href="https://darksouls.wiki.fextralife.com/Solaire+of+Astora">Solaire</a> then kill all the bugs to get the <a href="https://darksouls.wiki.fextralife.com/Sunlight+Maggot">Sunlight Maggot</a> and use this shortcut to talk to him</li>
</ul>
</li>
<li data-id="playthrough_19_7">Go through the fog gate and kill the <a href="https://darksouls.wiki.fextralife.com/Demon+Firesage">Demon Firesage</a>
<ul>
<li data-id="playthrough_19_7_1">He will drop the <a href="https://darksouls.wiki.fextralife.com/Demon%27s+Catalyst">Demon's Catalyst</a></li>
<li data-id="playthrough_19_7_2">Don't forget the <a href="https://darksouls.wiki.fextralife.com/Green+Titanite+Shard">Green Titanite Shard</a> in the open area around to the right</li>
</ul>
</li>
<li data-id="playthrough_19_8">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 55-60+ to get summoned</li>
<li data-id="playthrough_19_9">Go upstairs to open the shortcut back to <a href="https://darksouls.wiki.fextralife.com/Quelaag%27s+Domain">Quelaag's Domain</a></li>
<li data-id="playthrough_19_10">Go back the way you came and go down and rest at the bonfire</li>
<li data-id="playthrough_19_11">Kill the <a href="https://darksouls.wiki.fextralife.com/Centipede+Demon">Centipede Demon</a>
<ul>
<li data-id="playthrough_19_11_1">Cut off his tail and then kill the tail to get <a href="https://darksouls.wiki.fextralife.com/Orange+Charred+Ring">Orange Charred Ring</a>, though he will drop the ring anyway when killed</li>
</ul>
</li>
<li data-id="playthrough_19_12">Put on the <a href="https://darksouls.wiki.fextralife.com/Orange+Charred+Ring">Orange Charred Ring</a></li>
<li data-id="playthrough_19_13">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 60+ to get summoned</li>
<li data-id="playthrough_19_14">Leave boss area by the tunnel, rest at the bonfire and talk to <a href="https://darksouls.wiki.fextralife.com/Solaire+of+Astora">Solaire</a> if he's there</li>
<li data-id="playthrough_19_15">Continue in to <a href="https://darksouls.wiki.fextralife.com/Lost+Izalith">Lost Izalith</a></li>
</ul>
<a name="Lost_Izalith"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Lost+Izalith">Lost Izalith</a> (Levels 75+) <span id="playthrough_totals_20"></span></h3>
<ul>
<li data-id="playthrough_20_1">Make your way to the first building, picking up the two souls along the way, and open the chest inside to get another soul</li>
<li data-id="playthrough_20_2">Run up the branch of the next building and get the <a href="https://darksouls.wiki.fextralife.com/twin+Humanities">Twin Humanities</a></li>
<li data-id="playthrough_20_3">Drop down to the base of the building and hit the illusory wall of the building, rest at the bonfire and make sure you are human</li>
<li data-id="playthrough_20_4">Continue on in to the ruins and grab the soul hidden to the left just before you go up the stairs</li>
<li data-id="playthrough_20_5">Go up the stairs, kill the <a href="https://darksouls.wiki.fextralife.com/Chaos+Eater">Chaos Eater</a>, kill the Daughter of Chaos to get the <a href="https://darksouls.wiki.fextralife.com/Izalith+Catalyst">Izalith Catalyst</a>, and wait for <a href="https://darksouls.wiki.fextralife.com/Knight+Kirk">Knight Kirk</a> to invade and then kill him</li>
<li data-id="playthrough_20_6">Kill the second <a href="https://darksouls.wiki.fextralife.com/Chaos+Eater">Chaos Eater</a> and open the chest to get the <a href="https://darksouls.wiki.fextralife.com/Chaos+Fire+Whip">Chaos Fire Whip</a> pyromancy</li>
<li data-id="playthrough_20_20">Go down the branch and kill all the <a href="https://darksouls.wiki.fextralife.com/Stone+Demon">Stone Demons</a></li>
<li data-id="playthrough_20_21">Kill the <a href="https://darksouls.wiki.fextralife.com/Titanite+Demon">Titanite Demon</a> to get a <a href="https://darksouls.wiki.fextralife.com/Demon+Titanite">Demon Titanite</a> and if you didn't open the shortcut earlier then open it now and kill the bugs to get the <a href="https://darksouls.wiki.fextralife.com/Sunlight+Maggot">Sunlight Maggot</a></li>
<li data-id="playthrough_20_7">Trigger the collapsing floor by walking to the left of the alcove</li>
<li data-id="playthrough_20_8">Put on the <a href="https://darksouls.wiki.fextralife.com/Rusted+Iron+Ring">Rusted Iron Ring</a>, walk down the branch, do not talk to <a href="https://darksouls.wiki.fextralife.com/Siegmeyer+of+Catarina">Siegmeyer</a> yet but instead kill all but one of the <a href="https://darksouls.wiki.fextralife.com/Chaos+Eater">Chaos Eaters</a> using ranged attacks</li>
<li data-id="playthrough_20_9">Now talk to <a href="https://darksouls.wiki.fextralife.com/Siegmeyer+of+Catarina">Siegmeyer</a> and follow him when he jumps in to the pit and make sure he doesn't lose more than half his health while killing the remaining <a href="https://darksouls.wiki.fextralife.com/Chaos+Eater">Chaos Eaters</a></li>
<li data-id="playthrough_20_10">Grab the soul and <a href="https://darksouls.wiki.fextralife.com/Green+Titanite+Shard">Green Titanite Shards</a> and then talk to him again</li>
<li data-id="playthrough_20_11">Make your way through the tunnels, getting the <a href="https://darksouls.wiki.fextralife.com/Red+Titanite+Slab">Red Titanite Slab</a> from the chest and then the <a href="https://darksouls.wiki.fextralife.com/Red+Titanite+Chunk">Red Titanite Chunk</a> after going up the stairs</li>
<li data-id="playthrough_20_12">Make your way back up the branches and back up to the boss fog gate</li>
<li data-id="playthrough_20_13">Kill the <a href="https://darksouls.wiki.fextralife.com/The+Bed+of+Chaos">Bed of Chaos</a>
<ul>
<li data-id="playthrough_20_13_1">You need to destroy the right orb first, then the left orb and then drop down in the center to kill her</li>
</ul>
</li>
<li data-id="playthrough_20_14">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 60-75+ to get summoned</li>
<li data-id="playthrough_20_15">Warp back to the <a href="https://darksouls.wiki.fextralife.com/Daughter+of+Chaos">Daughter of Chaos</a> bonfire and get the <a href="https://darksouls.wiki.fextralife.com/Thorns+Set">Thorns Set</a></li>
<li data-id="playthrough_20_16">Go back down to the <a href="https://darksouls.wiki.fextralife.com/Demon+Ruins">Demon Ruins</a>, kill the <a href="https://darksouls.wiki.fextralife.com/Taurus+Demon">Taurus Demons</a>, and get the <a href="https://darksouls.wiki.fextralife.com/Chaos+Flame+Ember">Chaos Flame Ember</a> and soul from the lava</li>
<li data-id="playthrough_20_17">Warp to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a> and talk to <a href="https://darksouls.wiki.fextralife.com/Sieglinde+of+Catarina">Sieglinde of Catarina</a></li>
<li data-id="playthrough_20_18">Warp to the Stone Dragon bonfire, walk along the sand to the <a href="https://darksouls.wiki.fextralife.com/Ash+Lake">Ash Lake</a> bonfire and talk to <a href="https://darksouls.wiki.fextralife.com/Sieglinde+of+Catarina">Sieglinde</a> to get a <a href="https://darksouls.wiki.fextralife.com/Titanite+Slab">Titanite Slab</a></li>
<li data-id="playthrough_20_19">Make sure you are using a <a href="https://darksouls.wiki.fextralife.com/Divine+Ember">Divine weapon</a>, warp back to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a> and continue down in to <a href="https://darksouls.wiki.fextralife.com/The+Catacombs">The Catacombs</a></li>
</ul>
<a name="The_Catacombs"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/The+Catacombs">The Catacombs</a> (Levels 30-50) <span id="playthrough_totals_21"></span></h3>
<ul>
<li data-id="playthrough_21_1">Go down to the first bonfire, kill the <a href="https://darksouls.wiki.fextralife.com/Undead+Mage">Undead Mage</a> and push the first switch</li>
<li data-id="playthrough_21_2">Use a ranged attack to take out the next <a href="https://darksouls.wiki.fextralife.com/Undead+Mage">Undead Mage</a></li>
<li data-id="playthrough_21_3">Clear out the room the <a href="https://darksouls.wiki.fextralife.com/Undead+Mage">Undead Mage</a> was in and get the <a href="https://darksouls.wiki.fextralife.com/Lucerne">Lucerne</a> from the side room</li>
<li data-id="playthrough_21_4">Continue clearing out this area, grabbing the soul from near the archer, head outside passed the statue spike traps, push the second switch and get the soul</li>
<li data-id="playthrough_21_5">Cross the bridge and quickly kill the next <a href="https://darksouls.wiki.fextralife.com/Undead+Mage">Undead Mage</a></li>
<li data-id="playthrough_21_6">Go in to the side room to the right, fall through the floor and try to get the two <a href="https://darksouls.wiki.fextralife.com/Crystal+Lizard">Crystal Lizards</a> while avoiding the statue spike traps</li>
<li data-id="playthrough_21_7">Climb up the ladder and fall through the floor again to get back to the second switch</li>
<li data-id="playthrough_21_8">Go back across the bridge and at the end of it drop down three times to the left, pick up the <a href="https://darksouls.wiki.fextralife.com/Great+Scythe">Great Scythe</a> and push the third switch</li>
<li data-id="playthrough_21_9">Head outside, push the fourth switch, roll through the illusory wall and rest at the bonfire</li>
<li data-id="playthrough_21_10">Go across the bridge and through the fog gate, hit the broken wall, drop down and clear out the room</li>
<li data-id="playthrough_21_11">Continue up the steps, watch out for the giant skeleton that drops from the roof and get the <a href="https://darksouls.wiki.fextralife.com/Darkmoon+Seance+Ring">Darkmoon Seance Ring</a> from the coffin</li>
<li data-id="playthrough_21_12">Go out the broken wall, continue up the steps, kill the <a href="https://darksouls.wiki.fextralife.com/Undead+Mage">Undead Mage</a> and climb up the ladder</li>
<li data-id="playthrough_21_13">Get the <a href="https://darksouls.wiki.fextralife.com/Tranquil+Walk+of+Peace">Tranquil Walk of Peace</a> miracle and fall through the floor to near the start of the level</li>
<li data-id="playthrough_21_14">Continue all the way back across the bridges to the building with all of the coffins</li>
<li data-id="playthrough_21_15">Nestle in the coffin on the left just before the <a href="https://darksouls.wiki.fextralife.com/Titanite+Demon">Titanite Demon</a> to go to the <a href="https://darksouls.wiki.fextralife.com/Tomb+of+Giants">Tomb of the Giants</a> and optionally join the <a href="https://darksouls.wiki.fextralife.com/Gravelord+Servant">Gravelord Servant</a> covenant</li>
<li data-id="playthrough_21_16">Use the coffin to get back, go down the corridor and through the broken wall, drop down through the floor and kill the <a href="https://darksouls.wiki.fextralife.com/Black+Knight">Black Knight</a> to get the <a href="https://darksouls.wiki.fextralife.com/White+Titanite+Chunk">White Titanite Chunk</a></li>
<li data-id="playthrough_21_17">Use ranged attacks to kill all the <a href="https://darksouls.wiki.fextralife.com/Wheel+Skeleton">Wheel Skeletons</a> and before dropping down</li>
<li data-id="playthrough_21_18">Go through the tunnel near where you dropped down and kill the <a href="https://darksouls.wiki.fextralife.com/Undead+Mage">Undead Mage</a> to get the <a href="https://darksouls.wiki.fextralife.com/Skull+Lantern">Skull Lantern</a></li>
<li data-id="playthrough_21_19">Climb up the two ladders and back to entrance of the building with all the coffins, go outside and drop off to the ledge where you can summon <a href="https://darksouls.wiki.fextralife.com/Paladin+Leeroy">Paladin Leeroy</a></li>
<li data-id="playthrough_21_20">Drop off to the next ledge to get the <a href="https://darksouls.wiki.fextralife.com/Cleric+Set">Cleric Set</a> and <a href="https://darksouls.wiki.fextralife.com/Mace">Mace</a></li>
<li data-id="playthrough_21_21">Kill <a href="https://darksouls.wiki.fextralife.com/Pinwheel">Pinwheel</a>
<ul>
<li data-id="playthrough_21_21_1">As described above you can summon <a href="https://darksouls.wiki.fextralife.com/Paladin+Leeroy">Paladin Leeroy</a> from the ledge above the area with the <a href="https://darksouls.wiki.fextralife.com/Wheel+Skeleton">Wheel Skeletons</a></li>
<li data-id="playthrough_21_21_2">You will get the <a href="https://darksouls.wiki.fextralife.com/Rite+of+Kindling">Rite of Kindling</a> when you kill him</li>
<li data-id="playthrough_21_21_3">He will drop one of <a href="https://darksouls.wiki.fextralife.com/Mask+of+the+Father">Mask of the Father</a>, <a href="https://darksouls.wiki.fextralife.com/Mask+of+the+Mother">Mask of the Mother</a> or <a href="https://darksouls.wiki.fextralife.com/Mask+of+the+Child">Mask of the Child</a></li>
</ul>
</li>
<li data-id="playthrough_21_22">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 20-40 or 55-65 to get summoned</li>
<li data-id="playthrough_21_23">Go up the ladder and continue on the <a href="https://darksouls.wiki.fextralife.com/Tomb+of+Giants">Tomb of the Giants</a></li>
</ul>
<a name="Tomb_Of_The_Giants"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Tomb+of+Giants">Tomb of the Giants</a> (Levels 70+) <span id="playthrough_totals_22"></span></h3>
<ul>
<li data-id="playthrough_22_1">If you got the <a href="https://darksouls.wiki.fextralife.com/Sunlight+Maggot">Sunlight Maggot</a> then wear it otherwise put the <a href="https://darksouls.wiki.fextralife.com/Skull+Lantern">Skull Lantern</a> in your left hand</li>
<li data-id="playthrough_22_2">Slide down the coffins, climb down the ladder and rest at the bonfire</li>
<li data-id="playthrough_22_3">Go back up the ladder, along the ledge to the right, drop down the hole, kill all the giant skeletons and get the <a href="https://darksouls.wiki.fextralife.com/Large+Divine+Ember">Large Divine Ember</a></li>
<li data-id="playthrough_22_4">Climb back out, hit the illusory wall along the ledge, climb down the ladder, kill the bone towers and <a href="https://darksouls.wiki.fextralife.com/Reah+of+Thorolund">Reah's</a> bodyguards but do not talk to her</li>
<li data-id="playthrough_22_5">Get the <a href="https://darksouls.wiki.fextralife.com/White+Titanite+Chunk">White Titanite Chunk</a>, <a href="https://darksouls.wiki.fextralife.com/Skull+Lantern">Skull Lantern</a>, souls and head back up the ladder</li>
<li data-id="playthrough_22_6">Talk to <a href="https://darksouls.wiki.fextralife.com/Patches+the+Hyena">Patches the Hyena</a>, answering No to his question and let him kick you down in to the pit</li>
<li data-id="playthrough_22_7">Talk to <a href="https://darksouls.wiki.fextralife.com/Reah+of+Thorolund">Reah</a> to get the <a href="https://darksouls.wiki.fextralife.com/Replenishment">Replenishment</a> miracle</li>
<li data-id="playthrough_22_8">Go back up and talk to <a href="https://darksouls.wiki.fextralife.com/Patches+the+Hyena">Patches</a> again, answering No to his question to get <a href="https://darksouls.wiki.fextralife.com/twin+Humanities">Twin Humanities</a></li>
<li data-id="playthrough_22_9">Continue passed him and through the fog gate and kill the <a href="https://darksouls.wiki.fextralife.com/The+Black+Knight">Black Knight</a> that comes running at you</li>
<li data-id="playthrough_22_10">Kill the archer, grab the soul, jump down, get ready for an ambush by bone towers and grab the <a href="https://darksouls.wiki.fextralife.com/Covetous+Silver+Serpent+Ring">Covetous Silver Serpent Ring</a></li>
<li data-id="playthrough_22_11">Jump across and kill the giant skeleton and then continue up, hugging the left wall to get the <a href="https://darksouls.wiki.fextralife.com/Effigy+Shield">Effigy Shield</a></li>
<li data-id="playthrough_22_12">Go back down to where you killed the last giant skeleton and hug the left wall around to the next bonfire and reverse hollowing</li>
<li data-id="playthrough_22_13">Go down the path, grab the <a href="https://darksouls.wiki.fextralife.com/White+Titanite+Chunk">White Titanite Chunk</a>, go down the ladder, wait for <a href="https://darksouls.wiki.fextralife.com/Paladin+Leeroy">Paladin Leeroy</a> to invade and kill him to get <a href="https://darksouls.wiki.fextralife.com/Sanctus">Sanctus</a> and <a href="https://darksouls.wiki.fextralife.com/Grant">Grant</a></li>
<li data-id="playthrough_22_14">Quickly kill the <a href="https://darksouls.wiki.fextralife.com/Crystal+Lizard">Crystal Lizard</a> in the tunnel</li>
<li data-id="playthrough_22_15">Continue through the tunnel and down the ledge, clear out the Pinwheels and grab the soul and <a href="https://darksouls.wiki.fextralife.com/White+Titanite+Slab">White Titanite Slab</a></li>
<li data-id="playthrough_22_16">Kill <a href="https://darksouls.wiki.fextralife.com/Nito">Gravelord Nito</a>
<ul>
<li data-id="playthrough_22_16_1">After the fight pick up the <a href="https://darksouls.wiki.fextralife.com/Paladin+Set">Paladin Set</a>, though you may need to reload your game to get it to appear</li>
</ul>
</li>
<li data-id="playthrough_22_17">Rest at the bonfire, warp to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a></li>
</ul>
<a name="Miscellaneous"></a>
<h3>Miscellaneous Tasks <span id="playthrough_totals_23"></span></h3>
<ul>
<li data-id="playthrough_23_1">Drop down the hole, offer the Lord Souls, warp back to the shrine and talk to <a href="https://darksouls.wiki.fextralife.com/Anastacia+of+Astora">Anastacia of Astora</a> to fully kindle the shrine bonfire</li>
<li data-id="playthrough_23_2">Talk to <a href="https://darksouls.wiki.fextralife.com/Patches+the+Hyena">Patches</a>, learn his Prostration gesture and buy anything you need from him
<ul>
<li data-id="playthrough_23_2_1"><a href="https://darksouls.wiki.fextralife.com/Heal">Heal</a> miracle @ 5,00 souls</li>
<li data-id="playthrough_23_2_2"><a href="https://darksouls.wiki.fextralife.com/Great+Heal+Excerpt">Great Heal Excerpt</a> miracle @ 10,000 souls</li>
<li data-id="playthrough_23_2_3"><a href="https://darksouls.wiki.fextralife.com/Mask+of+the+Father">Mask of the Father</a> @ 8,000 souls</li>
<li data-id="playthrough_23_2_4"><a href="https://darksouls.wiki.fextralife.com/Mask+of+the+Mother">Mask of the Mother</a> @ 8,000 souls</li>
<li data-id="playthrough_23_2_5"><a href="https://darksouls.wiki.fextralife.com/Mask+of+the+Child">Mask of the Child</a> @ 8,000 souls</li>
<li data-id="playthrough_23_2_6">You can also buy other various items and weapons</li>
</ul>
</li>
<li data-id="playthrough_23_3">Take a flight back to <a href="https://darksouls.wiki.fextralife.com/Northern+Undead+Asylum">Undead Asylum</a> and trade items with <a href="https://darksouls.wiki.fextralife.com/Snuggly">Snuggly</a>
<ul>
<li data-id="playthrough_23_3_1"><a href="https://darksouls.wiki.fextralife.com/Sunlight+Maggot">Sunlight Maggot</a> will give <a href="https://darksouls.wiki.fextralife.com/Old+Witch%27s+Ring">Old Witch's Ring</a></li>
<li data-id="playthrough_23_3_2"><a href="https://darksouls.wiki.fextralife.com/Sack">Sack</a> will give <a href="https://darksouls.wiki.fextralife.com/Demon%27s+Great+Hammer">Demon's Great Hammer</a></li>
<li data-id="playthrough_23_3_3"><a href="https://darksouls.wiki.fextralife.com/Skull+Lantern">Skull Lantern</a> will give <a href="https://darksouls.wiki.fextralife.com/Ring+of+Fog">Ring Of Fog</a></li>
<li data-id="playthrough_23_3_4">You can also get various other titanites and miscellaneous items</li>
</ul>
</li>
<li data-id="playthrough_23_4">Go to <a href="https://darksouls.wiki.fextralife.com/Undead+Parish">Undead Parish</a> and talk to <a href="https://darksouls.wiki.fextralife.com/Reah+of+Thorolund">Reah</a>, learn her Prayer gesture and buy any miracles you need</li>
<li data-id="playthrough_23_5">Go to <a href="https://darksouls.wiki.fextralife.com/Blacksmith+Andrei">Andre</a> and give him the <a href="https://darksouls.wiki.fextralife.com/Large+Divine+Ember">Large Divine Ember</a> and upgrade your weapon if needed</li>
<li data-id="playthrough_23_6">Go back in to the <a href="https://darksouls.wiki.fextralife.com/The+Catacombs">The Catacombs</a>, drop off the first bridge on to the second, drop down the ledges, go down the spiral staircase and drop down to <a href="https://darksouls.wiki.fextralife.com/Blacksmith+Vamos">Blacksmith Vamos</a></li>
<li data-id="playthrough_23_7">Give him the <a href="https://darksouls.wiki.fextralife.com/Large+Flame+Ember">Large Flame Ember</a> and <a href="https://darksouls.wiki.fextralife.com/Chaos+Flame+Ember">Chaos Flame Ember</a> and upgrade your weapon if needed</li>
<li data-id="playthrough_23_8">Return to a bonfire and warp to <a href="https://darksouls.wiki.fextralife.com/Anor+Londo">Anor Londo</a></li>
<li data-id="playthrough_23_9">Put on the <a href="https://darksouls.wiki.fextralife.com/Darkmoon+Seance+Ring">Darkmoon Seance Ring</a>, go down the elevator and turn the platform lever anti-clockwise and rest at the bonfire</li>
<li data-id="playthrough_23_10">Pick up the <a href="https://darksouls.wiki.fextralife.com/Ring+of+The+Sun%27s+Firstborn">Ring of The Sun's Firstborn</a> and optonally join the <a href="https://darksouls.wiki.fextralife.com/Blade+of+the+Dark+Moon">Blade of the Dark Moon</a> covenant</li>
<li data-id="playthrough_23_11">If you don't want to join the covenant then go through the fog gate and kill <a href="https://darksouls.wiki.fextralife.com/Dark+Sun+Gwyndolin">Dark Sun Gwyndolin</a>
<ul>
<li data-id="playthrough_23_11_1">Get the <a href="https://darksouls.wiki.fextralife.com/Sunlight+Blade">Sunlight Blade</a> miracle and <a href="https://darksouls.wiki.fextralife.com/Brass+Set">Brass Set</a> from the chests after killing her</li>
<li data-id="playthrough_23_11_2">You can now buy the <a href="https://darksouls.wiki.fextralife.com/Gwyndolin+Moonlight+Set">Gwyndolin Moonlight Set</a> from <a href="https://darksouls.wiki.fextralife.com/Domhnall+of+Zena">Domhnall of Zena</a></li>
<li data-id="playthrough_23_11_3"><a href="https://darksouls.wiki.fextralife.com/Darkmoon+Knightess">Darkmoon Knightess</a> will now attack you if you return to the first <a href="https://darksouls.wiki.fextralife.com/Anor+Londo">Anor Londo</a> bonfire and will drop a <a href="https://darksouls.wiki.fextralife.com/Fire+Keeper+Soul">Firekeeper Soul</a></li>
</ul>
</li>
<li data-id="playthrough_23_12">Remember to go back return the platform to the up position before leaving here</li>
<li data-id="playthrough_23_13">Optionally go and attack <a href="https://darksouls.wiki.fextralife.com/Gwynevere">Gwynevere</a> to turn <a href="https://darksouls.wiki.fextralife.com/Anor+Londo">Anor Londo</a> dark and get invaded by members of the <a href="https://darksouls.wiki.fextralife.com/Blade+of+the+Dark+Moon">Blade of the Dark Moon</a> covenant</li>
<li data-id="playthrough_23_14">If you don't have the DLC go down to <a href="#New_Game_Plus">New Game Plus Preparation</a></li>
</ul>
<a name="Sanctuary_Garden"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Sanctuary+Garden">Sanctuary Guarden</a> / <a href="https://darksouls.wiki.fextralife.com/Oolacile+Sanctuary">Oolacile Sanctuary</a> / <a href="https://darksouls.wiki.fextralife.com/Royal+Woods">Royal Woods</a> (DLC Only) <span id="playthrough_totals_24"></span></h3>
<ul>
<li data-id="playthrough_24_1">Go down to <a href="https://darksouls.wiki.fextralife.com/Darkroot+Basin">Darkroot Basin</a> and examine the portal found near where you fought the <a href="https://darksouls.wiki.fextralife.com/Golden+Crystal+Golem">Golden Crystal Golem</a></li>
<li data-id="playthrough_24_2">Rest at the bonfire and continue through the fog gate and kill the <a href="https://darksouls.wiki.fextralife.com/Sanctuary+Guardian">Sanctuary Guardian</a>
<ul>
<li data-id="playthrough_24_2_1">Cut off the tail to get the <a href="https://darksouls.wiki.fextralife.com/Guardian+Tail">Guardian Tail</a></li>
</ul>
</li>
<li data-id="playthrough_24_3">Continue up the path to <a href="https://darksouls.wiki.fextralife.com/Oolacile+Sanctuary">Oolacile Sanctuary</a>, rest at the bonfire and talk to <a href="https://darksouls.wiki.fextralife.com/Elizabeth">Elizabeth</a>, answering Yes to her question</li>
<li data-id="playthrough_24_4">Get the <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a> from the corpse, head down to <a href="https://darksouls.wiki.fextralife.com/Royal+Woods">Royal Woods</a> and clear out the Ents and the Stone Guardians from the first section</li>
<li data-id="playthrough_24_5">Get the <a href="https://darksouls.wiki.fextralife.com/Guardian+Set">Guardian Gauntlets</a> from the tower on the right side, the <a href="https://darksouls.wiki.fextralife.com/Blue+Titanite+Slab">Blue Titanite Slab</a> from the chest in the center and the <a href="https://darksouls.wiki.fextralife.com/Guardian+Set">Guardian Leggings</a> from the left side</li>
<li data-id="playthrough_24_6">Cross the bridge on the left, try not to get squashed by <a href="https://darksouls.wiki.fextralife.com/Black+Dragon+Kalameet">Kalameet</a>, quickly kill the <a href="https://darksouls.wiki.fextralife.com/Crystal+Lizard">Crystal Lizard</a> and watch out for the Stone Guardian that appears</li>
<li data-id="playthrough_24_7">Jump down and across the gap on the left and kill the Ents and the Stone Guardian</li>
<li data-id="playthrough_24_8">Get the <a href="https://darksouls.wiki.fextralife.com/Guardian+Set">Guardian Helm</a> from the ledge, and the <a href="https://darksouls.wiki.fextralife.com/Guardian+Set">Guardian Armor</a> and <a href="https://darksouls.wiki.fextralife.com/Ammunition#Gough's%20Great%20Arrow">Gough's Great Arrows</a> from near where the Stone Guardian was</li>
<li data-id="playthrough_24_9">Get the <a href="https://darksouls.wiki.fextralife.com/Elizabeth%27s+Mushroom">Elizabeth's Mushroom</a> from the hidden alcove</li>
<li data-id="playthrough_24_10">Jump back across the gap and clear out the Ents on the left and get the <a href="https://darksouls.wiki.fextralife.com/Gold+Coin">Gold Coin</a></li>
<li data-id="playthrough_24_11">Kill the two Stone Giants near the tower and quickly kill the <a href="https://darksouls.wiki.fextralife.com/Crystal+Lizard">Crystal Lizard</a></li>
<li data-id="playthrough_24_12">Get the soul from behind the tower, go down on the elevator and then at the bottom grab the soul from around the corner</li>
<li data-id="playthrough_24_13">Go across the bridge and talk to <a href="https://darksouls.wiki.fextralife.com/Marvelous+Chester">Marvelous Chester</a>, answering Yes to his question, and buy anything you need from him and use the elevator to open up the shortcut</li>
<li data-id="playthrough_24_14">Go through the fog gate and kill <a href="https://darksouls.wiki.fextralife.com/Artorias+the+Abysswalker">Artorias the Abysswalker</a></li>
<li data-id="playthrough_24_15">Reload your game and kill <a href="https://darksouls.wiki.fextralife.com/Lord%27s+Blade+Ciaran">Lord's Blade Ciaran</a> who should now have appeared to get the <a href="https://darksouls.wiki.fextralife.com/Lord%27s+Blade+Set">Lord's Blade Set</a>, the <a href="https://darksouls.wiki.fextralife.com/Dark+Silver+Tracer">Dark Silver Tracer</a> and the <a href="https://darksouls.wiki.fextralife.com/Gold+Tracer">Gold Tracer</a></li>
<li data-id="playthrough_24_16">Leave by the other door and in to <a href="https://darksouls.wiki.fextralife.com/Oolacile+Township">Oolacile Township</a> and rest at the bonfire</li>
<li data-id="playthrough_24_17">Go back in to <a href="https://darksouls.wiki.fextralife.com/Royal+Woods">Royal Woods</a> and head down the path beside the elevator in to the valley and at the botton get the soul on the left</li>
<li data-id="playthrough_24_18">Continue along the valley, down the ladder, quickly kill the <a href="https://darksouls.wiki.fextralife.com/Crystal+Lizard">Crystal Lizard</a>, piss off <a href="https://darksouls.wiki.fextralife.com/Black+Dragon+Kalameet">Black Dragon Kalameet</a> enough that he attacks you once and return to the bonfire</li>
</ul>
<a name="Oolacile_Township"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Oolacile+Township">Oolacile Township</a> (DLC Only) <span id="playthrough_totals_25"></span></h3>
<ul>
<li data-id="playthrough_25_1">Make sure you have either a <a href="https://darksouls.wiki.fextralife.com/Skull+Lantern">Skull Lantern</a>, <a href="https://darksouls.wiki.fextralife.com/Sunlight+Maggot">Sunlight Maggot</a> or the <a href="https://darksouls.wiki.fextralife.com/Cast+Light">Cast Light</a> sorcery</li>
<li data-id="playthrough_25_2">Make sure you are human and kill invading <a href="http://darksouls.wiki.fextralife.com/Marvelous+Chester"></a>Marvelous Chester</li>
<li data-id="playthrough_25_3">Continue down the steps and stick to the right, grabbing the souls along the way, go around the back of the building and roll down to the next ledge</li>
<li data-id="playthrough_25_4">Use your light source on the illusory wall on the building to the left and get the <a href="https://darksouls.wiki.fextralife.com/Silver+Pendant">Silver Pendant</a> from the chest</li>
<li data-id="playthrough_25_5">Kill everything in the other building and get the <a href="https://darksouls.wiki.fextralife.com/Dark+Orb">Dark Orb</a> sorcery from the chest and the <a href="https://darksouls.wiki.fextralife.com/Carvings">I'm Sorry carving</a> from the Bloathead Mage on the outside ledge</li>
<li data-id="playthrough_25_6">Go back to the main path, cross the wooden bridge, get the <a href="https://darksouls.wiki.fextralife.com/Carvings">Very Good! carving</a> from the mimic and take out the Bloathead Mage down below with ranged attacks</li>
<li data-id="playthrough_25_7">Continue down and across the walkway, very carefully clear out the ground floor of the building and get the <a href="https://darksouls.wiki.fextralife.com/Rubbish">Rubbish</a>, <a href="https://darksouls.wiki.fextralife.com/Dark+Fog">Dark Fog</a> sorcery and soul</li>
<li data-id="playthrough_25_8">Go upstairs, use your light source on the illusory wall and get the <a href="https://darksouls.wiki.fextralife.com/Red+Titanite+Chunk">Red Titanite Chunk</a> from the chest</li>
<li data-id="playthrough_25_9">Head back across the rafters, roll down to the balcony and get the <a href="https://darksouls.wiki.fextralife.com/Crest+Key">Crest Key</a> from the mimic</li>
<li data-id="playthrough_25_10">Drop on to the roof from the next room and go up and across the roof to get a <a href="https://darksouls.wiki.fextralife.com/twin+Humanities">Twin Humanities</a></li>
<li data-id="playthrough_25_11">Drop off the roof, go across to open up the elevator shortcut and rest at the bonfire</li>
<li data-id="playthrough_25_12">Go back towards the colosseum, go up the stairs to the right and unlock the door using the <a href="https://darksouls.wiki.fextralife.com/Crest+Key">Crest Key</a></li>
<li data-id="playthrough_25_13">Talk to <a href="https://darksouls.wiki.fextralife.com/Hawkeye+Gough">Hawkeye Gough</a> twice, answering Yes to both his questions, so that he grounds <a href="https://darksouls.wiki.fextralife.com/Black+Dragon+Kalameet">Kalameet</a>, and buy the <a href="https://darksouls.wiki.fextralife.com/Carvings">Hello and Thank You carvings</a></li>
<li data-id="playthrough_25_14">Go back in to <a href="https://darksouls.wiki.fextralife.com/Royal+Woods">Royal Woods</a> and down to the valley and kill <a href="https://darksouls.wiki.fextralife.com/Black+Dragon+Kalameet">Kalameet</a>
<ul>
<li data-id="playthrough_25_14_1">Cut off his tail to get the <a href="https://darksouls.wiki.fextralife.com/Obsidian+Greatsword">Obsidian Greatsword</a></li>
<li data-id="playthrough_25_14_2">When you kill him he will drop the <a href="https://darksouls.wiki.fextralife.com/Calamity+Ring">Calamity Ring</a></li>
<li data-id="playthrough_25_14_3">When he's dead pick up the souls, the <a href="https://darksouls.wiki.fextralife.com/Titanite+Slab">Titanite Slab</a> from the chest underneath the waterfall and the <a href="https://darksouls.wiki.fextralife.com/Ammunition#Gough's%20Great%20Arrow">Gough's Great Arrows</a> from the end of the valley</li>
</ul>
</li>
<li data-id="playthrough_25_15">Return to the colosseum and go back up to talk to <a href="https://darksouls.wiki.fextralife.com/Hawkeye+Gough">Hawkeye Gough</a> to get <a href="https://darksouls.wiki.fextralife.com/Gough's+Greatbow">Gough's Greatbow</a></li>
<li data-id="playthrough_25_16">Go back down the elevator shortcut, carefully clear out the Bloatheads and then kill the Chained Prisoner to get the Helm and Leggings from the <a href="https://darksouls.wiki.fextralife.com/Chain+Set">Chain Set</a></li>
<li data-id="playthrough_25_17">Call the elevator, kill the Bloathead that arrives with it and rest at the bonfire</li>
</ul>
<a name="Chasm_of_the_Abyss"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Chasm+of+the+Abyss">Chasm of the Abyss</a> (DLC Only) <span id="playthrough_totals_26"></span></h3>
<ul>
<li data-id="playthrough_26_1">Make sure you have your light source equipped, go down the path, quickly kill the <a href="https://darksouls.wiki.fextralife.com/Crystal+Lizard">Crystal Lizard</a>, kill all the Bloatheads and get the <a href="https://darksouls.wiki.fextralife.com/Dark+Bead">Dark Bead</a> sorcery</li>
<li data-id="playthrough_26_2">Continue down, walk on to the illusory floor on the left, follow the apparition and use the elevator to open a shortcut back to <a href="https://darksouls.wiki.fextralife.com/Royal+Woods">Royal Woods</a></li>
<li data-id="playthrough_26_3">Go back down, hit the illusory wall, save <a href="https://darksouls.wiki.fextralife.com/Great+Grey+Wolf+Sif">Puppy Sif</a> from the Humanity Spirits and pick up the <a href="https://darksouls.wiki.fextralife.com/Cleansing+Greatshield">Cleansing Greatshield</a> </li>
<li data-id="playthrough_26_4">Go back out and down to the left, kill all the Humanity Spirits and get the <a href="https://darksouls.wiki.fextralife.com/Black+Flame">Black Flame</a> pyromancy</li>
<li data-id="playthrough_26_5">Head back up, kill the Bloathead Mage and get the <a href="https://darksouls.wiki.fextralife.com/twin+Humanities">Twin Humanities</a></li>
<li data-id="playthrough_26_6">Kill the big group of Humanity Spirits and drop down to get the <a href="https://darksouls.wiki.fextralife.com/Carvings">Help Me! carving</a></li>
<li data-id="playthrough_26_7">Drop down again, walk back up, go down the stone pillar, get the <a href="https://darksouls.wiki.fextralife.com/White+Titanite+Slab">White Titanite Slab</a> and put on the <a href="https://darksouls.wiki.fextralife.com/Silver+Pendant">Silver Pendant</a></li>
<li data-id="playthrough_26_8">Kill <a href="https://darksouls.wiki.fextralife.com/Manus%2C+Father+of+the+Abyss">Manus, Father of the Abyss</a>
<ul>
<li data-id="playthrough_26_8_1">You can summon <a href="https://darksouls.wiki.fextralife.com/Great+Grey+Wolf+Sif">Sif</a>, if you saved him, using the summon sign inside the boss area</li>
</ul>
</li>
<li data-id="playthrough_26_9">Rest at the bonfire, warp to <a href="https://darksouls.wiki.fextralife.com/Oolacile+Sanctuary">Oolacile Sanctuary</a> and talk to <a href="https://darksouls.wiki.fextralife.com/Elizabeth">Elizabeth</a> to get three <a href="https://darksouls.wiki.fextralife.com/Elizabeth%27s+Mushroom">Elizabeth's Mushrooms</a></li>
<li data-id="playthrough_26_10">Warp back to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a></li>
</ul>
<a name="New_Game_Plus"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/New+Game+Plus">New Game Plus Preparation</a> <span id="playthrough_totals_27"></span></h3>
<ul>
<li data-id="playthrough_27_1">Farm some <a href="https://darksouls.wiki.fextralife.com/Humanity">Humanity</a> if needed and kindle all the <a href="https://darksouls.wiki.fextralife.com/Bonfire">Bonfires</a></li>
<li data-id="playthrough_27_2">If you missed any <a href="https://darksouls.wiki.fextralife.com/Upgrades#Ore">Titanites</a> or <a href="https://darksouls.wiki.fextralife.com/Crystal+Lizard">Crystal Lizards</a> go and get them</li>
<li data-id="playthrough_27_3">Visit the vendors and buy any items, miracles, sorceries and pyromancies that you will need</li>
<li data-id="playthrough_27_4"><a href="https://darksouls.wiki.fextralife.com/Upgrades">Upgrade</a> any weapons you will need</li>
<li data-id="playthrough_27_5">Get any items you need from <a href="https://darksouls.wiki.fextralife.com/Snuggly">Snuggly</a></li>
<li data-id="playthrough_27_6">Buy any consumables you need from the various vendors, like arrows</li>
<li data-id="playthrough_27_7">Buy any armor sets you need from <a href="https://darksouls.wiki.fextralife.com/Domhnall+of+Zena">Domhnall of Zena</a></li>
<li data-id="playthrough_27_8">Kill <a href="https://darksouls.wiki.fextralife.com/The+Ancient+Spider+Queen">The Ancient Spider Queen</a> and <a href="https://darksouls.wiki.fextralife.com/Darkmoon+Knightess">Darkmoon Knightess</a> to get their <a href="https://darksouls.wiki.fextralife.com/Fire+Keeper+Soul">Firekeeper Soul</a> and talk to <a href="https://darksouls.wiki.fextralife.com/Anastacia+of+Astora">Anastacia</a> to reinforce your <a href="https://darksouls.wiki.fextralife.com/Estus+Flask">Estus Flask</a></li>
<li data-id="playthrough_27_9">Kill all the <a href="https://darksouls.wiki.fextralife.com/Merchants#Blacksmiths">Blacksmiths</a> to get their items</li>
<li data-id="playthrough_27_10">Kill all the other <a href="https://darksouls.wiki.fextralife.com/Merchants">Merchants</a> to get their drops</li>
<li data-id="playthrough_27_11">Return to <a href="https://darksouls.wiki.fextralife.com/Firelink+Shrine">Firelink Shrine</a></li>
</ul>
<a name="Kiln_of_the_First_Flame"></a>
<h3><a href="https://darksouls.wiki.fextralife.com/Kiln+of+the+first+flame">Kiln of the First Flame</a> (Levels 60-80) <span id="playthrough_totals_28"></span></h3>
<ul>
<li data-id="playthrough_28_1">Drop down the hole and if you haven't already then offer the Lord Souls</li>
<li data-id="playthrough_28_2">Farm the <a href="https://darksouls.wiki.fextralife.com/Black+Knight">Black Knights</a> for chunks</li>
<li data-id="playthrough_28_3">Grab the <a href="https://darksouls.wiki.fextralife.com/Black+Knight+Set">Black Knight Set</a> from the beam</li>
<li data-id="playthrough_28_4">Optionally do some <a href="https://darksouls.wiki.fextralife.com/Guide+to+Co-operative+Play">jolly co-op</a> to get some humanity and souls. You should be level 65-80+ to get summoned</li>
<li data-id="playthrough_28_5">Kill <a href="https://darksouls.wiki.fextralife.com/Gwyn+Lord+of+Cinder">Gwyn Lord of Cinder</a>
<ul>
<li data-id="playthrough_28_5_1">After killing him you can use the bonfire to get the good ending and the To Link The Fire achievement</li>
<li data-id="playthrough_28_5_2">Or you can leave the area to get the evil ending and the Dark Lord achievement</li>
</ul>
</li>
<li data-id="playthrough_28_6">Congratz on completing one of the best RPGs ever made. Now go <a href="#Undead_Asylum">do it again</a>!</li>
</ul>
</div>