-
Notifications
You must be signed in to change notification settings - Fork 39
/
index.html
2334 lines (2262 loc) · 388 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" xmlns="http://www.w3.org/1999/html" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8">
<title>Dark Souls 2 Cheat Sheet</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Cheat sheet for Dark Souls 2. Checklist of things to do, items to get etc.">
<meta name="author" content="Stephen McNabb">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="https://code.jquery.com/jquery-latest.js"></script>
<script src="js/jstorage.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript">
var profilesKey = 'ds2_profiles';
</script>
<script src="js/main.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-H2NJERJELT"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-H2NJERJELT');
</script>
</head>
<body>
<div class="container">
<div class="navbar">
<div class="navbar-inner">
<h1>Dark Souls 2 Cheat Sheet</h1>
<ul class="nav nav-tabs">
<li class="active"><a href="#tabPlaythrough" data-toggle="tab">Playthrough</a></li>
<li><a href="#tabChecklists" data-toggle="tab">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" style="float: right;">
<div class="input-append">
<select id="profiles">
</select>
<button class="btn" type="button" id="profileAdd">Add</button>
<button class="btn" type="button" id="profileEdit">Edit</button>
</div>
</div>
</div>
</div>
<div id="intro">
<p>
The following is a checklist and set of information I use when playing Dark Souls 2 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="http://darksouls2.wikidot.com/">Dark Souls 2 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">
<div class="tab-pane active" id="tabPlaythrough">
<h2>Playthrough Checklist <span id="playthrough_overall_total"></span></h2>
<ul>
<li><a href="#Things_Betwixt">Things Betwixt</a> (Level 1) <span id="playthrough_nav_totals_1"></span></li>
<li><a href="#Majula">Majula</a> (Levels 1-10) <span id="playthrough_nav_totals_2"></span></li>
<li><a href="#Forest_of_Fallen_Giants">Forest of Fallen Giants</a> (Levels 10-20) <span id="playthrough_nav_totals_3"></span></li>
<li><a href="#Heides_Tower_Of_Flame">Heide's Tower Of Flame</a> (Levels 30-40) <span id="playthrough_nav_totals_4"></span></li>
<li><a href="#No_Mans_Wharf">No-Man's Wharf</a> (Levels 35-45) <span id="playthrough_nav_totals_5"></span></li>
<li><a href="#The_Pit">The Pit / Grave Of Saints</a> (Levels 45-55) <span id="playthrough_nav_totals_6"></span></li>
<li><a href="#The_Lost_Bastille">The Lost Bastille / Belfry Luna</a> (Levels 55-65) <span id="playthrough_nav_totals_7"></span></li>
<li><a href="#Huntsmans_Copse">Huntsman's Copse / Undead Purgatory</a> (Level 55-65) <span id="playthrough_nav_totals_8"></span></li>
<li><a href="#Harvest_Valley">Harvest Valley</a> (Levels 60-70) <span id="playthrough_nav_totals_9"></span></li>
<li><a href="#Earthen_Peak">Earthen Peak</a> (Levels 65-75) <span id="playthrough_nav_totals_10"></span></li>
<li><a href="#The_Gutter">The Gutter</a> (Levels 65-75) <span id="playthrough_nav_totals_11"></span></li>
<li><a href="#Black_Gulch">Black Gulch</a> (Levels 65-75) <span id="playthrough_nav_totals_12"></span></li>
<li><a href="#Iron_Keep">Iron Keep / Belfry Sol</a> (Levels 80-90) <span id="playthrough_nav_totals_13"></span></li>
<li><a href="#Shaded_Woods">Shaded Woods</a> (Levels 80-90) <span id="playthrough_nav_totals_14"></span></li>
<li><a href="#Doors_Of_Pharos">Doors Of Pharos</a> (Levels 80-90) <span id="playthrough_nav_totals_15"></span></li>
<li><a href="#Brightstone_Cove_Tseldora">Brightstone Cove Tseldora</a> (Levels 90-100) <span id="playthrough_nav_totals_16"></span></li>
<li><a href="#Sinners_Rise">Sinner's Rise / Shrine Of Winter</a> (Levels 95-105) <span id="playthrough_nav_totals_18"></span></li>
<li><a href="#Drangleic_Castle">Drangleic Castle / King's Passage</a> (Levels 95-105) <span id="playthrough_nav_totals_19"></span></li>
<li><a href="#Shrine_Of_Amana">Shrine Of Amana</a> (Levels 95-105) <span id="playthrough_nav_totals_20"></span></li>
<li><a href="#Undead_Crypt">Undead Crypt</a> (Levels 100-110) <span id="playthrough_nav_totals_21"></span></li>
<li><a href="#Aldias_Keep">Aldia's Keep</a> (Levels 100-110) <span id="playthrough_nav_totals_22"></span></li>
<li><a href="#Dragon_Aerie">Dragon Aerie</a> (Levels 105-115) <span id="playthrough_nav_totals_23"></span></li>
<li><a href="#Dragon_Shrine">Dragon Shrine</a> (Levels 105-115) <span id="playthrough_nav_totals_24"></span></li>
<li><a href="#Memory_Of_Orro">Memory Of Orro</a> (Levels 110-120) <span id="playthrough_nav_totals_25"></span></li>
<li><a href="#Memory_Of_Jeigh">Memory Of Jeigh</a> (Levels 110-120) <span id="playthrough_nav_totals_26"></span></li>
<li><a href="#Memory_Of_Vammar">Memory Of Vammar</a> (Levels 110-120) <span id="playthrough_nav_totals_27"></span></li>
<li><a href="#King_Vendrick">King Vendrick</a> (Levels 110-120) <span id="playthrough_nav_totals_28"></span></li>
<li><a href="#Ancient_Dragons_Memories">Ancient Dragon Memories</a> (Levels 110-120) <span id="playthrough_nav_totals_29"></span></li>
<li><a href="#Throne_Of_Want">Throne Of Want</a> (Levels 110-120) <span id="playthrough_nav_totals_30"></span></li>
<li><a href="#Miscellaneous_Tasks">Miscellaneous Tasks</a> <span id="playthrough_nav_totals_31"></span></li>
<li><a href="#Dark_Chasm_Of_Old">Dark Chasm Of Old</a> (Levels 95-105) <span id="playthrough_nav_totals_32"></span></li>
<li><a href="#New_Game_Plus">New Game Plus Preparation</a> <span id="playthrough_nav_totals_33"></span></li>
</ul>
<hr />
<a name="Things_Betwixt"></a>
<h3><a href="http://darksouls2.wikidot.com/things-betwixt">Things Betwixt</a> (Level 1) <span id="playthrough_totals_1"></span></h3>
<ul>
<li data-id="playthrough_1_1">Head through the gap in the wall, turn right and in to the hidden area beside the fallen tree to get the <a href="http://darksouls2.wikidot.com/rusted-coin">Rusted Coin</a></li>
<li data-id="playthrough_1_2">Enter the house and choose your name, class, starting gift and appearance</li>
<li data-id="playthrough_1_3">Talk to <a href="http://darksouls2.wikidot.com/housekeeper-milibeth">Housekeeper Milibeth</a> and the <a href="http://darksouls2.wikidot.com/old-firekeepers">Old Firekeepers</a></li>
<li data-id="playthrough_1_4">Go upstairs and get the <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a> from the chest</li>
<li data-id="playthrough_1_5">Go out the door beside the women, destroy the cart to get the <a href="http://darksouls2.wikidot.com/soul-of-a-lost-undead">Soul Of A Lost Undead</a> and <a href="http://darksouls2.wikidot.com/torch">Torch</a>, and rest at the bonfire</li>
<li data-id="playthrough_1_6">Go back through the house and take the hidden path below the bridge to get the <a href="http://darksouls2.wikidot.com/small-smooth-silky-stone">Small Smooth and Silky Stone</a></li>
<li data-id="playthrough_1_7">Go back up, cross the bridge, through the bushes and kill the <a href="http://darksouls2.wikidot.com/ogre">Ogre</a> to get the <a href="http://darksouls2.wikidot.com/stone-ring">Stone Ring</a></li>
<li data-id="playthrough_1_8">Get the <a href="http://darksouls2.wikidot.com/gold-pine-resin">Gold Pine Resin</a> from the corpse</li>
<li data-id="playthrough_1_9">Return to the bonfire and continue to the tutorial section</li>
<li data-id="playthrough_1_10">Go through the first fog gate, complete the section, getting the <a href="http://darksouls2.wikidot.com/dagger">Dagger</a> and <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a> along the way</li>
<li data-id="playthrough_1_11">Leave the <a href="http://darksouls2.wikidot.com/small-smooth-silky-stone">Small Smooth and Silky Stone</a> on the nest for <a href="http://darksouls2.wikidot.com/snuggly-the-crow">Sparkling Sisters Dyna and Tillo</a> to get a random item and kick down the ladder</li>
<li data-id="playthrough_1_12">Drop off the ledge to get the <a href="http://darksouls2.wikidot.com/soul-of-a-nameless-soldier">Soul of a Nameless Soldier</a> and drop down to the main path</li>
<li data-id="playthrough_1_13">Go through the second fog gate and jump the gap to get the <a href="http://darksouls2.wikidot.com/amber-herb">Amber Herbs</a></li>
<li data-id="playthrough_1_14">Jump back and go up the ladder, drop down and open the door to get the <a href="http://darksouls2.wikidot.com/cracked-red-eye-orb">Cracked Red Eye Orb</a></li>
<li data-id="playthrough_1_15">Drop down to the main area and go through the third fog gate</li>
<li data-id="playthrough_1_16">Push down the tree, cross it, go outside and push down the second tree shortcut</li>
<li data-id="playthrough_1_17">Kill the two <a href="http://darksouls2.wikidot.com/ogre">Ogres</a></li>
<li data-id="playthrough_1_18">Optionally sleep in the coffin to change the sex of your character</li>
<li data-id="playthrough_1_19">Go back to the house and talk to <a href="http://darksouls2.wikidot.com/housekeeper-milibeth">Housekeeper Milibeth</a> to get the <a href="http://darksouls2.wikidot.com/handmaid-s-ladle">Handmaid's Ladle</a></li>
<li data-id="playthrough_1_20">Head back to the tutorial section and continue on to <a href="http://darksouls2.wikidot.com/majula">Majula</a></li>
<li data-id="playthrough_1_21">On the way drop off to the right between the boulders to get <a href="http://darksouls2.wikidot.com/morning-star">Morning Star</a>, <a href="http://darksouls2.wikidot.com/clerics-s-sacred-chime">Cleric's Sacred Chime</a> and <a href="http://darksouls2.wikidot.com/binoculars">Binoculars</a></li>
</ul>
<a name="Majula"></a>
<h3><a href="http://darksouls2.wikidot.com/majula">Majula</a> (Levels 1-10) <span id="playthrough_totals_2"></span></h3>
<ul>
<li data-id="playthrough_2_1">Rest at the bonfire and then talk to the <a href="http://darksouls2.wikidot.com/emerald-herald">Emerald Herald</a> to get your <a href="http://darksouls2.wikidot.com/estus-flask">Estus Flask</a> and level up</li>
<li data-id="playthrough_2_2">Go back up the path, pick up the <a href="http://darksouls2.wikidot.com/divine-blessing">Divine Blessing</a>, head through the gap on the right and talk to <a href="http://darksouls2.wikidot.com/benhart-of-jugo">Benhart Of Jugo</a></li>
<li data-id="playthrough_2_3">Optionally kill him to get the <a href="http://darksouls2.wikidot.com/bluemoon-greatsword">Bluemoon Greatsword</a>, and make <a href="http://darksouls2.wikidot.com/benhart-s-knight-helm">Benhart's Set</a> and <a href="http://darksouls2.wikidot.com/benhart-s-parma">Benhart's Parma</a> available to buy from <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a></li>
<li data-id="playthrough_2_4">Pick up the <a href="http://darksouls2.wikidot.com/lifegem">Lifegems</a> and <a href="http://darksouls2.wikidot.com/homeward-bone">Homeward Bones</a></li>
<li data-id="playthrough_2_5">Go in to the building, open the door on the left, kill the <a href="http://darksouls2.wikidot.com/bloated-hollow">Bloated Hollow</a> and get the <a href="http://darksouls2.wikidot.com/lloyd-s-talisman">Lloyd's Talismans</a></li>
<li data-id="playthrough_2_6">Return to the bonfire, go up the steps to talk to <a href="http://darksouls2.wikidot.com/saulden-the-crestfallen-warrior">Saulden The Crestfallen Warrior</a>, learn the Welcome gesture and optionally join the <a href="http://darksouls2.wikidot.com/way-of-blue">Way Of Blue</a> covenant</li>
<li data-id="playthrough_2_7">Optionally kill him to get the <a href="http://darksouls2.wikidot.com/ring-of-steel-protection">Ring Of Steel Protection</a></li>
<li data-id="playthrough_2_8">Examine the plaque beside him to see how many deaths there have been</li>
<li data-id="playthrough_2_9">Talk to <a href="http://darksouls2.wikidot.com/blacksmith-lenigrast">Blacksmith Lenigrast</a> to find out why he's outside, and pick up the <a href="http://darksouls2.wikidot.com/soul-of-a-nameless-soldier">Soul of a Nameless Soldier</a> and <a href="http://darksouls2.wikidot.com/lifegem">Lifegems</a> to the right of his house</li>
<li data-id="playthrough_2_10">Head towards the pit and get the <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a> from under the tent</li>
<li data-id="playthrough_2_11">Head down the steps to the right of the tent, go down the spiral staircase and get the <a href="http://darksouls2.wikidot.com/crimson-parma">Crimson Parma</a> shield from the chest</li>
<li data-id="playthrough_2_12">Go back up, up the hill to the Victor's Stone, pick up the <a href="http://darksouls2.wikidot.com/homeward-bone">Homeward Bones</a> and optionally join the <a href="http://darksouls2.wikidot.com/company-of-champions">Company of Champions</a> covenant if you're up for a harder challenge</li>
<li data-id="playthrough_2_13">Enter the house to the right of the pit, talk to <a href="http://darksouls2.wikidot.com/sweet-shalquoir">Sweet Shalquoir</a> and buy anything you need from her
<ul>
<li data-id="playthrough_2_13_1"><a href="http://darksouls2.wikidot.com/ring-of-the-evil-eye">Ring of the Evil Eye</a> @ 4,500 souls (Absorb HP from each defeated foe)</li>
<li data-id="playthrough_2_13_2"><a href="http://darksouls2.wikidot.com/silvercat-ring">Silvercat Ring</a> @ 13,400 souls (Reduces damage from falling)</li>
<li data-id="playthrough_2_13_3"><a href="http://darksouls2.wikidot.com/redeye-ring">Redeye Ring</a> @ 6,700 souls (Easier to be detected by enemies)</li>
<li data-id="playthrough_2_13_4"><a href="http://darksouls2.wikidot.com/name-engraved-ring">Name Engraved Ring</a> @ 5,500 souls (Easier to connect to players who chose the same god)</li>
<li data-id="playthrough_2_13_5"><a href="http://darksouls2.wikidot.com/ring-of-whispers">Ring of Whispers</a> @ 5,800 souls (Can hear the voices of foes)</li>
<li data-id="playthrough_2_13_6"><a href="http://darksouls2.wikidot.com/homeward-bone">Homeward Bones</a> @ 600 souls each (Max 10)</li>
<li data-id="playthrough_2_13_7"><a href="http://darksouls2.wikidot.com/prism-stone">Prism Stones</a> @ 300 souls each (Max 10)</li>
<li data-id="playthrough_2_13_8"><a href="http://darksouls2.wikidot.com/alluring-skull">Alluring Skulls</a> @ 300 souls each (Max 10)</li>
<li data-id="playthrough_2_13_9"><a href="http://darksouls2.wikidot.com/lloyd-s-talisman">Lloyd's Talisman</a> @ 1,600 souls each (Max 10)</li>
</ul>
</li>
<li data-id="playthrough_2_14">Later, when you kill <a href="http://darksouls2.wikidot.com/royal-rat-vanguard">Royal Rat Vanguard</a> and <a href="http://darksouls2.wikidot.com/royal-rat-authority">Royal Rat Authority</a> she will sell <a href="http://darksouls2.wikidot.com/flying-feline-boots">Flying Feline Boots</a> for 6,000 souls, which reduce falling damage</li>
<li data-id="playthrough_2_15">Go to the well to the right of the mansion and hit the stone to get the <a href="http://darksouls2.wikidot.com/estus-flask-shard">Estus Flask Shard</a></li>
<li data-id="playthrough_2_16">Head to the house on the other side of the pit, talk to <a href="http://darksouls2.wikidot.com/maughlin-the-armorer">Maughlin The Armorer</a> and buy any shields or armor you need from him
<ul>
<li data-id="playthrough_2_16_1"><a href="http://darksouls2.wikidot.com/iron-parma">Iron Parma</a> @ 1,200 souls</li>
<li data-id="playthrough_2_16_2"><a href="http://darksouls2.wikidot.com/silver-eagle-kite-shield">Silver Eagle Kite Shield</a> @ 1,500 souls</li>
<li data-id="playthrough_2_16_3"><a href="http://darksouls2.wikidot.com/twin-dragon-greatshield">Twin Dragon Greatshield</a> @ 2,000 souls</li>
<li data-id="playthrough_2_16_4"><a href="http://darksouls2.wikidot.com/standard-helm">Standard Helm</a> @ 800 souls</li>
<li data-id="playthrough_2_16_5"><a href="http://darksouls2.wikidot.com/hard-leather-armor">Hard Leather Armor</a> @ 1,260 souls</li>
<li data-id="playthrough_2_16_6"><a href="http://darksouls2.wikidot.com/hard-leather-gauntlets">Hard Leather Gauntlets</a> @ 940 souls</li>
<li data-id="playthrough_2_16_7"><a href="http://darksouls2.wikidot.com/hard-leather-boots">Hard Leather Boots</a> @ 1,100 souls</li>
<li data-id="playthrough_2_16_8"><a href="http://darksouls2.wikidot.com/infantry-boots">Infantry Boots</a> @ 1,000 souls</li>
<li data-id="playthrough_2_16_9"><a href="http://darksouls2.wikidot.com/infantry-gloves">Infantry Gloves</a> @ 750 souls</li>
<li data-id="playthrough_2_16_10"><a href="http://darksouls2.wikidot.com/infantry-armor">Infantry Armor</a> @ 850 souls</li>
<li data-id="playthrough_2_16_11"><a href="http://darksouls2.wikidot.com/falconer-helm">Falconer Helm</a> @ 900 souls</li>
<li data-id="playthrough_2_16_12"><a href="http://darksouls2.wikidot.com/falconer-armor">Falconer Armor</a> @ 1,500 souls</li>
<li data-id="playthrough_2_16_13"><a href="http://darksouls2.wikidot.com/falconer-gloves">Falconer Gloves</a> @ 1,050 souls</li>
<li data-id="playthrough_2_16_14"><a href="http://darksouls2.wikidot.com/falconer-boots">Falconer Boots</a> @ 1,200 souls</li>
</ul>
</li>
<li data-id="playthrough_2_17">If you spend 1,000 souls with him he will sell
<ul>
<li data-id="playthrough_2_17_1"><a href="http://darksouls2.wikidot.com/royal-soldier-helm">Royal Soldier Helm</a> @ 1,600 souls</li>
<li data-id="playthrough_2_17_2"><a href="http://darksouls2.wikidot.com/royal-soldier-armor">Royal Soldier Armor</a> @ 2,700 souls</li>
<li data-id="playthrough_2_17_3"><a href="http://darksouls2.wikidot.com/royal-soldier-gauntlets">Royal Soldier Gauntlets</a> @ 1,900 souls</li>
<li data-id="playthrough_2_17_4"><a href="http://darksouls2.wikidot.com/royal-soldier-leggings">Royal Soldier Leggings</a> @ 2,200 souls</li>
<li data-id="playthrough_2_17_5"><a href="http://darksouls2.wikidot.com/elite-knight-helm">Elite Knight Helm</a> @ 2,200 souls</li>
<li data-id="playthrough_2_17_6"><a href="http://darksouls2.wikidot.com/elite-knight-armor">Elite Knight Armor</a> @ 4,000 souls</li>
<li data-id="playthrough_2_17_7"><a href="http://darksouls2.wikidot.com/elite-knight-gloves">Elite Knight Gloves</a> @ 2,500 souls</li>
<li data-id="playthrough_2_17_8"><a href="http://darksouls2.wikidot.com/elite-knight-leggings">Elite Knight Leggings</a> @ 2,900 souls</li>
</ul>
</li>
<li data-id="playthrough_2_18">If you spend 16,000 souls with him he will sell
<ul>
<li data-id="playthrough_2_18_1"><a href="http://darksouls2.wikidot.com/alva-helm">Alva Helm</a> @ 5,200 souls</li>
<li data-id="playthrough_2_18_2"><a href="http://darksouls2.wikidot.com/alva-armor">Alva Armor</a> @ 8,000 souls</li>
<li data-id="playthrough_2_18_3"><a href="http://darksouls2.wikidot.com/alva-gauntlets">Alva Gauntlets</a> @ 6,000 souls</li>
<li data-id="playthrough_2_18_4"><a href="http://darksouls2.wikidot.com/alva-leggings">Alva Leggings</a> @ 7,100 souls</li>
</ul>
</li>
<li data-id="playthrough_2_19">If you spend 16,00 souls with him and talk to him with 0 soft souls he will give you the <a href="http://darksouls2.wikidot.com/aurous-set">Aurous Set</a></li>
<li data-id="playthrough_2_20">He will will also sell boss armor later when you kill certain bosses</li>
<li data-id="playthrough_2_21">Go up the ladder beside <a href="http://darksouls2.wikidot.com/maughlin-the-armorer">Maughlin</a> and get the <a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shard</a> from the chest</li>
<li data-id="playthrough_2_22">Go back to the <a href="http://darksouls2.wikidot.com/emerald-herald">Emerald Herald</a> and upgrade your <a href="http://darksouls2.wikidot.com/estus-flask">Estus Flask</a></li>
<li data-id="playthrough_2_23">Head down the path along the cliff, get the <a href="http://darksouls2.wikidot.com/rusted-coin">Rusted Coin</a> from the chest in the first building, and pull the switch to open the gate</li>
<li data-id="playthrough_2_24">Go through the gate, drop down to get the <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a>, jump across and pick up the <a href="http://darksouls2.wikidot.com/homeward-bone">Homeward Bone</a> and <a href="http://darksouls2.wikidot.com/soul-of-a-lost-undead">Soul Of A Lost Undead</a></li>
<li data-id="playthrough_2_25">Continue on to the <a href="http://darksouls2.wikidot.com/forest-of-fallen-giants">Forest of Fallen Giants</a></li>
</ul>
<a name="Forest_of_Fallen_Giants"></a>
<h3><a href="http://darksouls2.wikidot.com/forest-of-fallen-giants">Forest of Fallen Giants</a> (Levels 10-20) <span id="playthrough_totals_3"></span></h3>
<ul>
<li data-id="playthrough_3_1">Pick up the <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a> from the side of the river and rest at the bonfire</li>
<li data-id="playthrough_3_2">Clear out the area, pick up the <a href="http://darksouls2.wikidot.com/soul-of-a-lost-undead">Soul Of A Lost Undead</a> from the end of the river and go up the ladder</li>
<li data-id="playthrough_3_3">Clear out the area at the top of the ladder, go up the second ladder, get the <a href="http://darksouls2.wikidot.com/soul-of-a-nameless-soldier">Soul of a Nameless Soldier</a> and kill the <a href="http://darksouls2.wikidot.com/hollow-soldiers">Hollow Archer</a></li>
<li data-id="playthrough_3_4">Jump the gap and pick up the <a href="http://darksouls2.wikidot.com/shortsword">Shortsword</a> and the <a href="http://darksouls2.wikidot.com/soul-of-a-lost-undead">Soul Of A Lost Undead</a></li>
<li data-id="playthrough_3_5">Go back down to the main area and pick up the <a href="http://darksouls2.wikidot.com/broken-straight-sword">Broken Straight Sword</a>, <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a> and <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a></li>
<li data-id="playthrough_3_6">Kill the <a href="http://darksouls2.wikidot.com/heide-knight">Heide Knight</a> to get the <a href="http://darksouls2.wikidot.com/heide-knight-sword">Heide Knight Sword</a></li>
<li data-id="playthrough_3_7">Go back to the base of the second ladder, jump across to get the <a href="http://darksouls2.wikidot.com/throwing-knife">Throwing Knives</a> and the <a href="http://darksouls2.wikidot.com/soul-of-a-nameless-soldier">Soul of a Nameless Soldier</a>, and head back up</li>
<li data-id="playthrough_3_8">Go through the fog gate, go through the hole in the wall, clear the room and smash the cabinet to get the <a href="http://darksouls2.wikidot.com/wood-bolt">Wood Bolts</a></li>
<li data-id="playthrough_3_9">Run up the steps, watching out for the <a href="http://darksouls2.wikidot.com/hollow-soldiers">Hollow</a> archer and firebomb thrower</li>
<li data-id="playthrough_3_10">Get the <a href="http://darksouls2.wikidot.com/buckler">Buckler</a>, go up the ladder and pick up the <a href="http://darksouls2.wikidot.com/witching-urn">Witching Urns</a></li>
<li data-id="playthrough_3_11">Open the door and rest at the bonfire</li>
<li data-id="playthrough_3_12">Talk to <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a> and buy useful stuff from her
<ul>
<li data-id="playthrough_3_12_1"><a href="http://darksouls2.wikidot.com/lenigrast-s-key">Lenigrast's Key</a> @ 1,000 souls (Very Important)</li>
<li data-id="playthrough_3_12_2"><a href="http://darksouls2.wikidot.com/traveling-merchant-hat">Traveling Merchant Hat</a> @ 850 souls (Raises item discovery)</li>
<li data-id="playthrough_3_12_3"><a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a> @ 4000 souls</li>
<li data-id="playthrough_3_12_4"><a href="http://darksouls2.wikidot.com/hand-axe">Hand Axe</a> @ 700 souls</li>
<li data-id="playthrough_3_12_5"><a href="http://darksouls2.wikidot.com/club">Club</a> @ 800 souls</li>
<li data-id="playthrough_3_12_6"><a href="http://darksouls2.wikidot.com/caestus">Caestus</a> @ 1,000 souls</li>
<li data-id="playthrough_3_12_7"><a href="http://darksouls2.wikidot.com/soul-arrow">Soul Arrow</a> Sorcery @ 1,500 souls</li>
<li data-id="playthrough_3_12_8"><a href="http://darksouls2.wikidot.com/heal">Heal</a> Miracle @ 1,500 souls</li>
<li data-id="playthrough_3_12_9"><a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a> @ 1,500 souls each (Max 5)</li>
<li data-id="playthrough_3_12_10"><a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a> @ 300 souls each (Max 10)</li>
<li data-id="playthrough_3_12_11"><a href="http://darksouls2.wikidot.com/amber-herb">Amber Herbs</a> @ 1,600 souls each (Max 3)</li>
<li data-id="playthrough_3_12_12"><a href="http://darksouls2.wikidot.com/firebomb">Firebombs</a> @ 200 souls each</li>
<li data-id="playthrough_3_12_13"><a href="http://darksouls2.wikidot.com/witching-urn">Witching Urns</a> @ 400 souls each</li>
<li data-id="playthrough_3_12_14"><a href="http://darksouls2.wikidot.com/throwing-knife">Throwing Knives</a> @ 100 souls each</li>
</ul>
</li>
<li data-id="playthrough_3_13">Optionally kill her or spend 10,000 souls to get the <a href="http://darksouls2.wikidot.com/covetous-silver-serpent-ring">Covetous Silver Serpent Ring +1</a></li>
<li data-id="playthrough_3_14">Talk to her and exhaust her dialog so that she will move back to <a href="http://darksouls2.wikidot.com/majula">Majula</a> soon</li>
<li data-id="playthrough_3_15">Go upstairs and hit the door a few times to break it</li>
<li data-id="playthrough_3_16">Get the <a href="http://darksouls2.wikidot.com/small-leather-shield">Small Leather Shield</a> and <a href="http://darksouls2.wikidot.com/repair-powder">Repair Powder</a> from the chest, and the <a href="http://darksouls2.wikidot.com/hand-axe">Hand Axe</a> and <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a> from behind the cart</li>
<li data-id="playthrough_3_17">Open the other door, watch for the ambush by the <a href="http://darksouls2.wikidot.com/hollows-various">Hollow Infantry</a>, and get the <a href="http://darksouls2.wikidot.com/estus-flask-shard">Estus Flask Shard</a> and <a href="http://darksouls2.wikidot.com/small-white-sign-soapstone">Small White Sign Soapstone</a> from the chest</li>
<li data-id="playthrough_3_18">Drop down on to the branch to get the <a href="http://darksouls2.wikidot.com/divine-blessing">Divine Blessing</a>, and drop down again</li>
<li data-id="playthrough_3_19">Go back out the door you came in, drop down on to the scaffolding and jump the gap to get the <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a></li>
<li data-id="playthrough_3_20">Make your way down the scaffolding and get the <a href="http://darksouls2.wikidot.com/soul-of-a-lost-undead">Soul Of A Lost Undead</a> and <a href="http://darksouls2.wikidot.com/torch">Torch</a> from the branch near the bottom</li>
<li data-id="playthrough_3_21">In the first cave get the <a href="http://darksouls2.wikidot.com/hollow-soldier-helm">Hollow Soldier Helm</a>, and in the second cave get the <a href="http://darksouls2.wikidot.com/soul-of-a-proud-knight">Soul Of A Proud Knight</a>, watching for the ambush from behind</li>
<li data-id="playthrough_3_22">Wait for a gap in the fireballs from the <a href="http://darksouls2.wikidot.com/flame-salamander">Flame Salamander</a>, open the door and get the <a href="http://darksouls2.wikidot.com/longsword">Fire Longsword</a> from the chest</li>
<li data-id="playthrough_3_23">Head back out and up towards the ladder, getting the <a href="http://darksouls2.wikidot.com/lifegem">Lifegems</a> to the left before going up, go through the hole in the wall and back to the bonfire</li>
<li data-id="playthrough_3_24">Go back to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, upgrade your <a href="http://darksouls2.wikidot.com/estus-flask">Estus Flask</a>, open the door for <a href="http://darksouls2.wikidot.com/blacksmith-lenigrast">Blacksmith Lenigrast</a>, rest at the bonfire and buy anything you need from him
<ul>
<li data-id="playthrough_3_24_2"><a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shards</a> @ 800 souls each (Max 10)</li>
<li data-id="playthrough_3_24_3"><a href="http://darksouls2.wikidot.com/repair-powder">Repair Powder</a> @ 2,500 souls (Max 1)</li>
<li data-id="playthrough_3_24_4"><a href="http://darksouls2.wikidot.com/wood-arrow">Wood Arrows</a> @ 10 souls each</li>
<li data-id="playthrough_3_24_5"><a href="http://darksouls2.wikidot.com/wood-bolt">Wood Bolts</a> @ 25 souls each</li>
<li data-id="playthrough_3_24_6"><a href="http://darksouls2.wikidot.com/iron-arrow">Iron Arrows</a> @ 30 souls each (Max 50)</li>
<li data-id="playthrough_3_24_7"><a href="http://darksouls2.wikidot.com/heavy-bolt">Heavy Bolts</a> @ 50 souls each (Max 50)</li>
<li data-id="playthrough_3_24_8"><a href="http://darksouls2.wikidot.com/longsword">Longsword</a> @ 1,300 souls</li>
<li data-id="playthrough_3_24_9"><a href="http://darksouls2.wikidot.com/broadsword">Broadsword</a> @ 1,700 souls</li>
<li data-id="playthrough_3_24_10"><a href="http://darksouls2.wikidot.com/falchion">Falchion</a> @ 1,200 souls</li>
<li data-id="playthrough_3_24_11"><a href="http://darksouls2.wikidot.com/estoc">Estoc</a> @ 1,500 souls</li>
<li data-id="playthrough_3_24_12"><a href="http://darksouls2.wikidot.com/rapier">Rapier</a> @ 1,000 souls</li>
<li data-id="playthrough_3_24_13"><a href="http://darksouls2.wikidot.com/battle-axe">Battle Axe</a> @ 1,500 souls</li>
<li data-id="playthrough_3_24_14"><a href="http://darksouls2.wikidot.com/mace">Mace</a> @ 1,200 souls</li>
<li data-id="playthrough_3_24_15"><a href="http://darksouls2.wikidot.com/spear">Spear</a> @ 1,400 souls</li>
</ul>
</li>
<li data-id="playthrough_3_25">If you spend 8,000 souls with him he will give you the <a href="http://darksouls2.wikidot.com/blacksmith-s-hammer">Blacksmith's Hammer</a></li>
<li data-id="playthrough_3_26">Optionally, kill him to get the <a href="http://darksouls2.wikidot.com/blacksmith-s-hammer">Blacksmith's Hammer</a></li>
<li data-id="playthrough_3_27">Get the <a href="http://darksouls2.wikidot.com/short-bow">Short Bow</a> from the chest behind him</li>
<li data-id="playthrough_3_28">Travel back to the <a href="http://darksouls2.wikidot.com/forest-of-fallen-giants">Forest of Fallen Giants / Cardinal Tower</a> bonfire, go down the ladder, across the bridge and get the <a href="http://darksouls2.wikidot.com/soul-of-a-lost-undead">Soul Of A Lost Undead</a></li>
<li data-id="playthrough_3_29">Optionally, if you bought the <a href="http://darksouls2.wikidot.com/silvercat-ring">Silvercat Ring</a>, kill the first <a href="http://darksouls2.wikidot.com/flame-salamander">Flame Salamander</a> from range, drop down on to the rubble and kill the second salamander</li>
<li data-id="playthrough_3_30">If you dropped down, pick up the <a href="http://darksouls2.wikidot.com/hawk-ring">Hawk Ring</a>, <a href="http://darksouls2.wikidot.com/firedrake-stone">Firedrake Stone<a/>, <a href="http://darksouls2.wikidot.com/large-soul-of-a-proud-knight">Large Soul Of A Proud Knight</a>, and get the <a href="http://darksouls2.wikidot.com/flame-quartz-ring">Flame Quartz Ring +1</a> from the chest</li>
<li data-id="playthrough_3_31">If you dropped down, go in to the cave and get the <a href="http://darksouls2.wikidot.com/cracked-red-eye-orb">Cracked Red Eye Orbs</a> and the <a href="http://darksouls2.wikidot.com/rebel-s-greatshield">Rebel's Greatshield</a>, and go back to the bonfire and down the ladder again</li>
<li data-id="playthrough_3_32">Go through the fog gate, up the branch, clear the <a href="http://darksouls2.wikidot.com/hollow-soldiers">Hollows</a> at the top, and bait the firebomb thrower to destroy the wall and open the shortcut</li>
<li data-id="playthrough_3_33">Go up the ladder to kill the <a href="http://darksouls2.wikidot.com/hollow-soldiers">Firebomb Hollow</a>, and try to kill the <a href="http://darksouls2.wikidot.com/the-pursuer">Pursuer</a> to get the <a href="http://darksouls2.wikidot.com/ring-of-blades">Ring of Blades</a> and the <a href="http://darksouls2.wikidot.com/soul-of-the-pursuer">Soul of the Pursuer</a></li>
<li data-id="playthrough_3_34">Head back to the branch, jump down on the scaffolding and make your way to the cave on the left to pick up the <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a></li>
<li data-id="playthrough_3_35">Talk to <a href="http://darksouls2.wikidot.com/cale-the-cartographer">Cale The Cartographer</a> until he gives you the <a href="http://darksouls2.wikidot.com/house-key">House Key</a> and talks about going back to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, and get the <a href="http://darksouls2.wikidot.com/amber-herb">Amber Herb</a> from the ledge</li>
<li data-id="playthrough_3_36">Optionally, kill him to get <a href="http://darksouls2.wikidot.com/cale-s-helm">Cale's Helm</a> and make the rest of <a href="http://darksouls2.wikidot.com/cale-s-set">Cale's Set</a> available to buy from <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a></li>
<li data-id="playthrough_3_37">Leave the cave, go up the ladder, kill the <a href="http://darksouls2.wikidot.com/hollow-soldiers">Hollow Archer</a>, drop down on to the roof, clear out the scaffolding, and drop down in to the tower to get the <a href="http://darksouls2.wikidot.com/torch">Torch</a></li>
<li data-id="playthrough_3_38">Go back up on the scaffolding, jump across to the loft of the house, drop down and get the <a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shard</a> from beside the gate, and head back to the bonfire</li>
<li data-id="playthrough_3_39">Go through the hole in the wall, head left down the steps, and drop off to get the <a href="http://darksouls2.wikidot.com/green-blossom">Green Blossom</a> from beside the steps</li>
<li data-id="playthrough_3_40">Run in and out of the room with the ballistas to avoid getting skewered and kill the <a href="http://darksouls2.wikidot.com/hollow-soldiers">Hollows</a> that rush you</li>
<li data-id="playthrough_3_41">Pick up the <a href="http://darksouls2.wikidot.com/great-soul-arrow">Great Soul Arrow</a> sorcery, <a href="http://darksouls2.wikidot.com/blue-wooden-shield">Blue Wooden Shield</a> and the <a href="http://darksouls2.wikidot.com/large-soul-of-a-lost-undead">Large Soul Of A Lost Undead</a> from the corpses</li>
<li data-id="playthrough_3_42">Go down the ladder, open the trapped chest to get the <a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shard</a>, and use the <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a> to open the hidden door</li>
<li data-id="playthrough_3_43">Get the <a href="http://darksouls2.wikidot.com/chloranthy-ring">Chloranthy Ring</a> and <a href="http://darksouls2.wikidot.com/titanite-slab">Titanite Slab</a> from the chests</li>
<li data-id="playthrough_3_44">Knock on the wooden door by hitting it with your weapon, clear the room and get the <a href="http://darksouls2.wikidot.com/life-ring">Life Ring</a> and the <a href="http://darksouls2.wikidot.com/large-titanite-shard">Large Titanite Shard</a> from the chest</li>
<li data-id="playthrough_3_45">Go back up top, talk to <a href="http://darksouls2.wikidot.com/mild-mannered-pate">Mild Mannered Pate</a> and go through the gate that shuts behind you</li>
<li data-id="playthrough_3_46">Clear out the first area, go in to the building and clear that out and pick up the <a href="http://darksouls2.wikidot.com/aromatic-ooze">Aromatic Ooze</a></li>
<li data-id="playthrough_3_93">Use the illusory wall on the right of the bottom of the stairs and get the <a href="http://darksouls2.wikidot.com/sorcerer-s-staff">Sorcerer's Staff</a> and <a href="http://darksouls2.wikidot.com/amber-herb">Amber Herb</a> from the chest</li>
<li data-id="playthrough_3_94">Head up the stairs and drop down to <a href="http://darksouls2.wikidot.com/mild-mannered-pate">Pate</a> to get the <a href="http://darksouls2.wikidot.com/white-sign-soapstone">White Sign Soapstone</a></li>
<li data-id="playthrough_3_47">If you died go back to <a href="http://darksouls2.wikidot.com/mild-mannered-pate">Pate</a> and you will still get the <a href="http://darksouls2.wikidot.com/white-sign-soapstone">White Sign Soapstone</a>. You can use the ladder on the other side of the wall to get back in if you want to</li>
<li data-id="playthrough_3_48">Optionally, kill him to get <a href="http://darksouls2.wikidot.com/pates-spear">Pates Spear</a> and the <a href="http://darksouls2.wikidot.com/ring-of-thorns">Ring Of Thorns</a>, and make <a href="http://darksouls2.wikidot.com/pate-s-set">Pate's Set</a> and <a href="http://darksouls2.wikidot.com/pate-s-shield">Pate's Shield</a> available to buy from <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a></li>
<li data-id="playthrough_3_49">Go through the archway, get the <a href="http://darksouls2.wikidot.com/large-soul-of-a-lost-undead">Large Soul Of A Lost Undead</a> from behind the tree to the right, go up the ladder and get the <a href="http://darksouls2.wikidot.com/light-crossbow">Light Crossbow</a></li>
<li data-id="playthrough_3_50">Go in to the building, jump across to the platform and get the <a href="http://darksouls2.wikidot.com/soul-of-a-nameless-soldier">Soul of a Nameless Soldier</a> and <a href="http://darksouls2.wikidot.com/torch">Torch</a> from the corpse</li>
<li data-id="playthrough_3_51">Drop down, get the <a href="http://darksouls2.wikidot.com/mail-breaker">Mail Breaker</a> and <a href="http://darksouls2.wikidot.com/infantry-helm">Infantry Helm</a> from the chest, and drop down outside</li>
<li data-id="playthrough_3_52">Go through the door, kill the two hollows guarding the fog gate, go through it and open the shortcut door on the left back to the bonfire</li>
<li data-id="playthrough_3_53">Pick up the <a href="http://darksouls2.wikidot.com/fire-arrow">Fire Arrows</a> on the ledge, go in to the room, kill the <a href="http://darksouls2.wikidot.com/crystal-lizard">Crystal Lizard</a>, and get the <a href="http://darksouls2.wikidot.com/large-leather-shield">Large Leather Shield</a> and <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a> from the steps</li>
<li data-id="playthrough_3_54">Go back outside and pick up the <a href="http://darksouls2.wikidot.com/amber-herb">Amber Herbs</a> from the left, and the <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a> and <a href="http://darksouls2.wikidot.com/homeward">Homeward Bone</a> from the platform on the right</li>
<li data-id="playthrough_3_55">Go up the giant sword, watching out for the ambush from behind, and get the <a href="http://darksouls2.wikidot.com/halberd">Halberd</a> and the <a href="http://darksouls2.wikidot.com/soul-of-a-nameless-soldier">Soul of a Nameless Soldier</a></li>
<li data-id="playthrough_3_56">Go back inside, head down the elevator and kill the <a href="http://darksouls2.wikidot.com/the-last-giant">Last Giant</a> boss
<ul>
<li data-id="playthrough_3_56_1">You can summon <a href="http://darksouls2.wikidot.com/mild-mannered-pate">Mild Mannered Pate</a> just outside the fog gate. If he survives he will give you <a href="http://darksouls2.wikidot.com/pate-s-set">Pate's Set</a> when you meet him in <a href="http://darksouls2.wikidot.com/earthen-peak">Earthen Peak</a></li>
<li data-id="playthrough_3_56_2">You will get the <a href="http://darksouls2.wikidot.com/soul-of-the-last-giant">Soul of the Last Giant</a>, the <a href="http://darksouls2.wikidot.com/soldier-key">Soldier Key</a> and 10,000 souls</li>
<li data-id="playthrough_3_56_3">Optionally do some <a href="http://darksouls2.wikidot.com/online-matchmaking">jolly co-op</a> to get some extra souls. You will get 2,500 souls each time</li>
</ul>
</li>
<li data-id="playthrough_3_57">Return to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, level up, upgrade your weapons and armor, and buy any consumables you need</li>
<li data-id="playthrough_3_58">If you need <a href="http://darksouls2.wikidot.com/lifegem">Lifegems</a>, <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a> should now be there and will have an infinite supply at 300 souls each</li>
<li data-id="playthrough_3_59">Travel back to the <a href="http://darksouls2.wikidot.com/forest-of-fallen-giants">Forest of Fallen Giants / Cardinal Tower</a> bonfire</li>
<li data-id="playthrough_3_60">Go back down the ladder, across the bridge and unlock the door to get the <a href="http://darksouls2.wikidot.com/ring-of-restoration">Ring Of Restoration</a> and a <a href="http://darksouls2.wikidot.com/torch">Torch</a></li>
<li data-id="playthrough_3_61">Go back outside to the giant sword, turn right and unlock the door, go up the stairs and get the <a href="http://darksouls2.wikidot.com/soul-of-a-nameless-soldier">Soul of a Nameless Soldier</a> and <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a> from the platform</li>
<li data-id="playthrough_3_62">If you didn't kill him earlier, go through the fog gate and kill the <a href="http://darksouls2.wikidot.com/the-pursuer">Pursuer</a> boss
<ul>
<li data-id="playthrough_3_62_1">There are no NPCs to summon for this fight</li>
<li data-id="playthrough_3_62_2">You can use the ballistas to quickly dispatch him. Be careful not to kill any players you summon</li>
<li data-id="playthrough_3_62_3">You will get the <a href="http://darksouls2.wikidot.com/ring-of-blades">Ring of Blades</a>, the <a href="http://darksouls2.wikidot.com/soul-of-the-pursuer">Soul of the Pursuer</a> and 17,000 souls</li>
<li data-id="playthrough_3_62_4">Optionally do some <a href="http://darksouls2.wikidot.com/online-matchmaking">jolly co-op</a> to get some extra souls. You will get 4,250 souls each time</li>
</ul>
</li>
<li data-id="playthrough_3_63">Move on to the next area, drop down and get the <a href="http://darksouls2.wikidot.com/drangleic-set">Drangleic Set</a> (minus the helmet), the <a href="http://darksouls2.wikidot.com/drangleic-sword">Drangleic Sword</a> and <a href="http://darksouls2.wikidot.com/drangleic-shield">Drangleic Shield</a></li>
<li data-id="playthrough_3_64">Drop down, make your way back up to the Pursuer boss area and examine the nest to get flown to the <a href="http://darksouls2.wikidot.com/the-lost-bastille">The Lost Bastille / The Tower Apart</a> bonfire</li>
<li data-id="playthrough_3_65">At this point we're going to do a quick bit of this level to get some good upgrade items and a useful bonfire</li>
<li data-id="playthrough_3_66">Walk around the ledge of the building on the left and get the <a href="http://darksouls2.wikidot.com/radiant-lifegem">Radiant Lifegem</a> and <a href="http://darksouls2.wikidot.com/large-titanite-shard">Large Titanite Shard</a> from the corpse</li>
<li data-id="playthrough_3_67">Drop down and get the <a href="http://darksouls2.wikidot.com/antiquated-key">Antiquated Key</a> and <a href="http://darksouls2.wikidot.com/covetous-silver-serpent-ring">Covetous Silver Serpent Ring</a> from the chest</li>
<li data-id="playthrough_3_68">Open the door, go up the ladder and along the walkway to the left, roll through the barrels and open the door</li>
<li data-id="playthrough_3_69">Talk to <a href="http://darksouls2.wikidot.com/lucatiel-of-mirrah">Lucatiel of Mirrah</a> until you get a <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a> and have exhausted her dialog</li>
<li data-id="playthrough_3_70">Optionally, kill her to get <a href="http://darksouls2.wikidot.com/lucatiel-s-mask">Lucatiel's Mask</a> and make the rest of <a href="http://darksouls2.wikidot.com/lucatiel-s-set">Lucatiel's Set</a> available to buy from <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a></li>
<li data-id="playthrough_3_71">Go out the door, walk on to and along the wall on the right, go up the ladder and get the <a href="http://darksouls2.wikidot.com/large-titanite-shard">Large Titanite Shard</a> from the corpse</li>
<li data-id="playthrough_3_72">Go back out the same door, and continue along the walkway, getting the <a href="http://darksouls2.wikidot.com/gold-pine-resin">Gold Pine Resin</a> from the corpse in the small alley on the left</li>
<li data-id="playthrough_3_73">Nudge the barrel so it rolls down and blows open a hole in the wall, go down and light the bonfire</li>
<li data-id="playthrough_3_74">Light your torch, go in to the room and get the <a href="http://darksouls2.wikidot.com/large-titanite-shard">Large Titanite Shards</a>, <a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shards</a>, <a href="http://darksouls2.wikidot.com/iron-arrow">Iron Arrows</a> and <a href="http://darksouls2.wikidot.com/heavy-bolt">Heavy Bolts</a> from the chests</li>
<li data-id="playthrough_3_75">Talk to <a href="http://darksouls2.wikidot.com/steady-hand-mcduff">Steady Hand McDuff</a>, light the stationary torch in the room and rest at the bonfire again</li>
<li data-id="playthrough_3_76">Go back in to the room and get the <a href="http://darksouls2.wikidot.com/craftsman-s-hammer">Craftsman's Hammer</a> and <a href="http://darksouls2.wikidot.com/twinkling-titanite">Twinkling Titanite</a> from the chest he was sitting on</li>
<li data-id="playthrough_3_77">Go back to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, level up, upgrade your weapons and armor, and buy any consumables you need</li>
<li data-id="playthrough_3_78">If you killed <a href="http://darksouls2.wikidot.com/mild-mannered-pate">Mild Mannered Pate</a> you can now buy <a href="http://darksouls2.wikidot.com/pate-s-set">Pate's Set</a> from <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a></li>
<li data-id="playthrough_3_79">Open the door of the mansion, get the <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a> from the library, and the <a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shards</a> and <a href="http://darksouls2.wikidot.com/torch">Torch</a> from the chest upstairs</li>
<li data-id="playthrough_3_80">Go down below the map room, kill the <a href="http://darksouls2.wikidot.com/skeleton">Skeleton</a> and pick up the <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a> it drops, get the <a href="http://darksouls2.wikidot.com/estus-flask-shard">Estus Flask Shard</a> and then the <a href="http://darksouls2.wikidot.com/soul-vessel">Soul Vessel</a> from the chest</li>
<li data-id="playthrough_3_81">Go to the <a href="http://darksouls2.wikidot.com/emerald-herald">Emerald Herald</a> and upgrade your <a href="http://darksouls2.wikidot.com/estus-flask">Estus Flask</a></li>
<li data-id="playthrough_3_82">Travel back to the <a href="http://darksouls2.wikidot.com/forest-of-fallen-giants">Forest of Fallen Giants / Cardinal Tower</a> bonfire</li>
<li data-id="playthrough_3_83">Go down the ladder, head to the left, passed the bridge and open the door with the <a href="http://darksouls2.wikidot.com/soldier-key">Soldier Key</a></li>
<li data-id="playthrough_3_84">Head down the corridor, getting the <a href="http://darksouls2.wikidot.com/black-firebomb">Black Firebombs</a> and the <a href="http://darksouls2.wikidot.com/homeward">Homeward Bone</a> from the alcove to the left, and the <a href="http://darksouls2.wikidot.com/torch">Torch</a> from the end</li>
<li data-id="playthrough_3_85">Open the door, go in to the next building, go up the ladder and get the <a href="http://darksouls2.wikidot.com/soul-of-a-nameless-soldier">Soul of a Nameless Soldier</a> and <a href="http://darksouls2.wikidot.com/cracked-red-eye-orb">Cracked Red Eye Orbs</a></li>
<li data-id="playthrough_3_86">Go back down the ladder and get the <a href="http://darksouls2.wikidot.com/bastard-sword">Bastard Sword</a> from behind the boxes</li>
<li data-id="playthrough_3_87">Go outside and get the <a href="http://darksouls2.wikidot.com/amber-herb">Amber Herb</a> and <a href="http://darksouls2.wikidot.com/green-blossom">Green Blossom</a> from beside the immovable gate</li>
<li data-id="playthrough_3_88">Go through the next building and get the <a href="http://darksouls2.wikidot.com/large-soul-of-a-proud-knight">Large Soul Of A Proud Knight</a> and <a href="http://darksouls2.wikidot.com/leather-set">Leather Set</a> from the chest on the wooden structure</li>
<li data-id="playthrough_3_89">Go inside the next building and light the bonfire</li>
<li data-id="playthrough_3_90">Go out and in to the second room of this building to find a sleeping giant, that has the chance to give a <a href="http://darksouls2.wikidot.com/seed-of-a-tree-of-giants">Seed Of A Tree Of Giants</a> if you get invaded</li>
<li data-id="playthrough_3_91">Return to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, level up, upgrade your weapons and armor, and buy any consumables you need</li>
<li data-id="playthrough_3_92">Go down the stone staircase towards <a href="http://darksouls2.wikidot.com/heide-s-tower-of-flame">Heide's Tower Of Flame</a>, picking up the <a href="http://darksouls2.wikidot.com/soul-of-a-lost-undead">Soul Of A Lost Undead</a> and <a href="http://darksouls2.wikidot.com/broken-thief-sword">Broken Thief Sword</a> along the way</li>
</ul>
<a name="Heides_Tower_Of_Flame"></a>
<h3><a href="http://darksouls2.wikidot.com/heide-s-tower-of-flame">Heide's Tower Of Flame</a> (Levels 30-40) <span id="playthrough_totals_4"></span></h3>
<ul>
<li data-id="playthrough_4_1">Kill the first <a href="http://darksouls2.wikidot.com/old-knight">Old Knight</a> and light the first bonfire to the right of him</li>
<li data-id="playthrough_4_2">Kill the second <a href="http://darksouls2.wikidot.com/old-knight">Knight</a>, pick up the <a href="http://darksouls2.wikidot.com/sublime-bone-dust">Sublime Bone Dust</a> it drops, and pick up the <a href="http://darksouls2.wikidot.com/soul-of-a-nameless-soldier">Soul of a Nameless Soldier</a> and <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a> from the corpse</li>
<li data-id="playthrough_4_3">Kill the <a href="http://darksouls2.wikidot.com/old-knight">Knight</a> guarding the first switch, use it to raise the first platform, and get the <a href="http://darksouls2.wikidot.com/lloyd-s-talisman">Lloyd's Talisman</a> from behind the door</li>
<li data-id="playthrough_4_4">Kill the first <a href="http://darksouls2.wikidot.com/old-knight">Knight</a> in the circular room, kill the two that will then rush you, and use the switch that appears to raise the second platform</li>
<li data-id="playthrough_4_5">Head out the right door, go down the steps and kill the <a href="http://darksouls2.wikidot.com/old-knight">Knight</a> guarding the fog door, and get the <a href="http://darksouls2.wikidot.com/green-blossom">Green Blossoms</a> from the chest</li>
<li data-id="playthrough_4_6">Go through the fog gate and kill the <a href="http://darksouls2.wikidot.com/dragonrider">Dragonrider</a> boss
<ul>
<li data-id="playthrough_4_6_1">You can summon <a href="http://darksouls2.wikidot.com/masterless-glencour">Masterless Glencour</a> just outside the fog gate</li>
<li data-id="playthrough_4_6_2">Make sure you hit both switches before the fight so you don't have to worry about falling off</li>
<li data-id="playthrough_4_6_3">You will get the <a href="http://darksouls2.wikidot.com/dragonrider-soul">Dragonrider Soul</a> and 12,000 souls</li>
<li data-id="playthrough_4_6_4">Optionally do some <a href="http://darksouls2.wikidot.com/online-matchmaking">jolly co-op</a> to get some extra souls. You will get 3,000 souls each time</li>
</ul>
</li>
<li data-id="playthrough_4_7">Go up the stairs, light the bonfire and anything you need from <a href="http://darksouls2.wikidot.com/licia-of-lindeldt">Licia Of Lindeldt</a>
<ul>
<li data-id="playthrough_4_7_1"><a href="http://darksouls2.wikidot.com/clerics-s-sacred-chime">Clerics's Sacred Chime</a> @ 1,400 souls</li>
<li data-id="playthrough_4_7_2"><a href="http://darksouls2.wikidot.com/ring-of-prayer">Ring of Prayer</a> @ 28,000 souls (Increases Faith by 5)</li>
<li data-id="playthrough_4_7_3"><a href="http://darksouls2.wikidot.com/heal">Heal</a> Miracle @ 1,500 souls</li>
<li data-id="playthrough_4_7_4"><a href="http://darksouls2.wikidot.com/med-heal">Med Heal</a> Miracle @ 3,000 souls</li>
<li data-id="playthrough_4_7_5"><a href="http://darksouls2.wikidot.com/great-heal-excerpt">Great Heal Excerpt</a> Miracle @ 4,500 souls</li>
<li data-id="playthrough_4_7_6"><a href="http://darksouls2.wikidot.com/replenishment">Replenishment</a> Miracle @ 3,000 souls</li>
<li data-id="playthrough_4_7_7"><a href="http://darksouls2.wikidot.com/resplendent-life">Resplendent Life</a> Miracle @ 4,500 souls</li>
<li data-id="playthrough_4_7_8"><a href="http://darksouls2.wikidot.com/caressing-prayer">Caressing Prayer</a> Miracle @ 2,000 souls</li>
<li data-id="playthrough_4_7_9"><a href="http://darksouls2.wikidot.com/force">Force</a> Miracle @ 1,800 souls</li>
<li data-id="playthrough_4_7_10"><a href="http://darksouls2.wikidot.com/lightning-spear">Lightning Spear</a> Miracle @ 6,000 souls</li>
<li data-id="playthrough_4_7_11"><a href="http://darksouls2.wikidot.com/homeward">Homeward</a> Miracle @ 2,400 souls</li>
<li data-id="playthrough_4_7_12"><a href="http://darksouls2.wikidot.com/guidance">Guidance</a> Miracle @ 3,700 souls</li>
</ul>
</li>
<li data-id="playthrough_4_8">Talk to <a href="http://darksouls2.wikidot.com/licia-of-lindeldt">Licia</a> until you exhaust her dialog so that she will return to <a href="http://darksouls2.wikidot.com/majula">Majula</a></li>
<li data-id="playthrough_4_9">If you have at least 30 Faith she will give you the <a href="http://darksouls2.wikidot.com/saint-s-set">Saint's Set</a> and the <a href="http://darksouls2.wikidot.com/idol-s-chime">Idol's Chime</a></li>
<li data-id="playthrough_4_10">Optionally, kill her to get the <a href="http://darksouls2.wikidot.com/rotunda-lockstone">Rotunda Lockstone</a> and <a href="http://darksouls2.wikidot.com/idol-s-chime">Idol's Chime</a>, and make the <a href="http://darksouls2.wikidot.com/saint-s-set">Saint's Set</a> available to buy from <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a></li>
<li data-id="playthrough_4_11">Go back to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, level up, upgrade your weapons and armor, and buy any consumables you need</li>
<li data-id="playthrough_4_12">Remember to burn the <a href="http://darksouls2.wikidot.com/sublime-bone-dust">Sublime Bone Dust</a> to strengthen your <a href="http://darksouls2.wikidot.com/estus-flask">Estus Flask</a></li>
<li data-id="playthrough_4_13">While you are in <a href="http://darksouls2.wikidot.com/majula">Majula</a>, go back down the stone stairs and talk to <a href="http://darksouls2.wikidot.com/licia-of-lindeldt">Licia</a>, and pay the 2,000 souls to open up the path to <a href="http://darksouls2.wikidot.com/huntsman-s-copse">Huntsman's Copse</a></li>
<li data-id="playthrough_4_14">Get the <a href="http://darksouls2.wikidot.com/rouge-water">Rouge Water</a> and follow the path up to the bonfire</li>
<li data-id="playthrough_4_15">If you have at least 8 Faith and 8 Intelligence talk to <a href="http://darksouls2.wikidot.com/felkin-the-outcast">Felkin the Outcast</a> and buy useful stuff from him
<ul>
<li data-id="playthrough_4_15_1"><a href="http://darksouls2.wikidot.com/archdrake-staff">Archdrake Staff</a> @ 4,000 souls</li>
<li data-id="playthrough_4_15_2"><a href="http://darksouls2.wikidot.com/archdrake-chime">Archdrake Chime</a> @ 4,000 souls</li>
<li data-id="playthrough_4_15_3"><a href="http://darksouls2.wikidot.com/ring-of-life-protection">Ring of Life Protection</a> @ 6,000 souls</li>
<li data-id="playthrough_4_15_4"><a href="http://darksouls2.wikidot.com/dark-pine-resin">Dark Pine Resin</a> @ 1,500 souls</li>
<li data-id="playthrough_4_15_5"><a href="http://darksouls2.wikidot.com/magic-barrier">Magic Barrier</a> Miracle @ 2,700 souls</li>
<li data-id="playthrough_4_15_6"><a href="http://darksouls2.wikidot.com/dark-orb">Dark Orb</a> @ Hex 600 souls</li>
<li data-id="playthrough_4_15_7"><a href="http://darksouls2.wikidot.com/dark-weapon">Dark Weapon</a> Hex @ 2,700 souls</li>
<li data-id="playthrough_4_15_8"><a href="http://darksouls2.wikidot.com/great-resonant-soul">Great Resonant Soul</a> Hex @ 3,400 souls</li>
<li data-id="playthrough_4_15_9"><a href="http://darksouls2.wikidot.com/resonant-soul">Resonant Soul</a> Hex @ 1,100 souls</li>
<li data-id="playthrough_4_15_10"><a href="http://darksouls2.wikidot.com/resonant-flesh">Resonant Flesh</a> Hex @ 3,400 souls</li>
<li data-id="playthrough_4_15_11"><a href="http://darksouls2.wikidot.com/resonant-weapon">Resonant Weapon</a> Hex @ 4,000 souls</li>
</ul>
</li>
<li data-id="playthrough_4_16">If you have at least 20 Faith and 20 Intelligence talk to him to get the <a href="http://darksouls2.wikidot.com/hexer-s-set">Hexer's Set</a> and <a href="http://darksouls2.wikidot.com/sunset-staff">Sunset Staff</a></li>
<li data-id="playthrough_4_17">Optionally, kill him to get the <a href="http://darksouls2.wikidot.com/sunset-staff">Sunset Staff</a> and make the <a href="http://darksouls2.wikidot.com/hexer-s-set">Hexer's Set</a> available to buy from <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a></li>
<li data-id="playthrough_4_18">Travel back to the <a href="http://darksouls2.wikidot.com/heide-s-tower-of-flame">Heide's Tower Of Flame / Tower Of Flame</a> bonfire</li>
<li data-id="playthrough_4_19">Make your way back up to the room with the three knights, go out the doorway on the right, and get the <a href="http://darksouls2.wikidot.com/divine-blessing">Divine Blessing</a> from the ledge</li>
<li data-id="playthrough_4_20">Kill the <a href="http://darksouls2.wikidot.com/old-knight">Knight</a> to reveal the switch, use it to lower the drawbridge and walk up it</li>
<li data-id="playthrough_4_21">Get the <a href="http://darksouls2.wikidot.com/old-radiant-lifegem">Old Radiant Lifegem</a> from the corpse, and the <a href="http://darksouls2.wikidot.com/ring-of-binding">Ring Of Binding</a> and <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a> from the chest</li>
<li data-id="playthrough_4_22">Go through the fog gate and kill the <a href="http://darksouls2.wikidot.com/old-dragonslayer">Old Dragonslayer</a> boss
<ul>
<li data-id="playthrough_4_22_1">There are no NPCs to summon for this fight</li>
<li data-id="playthrough_4_22_2">You will get the <a href="http://darksouls2.wikidot.com/old-dragonslayer-soul">Old Dragonslayer Soul</a>, the <a href="http://darksouls2.wikidot.com/old-leo-ring">Old Leo Ring</a> and 15,000 souls</li>
<li data-id="playthrough_4_22_3">Optionally do some <a href="http://darksouls2.wikidot.com/online-matchmaking">jolly co-op</a> to get some extra souls. You will get 3,750 souls each time</li>
</ul>
</li>
<li data-id="playthrough_4_23">Go out the door and get the <a href="http://darksouls2.wikidot.com/cracked-blue-eye-orb">Cracked Blue Eye Orbs</a>, <a href="http://darksouls2.wikidot.com/heide-knight-iron-mask">Heide Knight Iron Mask</a> and <a href="http://darksouls2.wikidot.com/tower-shield">Tower Shield</a> from the chests</li>
<li data-id="playthrough_4_24">If you have a <a href="http://darksouls2.wikidot.com/token-of-fidelity">Token of Fidelity</a>, talk to <a href="http://darksouls2.wikidot.com/blue-sentinel-targray">Blue Sentinel Targray</a> to learn the Duel Bow gesture and buy anything you need from him
<ul>
<li data-id="playthrough_4_24_1"><a href="http://darksouls2.wikidot.com/morning-star">Morning Star</a> @ 1,600 souls</li>
<li data-id="playthrough_4_24_2"><a href="http://darksouls2.wikidot.com/halberd">Halberd</a> @ 2,500 souls</li>
<li data-id="playthrough_4_24_3"><a href="http://darksouls2.wikidot.com/emit-force">Emit Force</a> Miracle @ 4,200 souls</li>
<li data-id="playthrough_4_24_4"><a href="http://darksouls2.wikidot.com/heavenly-thunder">Heavenly Thunder</a> Miracle @ 3,300 souls</li>
<li data-id="playthrough_4_24_5"><a href="http://darksouls2.wikidot.com/monastery-charm">Monastery Charm</a> @ 2,200 souls each (Max 3)</li>
<li data-id="playthrough_4_24_6"><a href="http://darksouls2.wikidot.com/holy-water-urn">Holy Water Urn</a> @ 300 souls each</li>
<li data-id="playthrough_4_24_7"><a href="http://darksouls2.wikidot.com/boltstone">Boltstone</a> @ 7,000 souls each</li>
</ul>
</li>
<li data-id="playthrough_4_25">Optionally, join the <a href="http://darksouls2.wikidot.com/blue-sentinels">Blue Sentinels</a> covenant and get the <a href="http://darksouls2.wikidot.com/blue-seal">Blue Seal</a> ring, which increases HP by 3%</li>
<li data-id="playthrough_4_26">Optionally, kill him to get the <a href="http://darksouls2.wikidot.com/blue-knight-s-halberd">Blue Knight's Halberd</a> and make <a href="http://darksouls2.wikidot.com/targray-s-set">Targray's Set</a> available to buy from <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a></li>
<li data-id="playthrough_4_27">Go down the stairs, light the bonfire, go back to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, level up, upgrade your weapons and armor, and buy any consumables you need</li>
<li data-id="playthrough_4_28">Go talk to <a href="http://darksouls2.wikidot.com/cale-the-cartographer">Cale The Cartographer</a> who should now be in the map room in the mansion</li>
<li data-id="playthrough_4_29">Travel back to the <a href="http://darksouls2.wikidot.com/heide-s-tower-of-flame">Heide's Tower Of Flame / Tower Of Flame</a> bonfire, head towards the door and down the spiral staircase, picking up the <a href="http://darksouls2.wikidot.com/monastery-charm">Monastery Charm</a> at the bottom</li>
<li data-id="playthrough_4_30">Get the <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a>, <a href="http://darksouls2.wikidot.com/torch">Dark Torches</a>, <a href="http://darksouls2.wikidot.com/soul-of-a-proud-knight">Soul Of A Proud Knight</a> and <a href="http://darksouls2.wikidot.com/old-knight-halberd">Old Knight Halberd</a> from the corpses on the upper level, and go downstairs</li>
<li data-id="playthrough_4_31">Take the elevator down, kill the <a href="http://darksouls2.wikidot.com/old-knight">Knight</a> to get access to the stairs, and get the <a href="http://darksouls2.wikidot.com/knight-set">Knight Set</a> from the chest upstairs</li>
<li data-id="playthrough_4_32">Go out the hole in the wall and the lower level and follow the path to the bonfire</li>
</ul>
<a name="No_Mans_Wharf"></a>
<h3><a href="http://darksouls2.wikidot.com/no-man-s-wharf">No-Man's Wharf</a> (Levels 35-45) <span id="playthrough_totals_5"></span></h3>
<ul>
<li data-id="playthrough_5_1">Talk to <a href="http://darksouls2.wikidot.com/lucatiel-of-mirrah">Lucatiel of Mirrah</a> until you have exhausted her dialog</li>
<li data-id="playthrough_5_2">Optionally, kill her to get <a href="http://darksouls2.wikidot.com/lucatiel-s-mask">Lucatiel's Mask</a> and make the rest of <a href="http://darksouls2.wikidot.com/lucatiel-s-set">Lucatiel's Set</a> available to buy from <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a></li>
<li data-id="playthrough_5_3">Head out to the wharf and get the <a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shard</a> from the chest in the first house, and the <a href="http://darksouls2.wikidot.com/soul-of-a-proud-knight">Soul Of A Proud Knight</a> from the balcony, and move on to the next set of houses</li>
<li data-id="playthrough_5_4">Pick up the <a href="http://darksouls2.wikidot.com/large-soul-of-a-lost-undead">Large Soul Of A Lost Undead</a> and <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a> from the water, the <a href="http://darksouls2.wikidot.com/dark-pine-resin">Dark Pine Resin</a> from the left house, and the <a href="http://darksouls2.wikidot.com/iron-arrow">Iron Arrows</a> from the right house</li>
<li data-id="playthrough_5_5">Go up the first set of stairs, turn right and get the <a href="http://darksouls2.wikidot.com/bandit-axe">Bandit Axe</a> and <a href="http://darksouls2.wikidot.com/brigand-set">Brigand Set</a> from the first chest in the house</li>
<li data-id="playthrough_5_6">Clear out the <a href="http://darksouls2.wikidot.com/hollow-soldiers">Hollows</a> from the upper floor and get the <a href="http://darksouls2.wikidot.com/repair-powder">Repair Powder</a> and <a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shard</a> from the second chest</li>
<li data-id="playthrough_5_7">Go back downstairs and use the <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a> to light up the area</li>
<li data-id="playthrough_5_8">Drop down on to the roof and get the <a href="http://darksouls2.wikidot.com/large-soul-of-a-proud-knight">Large Soul Of A Proud Knight</a> and <a href="http://darksouls2.wikidot.com/small-smooth-silky-stone">Small Smooth and Silky Stone</a> from the corpse</li>
<li data-id="playthrough_5_9">Go back to the stairs, go up two flights and clear out the area, and get the <a href="http://darksouls2.wikidot.com/ring-of-life-protection">Ring Of Life Protection</a> from behind the shelves in the left house</li>
<li data-id="playthrough_5_10">Head up the next set of stairs and get the <a href="http://darksouls2.wikidot.com/large-soul-of-a-lost-undead">Large Soul Of A Lost Undead</a> and <a href="http://darksouls2.wikidot.com/emit-force">Emit Force</a> miracle from the corpse</li>
<li data-id="playthrough_5_11">Clear out the <a href="http://darksouls2.wikidot.com/dark-stalker">Dark Stalkers</a> from the house, and get the <a href="http://darksouls2.wikidot.com/greatsword">Greatsword</a> from the metal chest, and the <a href="http://darksouls2.wikidot.com/silver-talisman">Silver Talismans</a> from the trapped chest on the right</li>
<li data-id="playthrough_5_12">Talk to <a href="http://darksouls2.wikidot.com/lonesome-gavlan">Lonesome Gavlan</a> and buy useful stuff from him
<ul>
<li data-id="playthrough_5_12_1"><a href="http://darksouls2.wikidot.com/ring-of-giants">Ring of Giants</a> @ 5,000 souls (Increases Poise by 10)</li>
<li data-id="playthrough_5_12_2"><a href="http://darksouls2.wikidot.com/poison-arrow">Poison Arrows</a> @ 60 souls each (Max 20)</li>
<li data-id="playthrough_5_12_3"><a href="http://darksouls2.wikidot.com/poison-moss">Poison Moss</a> @ 1,500 souls each (Max 20)</li>
<li data-id="playthrough_5_12_4"><a href="http://darksouls2.wikidot.com/poison-throwing-knife">Poison Throwing Knife</a> @ 350 souls each (Max 20)</li>
<li data-id="playthrough_5_12_5"><a href="http://darksouls2.wikidot.com/rotten-pine-resin">Rotten Pine Resin</a> @ 2,000 souls each (Max 20)</li>
</ul>
</li>
<li data-id="playthrough_5_13">Sell any items you won't need to him to get some more souls</li>
<li data-id="playthrough_5_14">Optionally, kill him to get the <a href="http://darksouls2.wikidot.com/gyrm-greataxe">Gyrm Greataxe</a></li>
<li data-id="playthrough_5_15">Go back outside, go upstairs in the next house, and continue outside to ring the bell to call the ship</li>
<li data-id="playthrough_5_16">Drop down on the roof to get the <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a> and <a href="http://darksouls2.wikidot.com/homeward">Homeward Bone</a> from the corpse</li>
<li data-id="playthrough_5_17">Drop down again, go inside the house and get the <a href="http://darksouls2.wikidot.com/fire-arrow">Fire Arrows</a> from the stairs, continue outside, and walk down to the next level </li>
<li data-id="playthrough_5_18">Turn left, go in to the house and get the <a href="http://darksouls2.wikidot.com/throwing-knife">Throwing Knives</a> and <a href="http://darksouls2.wikidot.com/flame-butterfly">Flame Butterflies</a> from the corpse behind the poison urns</li>
<li data-id="playthrough_5_19">Get the <a href="http://darksouls2.wikidot.com/estus-flask-shard">Estus Flask Shard</a> from the chest, smash the wall and kill the <a href="http://darksouls2.wikidot.com/crystal-lizard">Crystal Lizard</a></li>
<li data-id="playthrough_5_20">Pick up the <a href="http://darksouls2.wikidot.com/soul-of-a-nameless-soldier">Soul of a Nameless Soldier</a>, <a href="http://darksouls2.wikidot.com/large-soul-of-a-nameless-soldier">Large Soul Of A Nameless Soldier</a>, <a href="http://darksouls2.wikidot.com/lifegem">Lifegems</a>, and <a href="http://darksouls2.wikidot.com/fading-soul">Fading Soul</a> from around the cave, and the <a href="http://darksouls2.wikidot.com/royal-soldier-s-ring">Royal Soldier's Ring</a> from the chest</li>
<li data-id="playthrough_5_21">Go in to the next house, use the illusory wall and get the <a href="http://darksouls2.wikidot.com/firebomb">Firebombs</a> and <a href="http://darksouls2.wikidot.com/large-titanite-shard">Large Titanite Shard</a> from the chests, and go upstairs to open the shortcut gate</li>
<li data-id="playthrough_5_22">Head back down and outside, and get the <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a> and <a href="http://darksouls2.wikidot.com/lifegem">Lifegems</a> from the corpse on the boat</li>
<li data-id="playthrough_5_23">Kill the two <a href="http://darksouls2.wikidot.com/hollow-soldiers">Hollows</a> hanging on to the walkway, and the one in the water before they ambush you</li>
<li data-id="playthrough_5_24">If you have at least 8 Intelligence, go right along the walkway, talk to <a href="http://darksouls2.wikidot.com/carhillion-of-the-fold">Carhillion Of The Fold</a> and buy anything you need from him
<ul>
<li data-id="playthrough_5_24_1"><a href="http://darksouls2.wikidot.com/sorcerer-s-staff">Sorcerer's Staff</a> @ 1,000 souls</li>
<li data-id="playthrough_5_24_2"><a href="http://darksouls2.wikidot.com/spell-quartz-ring">Spell Quartz Ring</a> @ 2,000 souls (Increases magic defense by 5%)</li>
<li data-id="playthrough_5_24_3"><a href="http://darksouls2.wikidot.com/clear-bluestone-ring">Clear Bluestone Ring</a> @ 2,000 souls (Shortens spell casting time by 25%)</li>
<li data-id="playthrough_5_24_4"><a href="http://darksouls2.wikidot.com/soul-arrow">Soul Arrow</a> Sorcery @ 1,500 souls</li>
<li data-id="playthrough_5_24_5"><a href="http://darksouls2.wikidot.com/great-soul-arrow">Great Soul Arrow</a> Sorcery @ 3,000 souls</li>
<li data-id="playthrough_5_24_6"><a href="http://darksouls2.wikidot.com/heavy-soul-arrow">Heavy Soul Arrow</a> Sorcery @ 2,000 souls</li>
<li data-id="playthrough_5_24_7"><a href="http://darksouls2.wikidot.com/great-heavy-soul-arrow">Great Heavy Soul Arrow</a> Sorcery @ 4,500 souls</li>
<li data-id="playthrough_5_24_8"><a href="http://darksouls2.wikidot.com/shockwave">Shockwave</a> Sorcery @ 1,800 souls</li>
<li data-id="playthrough_5_24_9"><a href="http://darksouls2.wikidot.com/soul-spear-barrage">Soul Spear Barrage</a> Sorcery @ 2,600 souls</li>
<li data-id="playthrough_5_24_10"><a href="http://darksouls2.wikidot.com/magic-weapon">Magic Weapon</a> Sorcery @ 2,000 souls</li>
<li data-id="playthrough_5_24_11"><a href="http://darksouls2.wikidot.com/yearn">Yearn</a> Sorcery @ 3,000 souls</li>
<li data-id="playthrough_5_24_12"><a href="http://darksouls2.wikidot.com/amber-herb">Amber Herb</a> @ 1,600 souls each (Max 10)</li>
<li data-id="playthrough_5_24_13"><a href="http://darksouls2.wikidot.com/twilight-herb">Twilight Herb</a> @ 2,400 souls each (Max 5)</li>
<li data-id="playthrough_5_24_14"><a href="http://darksouls2.wikidot.com/simpleton-s-spice">Simpleton's Spice</a> @ 13,000 souls (Max 1)</li>
</ul>
</li>
<li data-id="playthrough_5_25">If you have at least 30 Intelligence, talk to him to get the <a href="http://darksouls2.wikidot.com/northern-ritual-band">Northern Ritual Band +1</a> ring</li>
<li data-id="playthrough_5_26">Optionally, kill him to get the <a href="http://darksouls2.wikidot.com/northern-ritual-band">Northern Ritual Band +1</a> ring</li>
<li data-id="playthrough_5_27">Head to the ship, go downstairs, through the fog gate and kill the <a href="http://darksouls2.wikidot.com/flexile-sentry">Flexile Sentry</a> boss
<ul>
<li data-id="playthrough_5_27_1">You can summon <a href="http://darksouls2.wikidot.com/lucatiel-of-mirrah">Lucatiel of Mirrah</a> from away back at the shortcut gate</li>
<li data-id="playthrough_5_27_2">This is the first of at least three boss fights you need to summon her for and have her survive to complete her quest</li>
<li data-id="playthrough_5_27_3">You will get the <a href="http://darksouls2.wikidot.com/flexile-sentry-soul">Flexile Sentry Soul</a> and 14,000 souls</li>
<li data-id="playthrough_5_27_4">Optionally do some <a href="http://darksouls2.wikidot.com/online-matchmaking">jolly co-op</a> to get some extra souls. You will get 3,500 souls each time</li>
</ul>
</li>
<li data-id="playthrough_5_28">Go up the ladder, get the <a href="http://darksouls2.wikidot.com/pyromancy-flame">Pyromancy Flame</a> and <a href="http://darksouls2.wikidot.com/fireball">Fireball</a> Pyromancy from the chest, and examine the compass to take a one-way trip to the next level</li>
<li data-id="playthrough_5_29">Go in to the cave, up in the elevator, quickly run over the elevator switch and out of the cage, and jump on top of it as it goes down</li>
<li data-id="playthrough_5_30">When it gets near the bottom walk through the hole on the door side and get the <a href="http://darksouls2.wikidot.com/scimitar">Scimitar</a> and <a href="http://darksouls2.wikidot.com/repair-powder">Repair Powder</a> from the hidden cave</li>
<li data-id="playthrough_5_31">Go back up in the elevator, get the <a href="http://darksouls2.wikidot.com/soul-of-a-proud-knight">Soul Of A Proud Knight</a> and <a href="http://darksouls2.wikidot.com/radiant-lifegem">Radiant Lifegem</a> from the corpse in the cell</li>
<li data-id="playthrough_5_32">Go up the stairs, get the <a href="http://darksouls2.wikidot.com/common-fruit">Common Fruit</a> from the third cell on the right, and rest at the bonfire in the fifth cell on the left</li>
<li data-id="playthrough_5_33">Return to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, level up, upgrade your weapons and armor, and buy any consumables you need</li>
<li data-id="playthrough_5_34">Don't forget to upgrade your <a href="http://darksouls2.wikidot.com/estus-flask">Estus Flask</a></li>
<li data-id="playthrough_5_35">If you talked to <a href="http://darksouls2.wikidot.com/carhillion-of-the-fold">Carhillion Of The Fold</a> earlier then he will now be beside the dead tree on the left of the hill</li>
</ul>
<a name="The_Pit"></a>
<h3><a href="http://darksouls2.wikidot.com/the-pit">The Pit</a> / <a href="http://darksouls2.wikidot.com/grave-of-saints">Grave Of Saints</a> (Levels 45-55) <span id="playthrough_totals_6"></span></h3>
<ul>
<li data-id="playthrough_6_1">Get 13,400 souls and buy the <a href="http://darksouls2.wikidot.com/silvercat-ring">Silvercat Ring</a> from <a href="http://darksouls2.wikidot.com/sweet-shalquoir">Sweet Shalquoir</a>. If you can't afford it you can come back here later</li>
<li data-id="playthrough_6_2">Get naked and drop down on to the first set of logs in the pit to get a <a href="http://darksouls2.wikidot.com/radiant-lifegem">Radiant Lifegem</a></li>
<li data-id="playthrough_6_3">Drop down on to the second set of logs to get a <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a></li>
<li data-id="playthrough_6_4">Drop down again and then do a running jump across to get the <a href="http://darksouls2.wikidot.com/poison-moss">Poison Mosses</a></li>
<li data-id="playthrough_6_5">Drop down on to the ledge, go inside and use the bonfire to return to <a href="http://darksouls2.wikidot.com/majula">Majula</a></li>
<li data-id="playthrough_6_6">Drop down again 4 times to where you picked up the <a href="http://darksouls2.wikidot.com/poison-moss">Poison Mosses</a>, but this time drop down to the next set of logs instead of the ledge</li>
<li data-id="playthrough_6_7">Keep dropping down until you get the <a href="http://darksouls2.wikidot.com/ring-of-the-evil-eye">Ring of the Evil Eye +1</a> and then put your gear back on</li>
<li data-id="playthrough_6_8">Use a <a href="http://darksouls2.wikidot.com/homeward">Homeward Bone</a> to return to <a href="http://darksouls2.wikidot.com/majula">Majula</a> and then travel to the <a href="http://darksouls2.wikidot.com/grave-of-saints">Grave Of Saints / Harval's Resting Place</a> bonfire</li>
<li data-id="playthrough_6_9">If you are online then keep alert because you can be called to invade members of the <a href="http://darksouls2.wikidot.com/rat-king-covenant">Rat King Covenant</a> while you are in this area</li>
<li data-id="playthrough_6_10">Go in to the circular room and get the <a href="http://darksouls2.wikidot.com/large-soul-of-a-nameless-soldier">Large Soul Of A Nameless Soldier</a> from the corpse</li>
<li data-id="playthrough_6_11">Go up the steps and to the left to get the <a href="http://darksouls2.wikidot.com/small-smooth-silky-stone">Small Smooth and Silky Stones</a></li>
<li data-id="playthrough_6_12">Use a <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a> to lower the bridge near the top of steps, go across and get the <a href="http://darksouls2.wikidot.com/poison-moss">Poison Mosses</a></li>
<li data-id="playthrough_6_13">Go up the stairs and get the <a href="http://darksouls2.wikidot.com/whisper-of-despair">Whisper Of Despair</a> Hex and <a href="http://darksouls2.wikidot.com/torch">Torch</a></li>
<li data-id="playthrough_6_14">Go back across the bridge, turn left and go up the ladder near the end, turn left at the top and get the <a href="http://darksouls2.wikidot.com/homeward">Homeward Bones</a> in the room at the end</li>
<li data-id="playthrough_6_15">Head back towards the ladder and light the bonfire past it on the right</li>
<li data-id="playthrough_6_16">Go through the fog gate and kill the <a href="http://darksouls2.wikidot.com/royal-rat-vanguard">Royal Rat Vanguard</a> boss
<ul>
<li data-id="playthrough_6_16_1">There are no NPCs to summon for this fight</li>
<li data-id="playthrough_6_16_2">After killing 10 of the normal rats the boss will show up. He's the one with the mohawk hair style</li>
<li data-id="playthrough_6_16_3">You will get the <a href="http://darksouls2.wikidot.com/rat-tail">Royal Rat Tail</a>, the <a href="http://darksouls2.wikidot.com/royal-rat-vanguard-soul">Royal Rat Vanguard Soul</a> and 11,000 souls</li>
</ul>
</li>
<li data-id="playthrough_6_17">Go talk to <a href="http://darksouls2.wikidot.com/the-rat-king">The Rat King</a> and buy anything you need from him
<ul>
<li data-id="playthrough_6_17_1"><a href="http://darksouls2.wikidot.com/corrosive-urn">Corrosive Urn</a> @ 700 souls each</li>
<li data-id="playthrough_6_17_2"><a href="http://darksouls2.wikidot.com/dung-pie">Dung Pie</a> @ 600 souls each</li>
<li data-id="playthrough_6_17_3"><a href="http://darksouls2.wikidot.com/common-fruit">Common Fruit</a> @ 1,600 souls each</li>
<li data-id="playthrough_6_17_4"><a href="http://darksouls2.wikidot.com/red-leech-troches">Red Leech Troches</a> @ 1,600 souls</li>
<li data-id="playthrough_6_17_5"><a href="http://darksouls2.wikidot.com/triclops-snake-troches">Triclops Snake Troches</a> @ 2,000 souls</li>
</ul>
</li>
<li data-id="playthrough_6_18">Optionally, you can join the <a href="http://darksouls2.wikidot.com/rat-king-covenant">Rat King Covenant</a> to try and earn some more <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstones</a></li>
<li data-id="playthrough_6_19">Continue on, drop down the hole and pick up the <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a></li>
<li data-id="playthrough_6_20">Drop down the coffins on to the walkway, and get the <a href="http://darksouls2.wikidot.com/bleed-stone">Bleed Stone</a> from the corpse at the end</li>
<li data-id="playthrough_6_21">If you've got the nerve, jump across and get the <a href="http://darksouls2.wikidot.com/disc-chime">Disc Chime</a> from the small ledge</li>
<li data-id="playthrough_6_22">Drop or jump to the bridge and kill the <a href="http://darksouls2.wikidot.com/crystal-lizard">Crystal Lizard</a>, then jump across the gap and get the <a href="http://darksouls2.wikidot.com/ash-knuckle-ring">Ash Knuckle Ring</a> from the chest</li>
<li data-id="playthrough_6_23">Drop down and be prepared to kill the six <a href="http://darksouls2.wikidot.com/undead-citizen">Exploding Undead Citizens</a>, then get the <a href="http://darksouls2.wikidot.com/great-heal">Great Heal</a> Miracle from the blocked tunnel</li>
<li data-id="playthrough_6_24">Go out the other tunnel, make your way down the ladders to the right and get the <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a></li>
<li data-id="playthrough_6_25">Continue down the ladders, getting the <a href="http://darksouls2.wikidot.com/radiant-lifegem">Radiant Lifegem</a> on the way, and get the <a href="http://darksouls2.wikidot.com/token-of-spite">Token of Spite</a> from the chest at the bottom</li>
<li data-id="playthrough_6_26">Head out the tunnel, watching out for the poison statues, drop down on the first roof, watch for the collapsing floor, then drop down to the bonfire</li>
<li data-id="playthrough_6_27">Return to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, level up, upgrade your weapons and armor, and buy any consumables you need</li>
<li data-id="playthrough_6_28">Travel to the <a href="http://darksouls2.wikidot.com/the-lost-bastille">The Lost Bastille / Exile Holding Cells</a> bonfire</li>
</ul>
<a name="The_Lost_Bastille"></a>
<h3><a href="http://darksouls2.wikidot.com/the-lost-bastille">The Lost Bastille</a> / <a href="http://darksouls2.wikidot.com/belfry-luna">Belfry Luna</a> (Levels 55-65) <span id="playthrough_totals_7"></span></h3>
<ul>
<li data-id="playthrough_7_1">Go up the steps and kill the <a href="http://darksouls2.wikidot.com/heide-knight">Heide Knight</a> to get the <a href="http://darksouls2.wikidot.com/heide-spear">Heide Spear</a></li>
<li data-id="playthrough_7_2">Drop down in to the gap in the walkway and go around the ledge to get the <a href="http://darksouls2.wikidot.com/soul-of-a-brave-warrior">Soul Of A Brave Warrior</a> and <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a></li>
<li data-id="playthrough_7_3">Drop off the wall and smash the wooden structure to get an <a href="http://darksouls2.wikidot.com/alluring-skull">Alluring Skull</a></li>
<li data-id="playthrough_7_4">Go down the alley on the left and get the <a href="http://darksouls2.wikidot.com/estus-flask-shard">Estus Flask Shard</a> and <a href="http://darksouls2.wikidot.com/large-titanite-shard">Large Titanite Shard</a> from the chest</li>
<li data-id="playthrough_7_5">Go back to where you dropped off the wall, smash the planks covering the hole in the wall and get the <a href="http://darksouls2.wikidot.com/flame-butterfly">Flame Butterflies</a> from the cell</li>
<li data-id="playthrough_7_6">Open the door with the <a href="http://darksouls2.wikidot.com/antiquated-key">Antiquated Key</a>, hit the block on the well, kill the three <a href="http://darksouls2.wikidot.com/undead-citizen">Undead Citizens</a>, and get the <a href="http://darksouls2.wikidot.com/wanderer-set">Wanderer Set</a> from one of their corpses</li>
<li data-id="playthrough_7_7">Go down the alleyway, up the ladder, clear the room, go up the next ladder and get the <a href="http://darksouls2.wikidot.com/large-soul-of-a-nameless-soldier">Large Soul Of A Nameless Soldier</a> and <a href="http://darksouls2.wikidot.com/green-blossom">Green Blossom</a></li>
<li data-id="playthrough_7_8">Climb down, back outside and up the first ladder again</li>
<li data-id="playthrough_7_48">Use a <a href="http://darksouls2.wikidot.com/firebomb">Firebomb</a> to explode the barrels and get the <a href="http://darksouls2.wikidot.com/archdrake-robes">Archdrake Robes</a> and <a href="http://darksouls2.wikidot.com/archdrake-shield">Archdrake Shield</a>, and move in to the next room</li>
<li data-id="playthrough_7_9">Open up the chests to get the <a href="http://darksouls2.wikidot.com/parrying-dagger">Parrying Dagger</a>, <a href="http://darksouls2.wikidot.com/twinblade">Twinblade</a> and <a href="http://darksouls2.wikidot.com/bone-staff">Bone Staff</a></li>
<li data-id="playthrough_7_10">Use a <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a> and get the <a href="http://darksouls2.wikidot.com/soul-vessel">Soul Vessel</a> and <a href="http://darksouls2.wikidot.com/wilted-dusk-herb">Wilted Dusk Herb</a> from the chests in the hidden rooms it reveals</li>
<li data-id="playthrough_7_11">Go up in the cage elevator in the right room and get the <a href="http://darksouls2.wikidot.com/skeptic-s-spice">Skeptic's Spice</a> from the corpse</li>
<li data-id="playthrough_7_12">Drop down on to the ledge in the elevator shaft to get the <a href="http://darksouls2.wikidot.com/bonfire-ascetic">Bonfire Ascetic</a>, drop down again and go back up in the elevator</li>
<li data-id="playthrough_7_13">Open the door, and if you already have a <a href="http://darksouls2.wikidot.com/fragrant-branch-of-yore">Fragrant Branch of Yore</a> you can go upstairs, talk to <a href="http://darksouls2.wikidot.com/straid-of-olaphis">Straid Of Olaphis</a> and light his bonfire</li>
<li data-id="playthrough_7_14">If you want to skip most of <a href="http://darksouls2.wikidot.com/the-lost-bastille">The Lost Bastille</a> you can open the gate and continue on to <a href="http://darksouls2.wikidot.com/sinner-s-rise">Sinner's Rise</a></li>
<li data-id="playthrough_7_15">Go downstairs, in to the alcove beside the cage, open the secret door in front of you, then open the second secret door on the left</li>
<li data-id="playthrough_7_16">Go outside and to the left to pick up the <a href="http://darksouls2.wikidot.com/bracing-knuckle-ring">Bracing Knuckle Ring</a>, then jump across the gap and pick up the <a href="http://darksouls2.wikidot.com/flame-butterfly">Flame Butterfly</a> and <a href="http://darksouls2.wikidot.com/torch">Torch</a></li>
<li data-id="playthrough_7_17">Follow the ledge to get the <a href="http://darksouls2.wikidot.com/soul-of-a-brave-warrior">Soul Of A Brave Warrior</a> and <a href="http://darksouls2.wikidot.com/golden-wing-shield">Golden Wing Shield</a>, drop down, and walk down the steps to the bonfire</li>
<li data-id="playthrough_7_18">Go back up the stairs, cross the stone rubble on the right, open the door and deal with the ambush</li>
<li data-id="playthrough_7_19">Head downstairs, open the shortcut door, and get the <a href="http://darksouls2.wikidot.com/soul-of-a-proud-knight">Soul Of A Proud Knight</a> and <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a> from the corpse</li>
<li data-id="playthrough_7_20">Go up the ladders and get the <a href="http://darksouls2.wikidot.com/radiant-lifegem">Radiant Lifegem</a> from the corpse in the open cell</li>
<li data-id="playthrough_7_21">Go through the fog gate and kill the <a href="http://darksouls2.wikidot.com/ruin-sentinels">Ruin Sentinels</a> boss
<ul>
<li data-id="playthrough_7_21_1">You can summon <a href="http://darksouls2.wikidot.com/pilgrim-bellclaire">Pilgrim Bellclaire</a> from the open cell before the fog gate</li>
<li data-id="playthrough_7_21_2">You will get the <a href="http://darksouls2.wikidot.com/ruin-sentinel-soul">Ruin Sentinel Soul</a> and 33,000 souls</li>
<li data-id="playthrough_7_21_3">Optionally do some <a href="http://darksouls2.wikidot.com/online-matchmaking">jolly co-op</a> to get some extra souls. You will get 8,250 souls each time</li>
</ul>
</li>
<li data-id="playthrough_7_22">After the fight, open the four hidden doors in the boss room and get the <a href="http://darksouls2.wikidot.com/target-shield">Target Shield</a> and <a href="http://darksouls2.wikidot.com/rusted-coin">Rusted Coin</a></li>
<li data-id="playthrough_7_23">Go up the ladder in one of the rooms to get the <a href="http://darksouls2.wikidot.com/hush">Hush</a> Sorcery from the chest, open the hidden door and get the <a href="http://darksouls2.wikidot.com/homeward">Homeward Bone</a> from the ledge</li>
<li data-id="playthrough_7_24">Go out the door, up the stairs, open the hidden door, watch out for the <a href="http://darksouls2.wikidot.com/undead-citizen">Undead Citizen</a> and get the <a href="http://darksouls2.wikidot.com/rouge-water">Rouge Water</a> from the chest</li>
<li data-id="playthrough_7_25">Continue on, watching for the exploding <a href="http://darksouls2.wikidot.com/undead-citizen">Undead Citizen</a> in the narrow passageway, get the <a href="http://darksouls2.wikidot.com/soul-of-a-nameless-soldier">Soul of a Nameless Soldier</a> and light the bonfire</li>
<li data-id="playthrough_7_26">Return to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, level up, upgrade your weapons and armor, and buy any consumables you need</li>
<li data-id="playthrough_7_27">Remember to upgrade your <a href="http://darksouls2.wikidot.com/estus-flask">Estus Flask</a></li>
<li data-id="playthrough_7_28">Travel back to <a href="http://darksouls2.wikidot.com/the-lost-bastille">The Lost Bastille / Servants' Quarters</a> bonfire</li>
<li data-id="playthrough_7_29">Go up the steps, along the passageway, open the door and get the <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a> from the corpse at the edge on the left</li>
<li data-id="playthrough_7_30">Go in to the tower and through the door on the left, go through the gap in the wall on to the roof and get the <a href="http://darksouls2.wikidot.com/flame-butterfly">Flame Butterflies</a> from the corpse</li>
<li data-id="playthrough_7_31">Jump across to the other roof, get the <a href="http://darksouls2.wikidot.com/large-soul-of-a-nameless-soldier">Large Soul Of A Nameless Soldier</a>, go up the ladder, through the barrel room, down the staircase and back to the bonfire</li>
<li data-id="playthrough_7_32">Go down the ladder, get the <a href="http://darksouls2.wikidot.com/priest-s-chime">Priest's Chime</a> from the chest, and the <a href="http://darksouls2.wikidot.com/large-club">Large Club</a> from the corpse</li>
<li data-id="playthrough_7_33">Use a <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a> to open the hidden door and head in to <a herf="http://darksouls2.wikidot.com/belfry-luna">Belfry Luna</a></li>
<li data-id="playthrough_7_34">If you are online then keep alert because you can be invaded here by members of the <a href="http://darksouls2.wikidot.com/bell-keepers">Bell Keepers</a> covenant</li>
<li data-id="playthrough_7_35">Talk to the <a href="http://darksouls2.wikidot.com/belfry-guard">Belfry Guard</a> and optionally join the <a href="http://darksouls2.wikidot.com/bell-keepers">Bell Keepers</a> covenant to try and earn some <a href="http://darksouls2.wikidot.com/titanite-chunk">Titanite Chunks</a></li>
<li data-id="playthrough_7_36">Go up to next floor, get the <a href="http://darksouls2.wikidot.com/skeptic-s-spice">Skeptic's Spice</a> from the corpse on the railing</li>
<li data-id="playthrough_7_37">Drop down the hole in the floor and get the <a href="http://darksouls2.wikidot.com/blue-tearstone-ring">Blue Tearstone Ring</a> from the chest, the <a href="http://darksouls2.wikidot.com/skeptic-s-spice">Skeptic's Spice</a> from the corpse, and go up to the top floor</li>
<li data-id="playthrough_7_38">Go up the ladder and get the <a href="http://darksouls2.wikidot.com/radiant-lifegem">Radiant Lifegems</a> and <a href="http://darksouls2.wikidot.com/twilight-herb">Twilight Herbs</a> from the chest, and <a href="http://darksouls2.wikidot.com/skeptic-s-spice">Skeptic's Spice</a> from the corpse</li>
<li data-id="playthrough_7_39">Pull the lever to ring the bell and go back down the ladder</li>
<li data-id="playthrough_7_40">Go through the fog gate and kill the <a href="http://darksouls2.wikidot.com/belfry-gargoyles">Belfry Gargoyles</a> boss
<ul>
<li data-id="playthrough_7_40_1">There are no NPCs to summon for this fight</li>
<li data-id="playthrough_7_40_2">You will get the <a href="http://darksouls2.wikidot.com/belfry-gargoyle-soul">Belfry Gargoyle Soul</a> and 25,000 souls</li>
<li data-id="playthrough_7_40_3">Optionally do some <a href="http://darksouls2.wikidot.com/online-matchmaking">jolly co-op</a> to get some extra souls. You will get 6,250 souls each time</li>
</ul>
</li>
<li data-id="playthrough_7_41">Get the <a href="http://darksouls2.wikidot.com/soul-of-a-proud-knight">Soul Of A Proud Knight</a> from the edge of the roof</li>
<li data-id="playthrough_7_42">Go out the door, down the staircase, get the <a href="http://darksouls2.wikidot.com/southern-ritual-band">Southern Ritual Band</a> from the chest, go out the door and light the bonfire</li>
<li data-id="playthrough_7_43">Go down the ladder beside the bonfire and be ready for a tough ambush by dogs and the red phantom <a href="http://darksouls2.wikidot.com/vorgol-the-sinner">Vorgol The Sinner</a></li>
<li data-id="playthrough_7_44">Pick up the <a href="http://darksouls2.wikidot.com/bastille-key">Bastille Key</a> and <a href="http://darksouls2.wikidot.com/falchion">Enchanted Falchion</a>, and go back up the ladder</li>
<li data-id="playthrough_7_45">Return to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, level up, upgrade your weapons and armor, and buy any consumables you need</li>
<li data-id="playthrough_7_46">Talk to <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a> to get a <a href="http://darksouls2.wikidot.com/radiant-lifegem">Radiant Lifegem</a></li>
<li data-id="playthrough_7_47">Travel to the <a href="http://darksouls2.wikidot.com/huntsman-s-copse">Huntsman's Copse / Undead Refuge</a> bonfire</li>
</ul>
<a name="Huntsmans_Copse"></a>
<h3><a href="http://darksouls2.wikidot.com/huntsman-s-copse">Huntsman's Copse</a> / <a href="http://darksouls2.wikidot.com/undead-purgatory">Undead Purgatory</a> (Levels 55-65) <span id="playthrough_totals_8"></span></h3>
<ul>
<li data-id="playthrough_8_1">Remember that <a href="http://darksouls2.wikidot.com/felkin-the-outcast">Felkin the Outcast</a> is just beside the bonfire if you need to buy anything from him</li>
<li data-id="playthrough_8_2">Make your way up the path and kill the <a href="http://darksouls2.wikidot.com/great-moth">Great Moth</a> before it poisons you</li>
<li data-id="playthrough_8_3">Keep moving ahead towards the building, stay on the ledge when you get inside and deal with the door ambush at the end</li>
<li data-id="playthrough_8_4">Go out the door, get the <a href="http://darksouls2.wikidot.com/cracked-red-eye-orb">Cracked Red Eye Orbs</a>, climb down the ladder, light the bonfire and push down the tree shortcut</li>
<li data-id="playthrough_8_5">Go up the ladder and make the difficult jump across to the pillar to get the <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a> and <a href="http://darksouls2.wikidot.com/token-of-fidelity">Token of Fidelity</a></li>
<li data-id="playthrough_8_6">Drop down to the lower ledge, go in to the cavern, kill the <a href="http://darksouls2.wikidot.com/great-moth">Great Moths</a>, and get the <a href="http://darksouls2.wikidot.com/monastery-charm">Monastery Charm</a> and <a href="http://darksouls2.wikidot.com/soul-of-a-proud-knight">Soul Of A Proud Knight</a> from the corpse</li>
<li data-id="playthrough_8_7">Drop down the mushrooms, get the <a href="http://darksouls2.wikidot.com/poison-moss">Poison Moss</a> on the second one, and get <a href="http://darksouls2.wikidot.com/ricard-s-rapier">Ricard's Rapier</a> from the chest at the bottom</li>
<li data-id="playthrough_8_8">Open the hidden door, go through the tunnel, get the <a href="http://darksouls2.wikidot.com/large-soul-of-a-nameless-soldier">Large Soul Of A Nameless Soldier</a>, and go up in the cage elevator</li>
<li data-id="playthrough_8_9">Continue on and open the next hidden door to return to the main building</li>
<li data-id="playthrough_8_10">Go down in to the lower area, and get the <a href="http://darksouls2.wikidot.com/bandit-s-knife">Bandit's Knife</a>, <a href="http://darksouls2.wikidot.com/soul-of-a-nameless-soldier">Soul of a Nameless Soldier</a> and <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a> from the corpses</li>
<li data-id="playthrough_8_11">Go up the ladder on to the roof, drop down to the ledge to get the <a href="http://darksouls2.wikidot.com/poison-moss">Poison Mosses</a> and <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a>, drop down again and return to the bonfire</li>
<li data-id="playthrough_8_12">Continue in to the copse, and get the <a href="http://darksouls2.wikidot.com/large-soul-of-a-lost-undead">Large Soul Of A Lost Undead</a> and <a href="http://darksouls2.wikidot.com/small-orange-burr">Small Orange Burr</a> from the corpse to the left of the first bridge</li>
<li data-id="playthrough_8_13">Go over the bridge and get the <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a>, <a href="http://darksouls2.wikidot.com/aromatic-ooze">Aromatic Ooze</a>, <a href="http://darksouls2.wikidot.com/morning-star">Morning Star</a> and <a href="http://darksouls2.wikidot.com/large-soul-of-a-nameless-soldier">Large Soul Of A Nameless Soldier</a> from the area on the left</li>
<li data-id="playthrough_8_14">Continue up the hill, drop down through the roof of the hut and get the <a href="http://darksouls2.wikidot.com/soul-spear">Soul Spear</a> Sorcery, <a href="http://darksouls2.wikidot.com/poison-moss">Poison Moss</a> and <a href="http://darksouls2.wikidot.com/green-blossom">Green Blossom</a></li>
<li data-id="playthrough_8_15">Go back up the hill and in to the next hut, watching for the ambush from above, and pull the lever to lower the bridge</li>
<li data-id="playthrough_8_16">Head across the bridge, go over the smaller bridge, and continue along the ledge until you get to a path leading up to the left</a>
<li data-id="playthrough_8_17">Go up the path, kill the <a href="http://darksouls2.wikidot.com/crystal-lizard">Crystal Lizard</a> and get the <a href="http://darksouls2.wikidot.com/poison-throwing-knife">Poison Throwing Knives</a></li>
<li data-id="playthrough_8_18">Walk or drop back down and continue until you get to a hut with two enemies in it</li>
<li data-id="playthrough_8_19">Kill them, get the <a href="http://darksouls2.wikidot.com/undead-lockaway-key">Undead Lockaway Key</a>, return to the bridge, open the door of the hut and light the bonfire</li>
<li data-id="playthrough_8_20">Talk to <a href="http://darksouls2.wikidot.com/creighton-the-wanderer">Creighton The Wanderer</a> and learn the Fist Pump gesture</li>
<li data-id="playthrough_8_21">Optionally, kill him to get <a href="http://darksouls2.wikidot.com/creighton-s-steel-mask">Creighton's Steel Mask</a>, and make the rest of <a href="http://darksouls2.wikidot.com/creighton-s-set">Creighton's Set</a> available to buy from <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a></li>
<li data-id="playthrough_8_22">In the next cave area remember that the skeletons respawn until you kill the <a href="http://darksouls2.wikidot.com/necromancer">Necromancer</a> and the puts inflict curse until you destroy them</li>
<li data-id="playthrough_8_23">Go in to the cave beside the hut, get the <a href="http://darksouls2.wikidot.com/mace">Magic Mace</a> and <a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shard</a>, and kill the <a href="http://darksouls2.wikidot.com/necromancer">Necromancer</a> in the next room</li>
<li data-id="playthrough_8_24">Go out the other tunnel, cross the small wooden bridge and continue along the ledge to the right</li>
<li data-id="playthrough_8_25">Near the waterfall you will get invaded by <a href="http://darksouls2.wikidot.com/merciless-roenna">Merciless Roenna</a>, so be ready</li>
<li data-id="playthrough_8_26">Don't go through the fog gate yet, instead continue along the ledge in to the cave and jump across to kill the <a href="http://darksouls2.wikidot.com/necromancer">Necromancer</a></li>
<li data-id="playthrough_8_27">Go out the tunnel on the right and get the <a href="http://darksouls2.wikidot.com/combustion">Combustion</a> Pyromancy and <a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shard</a> from the ledge</li>
<li data-id="playthrough_8_28">Go back in and cross the room, get the <a href="http://darksouls2.wikidot.com/flame-butterfly">Flame Butterflies</a>, pull the lever to open the shortcut gate and return to the fog gate</li>
<li data-id="playthrough_8_29">Go through the fog gate and kill the <a href="http://darksouls2.wikidot.com/skeleton-lords">Skeleton Lords</a> boss
<ul>
<li data-id="playthrough_8_29_1">There are no NPCs to summon for this fight</li>
<li data-id="playthrough_8_29_2">As you kill each Lord, several enemies will spawn after several seconds</li>
<li data-id="playthrough_8_29_3">You will get the <a href="http://darksouls2.wikidot.com/skeleton-lord-s-soul">Skeleton Lord's Soul</a> and 15,000</li>
<li data-id="playthrough_8_29_4">Optionally do some <a href="http://darksouls2.wikidot.com/online-matchmaking">jolly co-op</a> to get some extra souls. You will get 3,,750 souls each time</li>
</ul>
</li>
<li data-id="playthrough_8_30">Go out the new passageway, lower the bridge, continue on and light the bonfire in the cave, remembering about the poison at the entrance</li>
<li data-id="playthrough_8_31">Leave the cave, talk to <a href="http://darksouls2.wikidot.com/stone-trader-chloanne">Stone Trader Chloanne</a> and buy useful stuff from her
<ul>
<li data-id="playthrough_8_31_1"><a href="http://darksouls2.wikidot.com/bonfire-ascetic">Bonfire Ascetic</a> @ 7,500 souls</li>
<li data-id="playthrough_8_31_2"><a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shard</a> @ 1,000 souls each (Max 10)</li>
<li data-id="playthrough_8_31_3"><a href="http://darksouls2.wikidot.com/soul-appease">Soul Appease</a> Miracle @ 8,800 souls</li>
<li data-id="playthrough_8_31_4"><a href="http://darksouls2.wikidot.com/dead-again">Dead Again</a> Hex @ 4,000 souls</li>
</ul>
</li>
<li data-id="playthrough_8_32">Exhaust her dialog so that she returns to <a href="http://darksouls2.wikidot.com/majula">Majula</a></li>
<li data-id="playthrough_8_33">If you spend 20,000 souls with her she will give you two <a href="http://darksouls2.wikidot.com/twinkling-titanite">Twinkling Titanite</a></li>
<li data-id="playthrough_8_34">Optionally, kill her to get a <a href="http://darksouls2.wikidot.com/palestone">Palestone</a></li>
<li data-id="playthrough_8_35">Return to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, level up, upgrade your weapons and armor, and buy any consumables you need</li>
<li data-id="playthrough_8_36">If you talk to <a href="http://darksouls2.wikidot.com/saulden-the-crestfallen-warrior">Saulden The Crestfallen Warrior</a> he should give you a <a href="http://darksouls2.wikidot.com/soul-vessel">Soul Vessel</a>. If not, come back to talk to him later</li>
<li data-id="playthrough_8_37">Travel to the <a href="http://darksouls2.wikidot.com/huntsman-s-copse">Huntsman's Copse / Undead Lockaway</a> bonfire</li>
<li data-id="playthrough_8_38">Go back across the large bridge, drop down to the left and cross the smaller stone bridge</li>
<li data-id="playthrough_8_39">Go up the hill, get the <a href="http://darksouls2.wikidot.com/notched-whip">Notched Whip</a> and continue through the passageway on the left</li>
<li data-id="playthrough_8_40">Make your way forward, watching out for the four enemies that will drop down and try to ambush you</li>
<li data-id="playthrough_8_41">Cross the bridge, watching out for the gaps, and kill red phantom that blocks the way</li>
<li data-id="playthrough_8_42">Jump across to the platform to get the <a href="http://darksouls2.wikidot.com/sublime-bone-dust">Sublime Bone Dust</a> and <a href="http://darksouls2.wikidot.com/fire-seed">Fire Seed</a></li>
<li data-id="playthrough_8_43">Go through the fog gate and kill the <a href="http://darksouls2.wikidot.com/executioner-s-chariot">Executioner's Chariot</a> boss
<ul>
<li data-id="playthrough_8_43_1">There are no NPCs to summon for this fight</li>
<li data-id="playthrough_8_43_2">Use <a href="http://darksouls2.wikidot.com/alluring-skull">Alluring Skulls</a> to distract the skeletons while you kill the <a href="http://darksouls2.wikidot.com/necromancer">Necromancers</a></li>
<li data-id="playthrough_8_43_3">You will get the <a href="http://darksouls2.wikidot.com/executioner-s-chariot-soul">Executioner's Chariot Soul</a> and 19,000 souls</li>
<li data-id="playthrough_8_43_4">Optionally do some <a href="http://darksouls2.wikidot.com/online-matchmaking">jolly co-op</a> to get some extra souls. You will get 4,750 souls each time</li>
</ul>
</li>
<li data-id="playthrough_8_44">Pick up the <a href="http://darksouls2.wikidot.com/soul-of-a-brave-warrior">Soul Of A Brave Warrior</a> and <a href="http://darksouls2.wikidot.com/fading-soul">Fading Souls</a> scattered around the area, the go upstairs and light the bonfire</li>
<li data-id="playthrough_8_45">If you have a <a href="http://darksouls2.wikidot.com/token-of-spite">Token of Spite</a>, talk to <a href="http://darksouls2.wikidot.com/titchy-gren">Titchy Gren</a> if you want to join the <a href="http://darksouls2.wikidot.com/brotherhood-of-blood">brotherhood of blood</a> covenant and be able to buy stuff from him
<ul>
<li data-id="playthrough_8_45_1"><a href="http://darksouls2.wikidot.com/great-scythe">Great Scythe</a> @ 3,000 souls</li>
<li data-id="playthrough_8_45_2"><a href="http://darksouls2.wikidot.com/priest-s-chime">Priest's Chime</a> @ 4,000 souls</li>
<li data-id="playthrough_8_45_3"><a href="http://darksouls2.wikidot.com/firestorm">Firestorm</a> Pyromancy @ 4,500 souls</li>
<li data-id="playthrough_8_45_4"><a href="http://darksouls2.wikidot.com/great-combustion">Great Combustion</a> Pyromancy @ 4,800 souls</li>
<li data-id="playthrough_8_45_5"><a href="http://darksouls2.wikidot.com/fire-whip">Fire Whip</a> Pyromancy @ 3,800 souls</li>
<li data-id="playthrough_8_45_6"><a href="http://darksouls2.wikidot.com/delicate-string">Delicate String</a> @ 20,000 souls (Max 1)</li>
<li data-id="playthrough_8_45_7"><a href="http://darksouls2.wikidot.com/hexing-urn">Hexing Urn</a> @ 360 souls each</li>
<li data-id="playthrough_8_45_8"><a href="http://darksouls2.wikidot.com/silver-talisman">Silver Talisman</a> @ 1,300 souls each</li>
<li data-id="playthrough_8_45_9"><a href="http://darksouls2.wikidot.com/red-sign-soapstone">Red Sign Soapstone</a> @ 5,000 souls (Max 1)</li>
</ul>
</li>
<li data-id="playthrough_8_46">Once you have killed the <a href="http://darksouls2.wikidot.com/skeleton-lords">Skeleton Lords</a> he will sell the <a href="http://darksouls2.wikidot.com/bone-king-set">Bone King Set</a> (18,600 souls)</li>
<li data-id="playthrough_8_47">Once you have killed the <a href="http://darksouls2.wikidot.com/executioner-s-chariot">Executioner's Chariot</a> and been to <a href="http://darksouls2.wikidot.com/drangleic-castle">Drangleic Castle</a> he will sell the <a href="http://darksouls2.wikidot.com/executioner-set">Executioner Set</a> (25,100 souls)</li>
<li data-id="playthrough_8_48">Optionally, kill him to get <a href="http://darksouls2.wikidot.com/nahr-alma-hood">Nahr Alma Hood</a>, and make the <a href="http://darksouls2.wikidot.com/nahr-alma-robes">Nahr Alma Robes</a> and <a href="http://darksouls2.wikidot.com/scythe-of-nahr-alma">Scythe of Nahr Alma</a> available to buy from <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a></li>
<li data-id="playthrough_8_49">If you joined the covenant you can use the statues in front of him to duel other <a href="http://darksouls2.wikidot.com/brotherhood-of-blood">Brotherhood of Blood</a> members</li>
<li data-id="playthrough_8_50">Return to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, level up, upgrade your weapons and armor, and buy any consumables you need</li>
<li data-id="playthrough_8_51">Remember to burn the <a href="http://darksouls2.wikidot.com/sublime-bone-dust">Sublime Bone Dust</a> to strengthen your <a href="http://darksouls2.wikidot.com/estus-flask">Estus Flask</a></li>
<li data-id="playthrough_8_52">Travel to the <a href="http://darksouls2.wikidot.com/harvest-valley">Harvest Valley / Poison Pool</a> bonfire</li>
</ul>
<a name="Harvest_Valley"></a>
<h3><a href="http://darksouls2.wikidot.com/harvest-valley">Harvest Valley</a> (Levels 60-70) <span id="playthrough_totals_9"></span></h3>
<ul>
<li data-id="playthrough_9_1">Make sure you have some <a href="http://darksouls2.wikidot.com/poison-moss">Poison Moss</a> or lots of <a href="http://darksouls2.wikidot.com/lifegem">Lifegems</a> to deal with the poison in this level</li>
<li data-id="playthrough_9_2">Head down in to the valley and get the <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a> from the corpse</li>
<li data-id="playthrough_9_3">Pick up the <a href="http://darksouls2.wikidot.com/fading-soul">Fading Souls</a>, <a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shards</a>, <a href="http://darksouls2.wikidot.com/small-smooth-silky-stone">Small Smooth and Silky Stones</a>, <a href="http://darksouls2.wikidot.com/titanite-chunk">Titanite Chunk</a> and <a href="http://darksouls2.wikidot.com/poison-throwing-knife">Poison Throwing Knives</a> from the first area</li>
<li data-id="playthrough_9_4">Go through the hole in to the second area and get the <a href="http://darksouls2.wikidot.com/fragrant-branch-of-yore">Fragrant Branch of Yore</a> and <a href="http://darksouls2.wikidot.com/torch">Torch</a> from the corpse</li>
<li data-id="playthrough_9_5">Drop down in to the poison mist and get the <a href="http://darksouls2.wikidot.com/fire-seed">Fire Seed</a> and <a href="http://darksouls2.wikidot.com/divine-blessing">Divine Blessing</a> from the chest</li>
<li data-id="playthrough_9_6">Go back up, in to the cave, get the <a href="http://darksouls2.wikidot.com/raw-stone">Raw Stone</a> from the chest, and buy anything you need from <a href="http://darksouls2.wikidot.com/lonesome-gavlan">Lonesome Gavlan</a></li>
<li data-id="playthrough_9_7">Head back out and in to the next area, getting the <a href="http://darksouls2.wikidot.com/torch">Torch</a> on the way, go up the first ladder and get the <a href="http://darksouls2.wikidot.com/hexing-urn">Hexing Urns</a></li>
<li data-id="playthrough_9_8">Go back down, up the second ladder, pull the lever to open the gate, go through and to the right to light the bonfire</li>
<li data-id="playthrough_9_9">Continue to the next area, take the passageway to the left and go in to the right to face the ambush by the <a href="http://darksouls2.wikidot.com/artificial-undead">Artificial Undead</a></li>
<li data-id="playthrough_9_10">Get the <a href="http://darksouls2.wikidot.com/green-blossom">Green Blossoms</a> from the corpse and then go around smashing the planks and picking up the items</li>
<li data-id="playthrough_9_11">You will get <a href="http://darksouls2.wikidot.com/lifegem">Lifegems</a>, <a href="http://darksouls2.wikidot.com/simpleton-s-spice">Simpleton's Spice</a>, a <a href="http://darksouls2.wikidot.com/large-titanite-shard">Large Titanite Shard</a>, a <a href="http://darksouls2.wikidot.com/large-soul-of-a-brave-warrior">Large Soul Of A Brave Warrior</a>, a <a href="http://darksouls2.wikidot.com/radiant-lifegem">Radiant Lifegem</a> and <a href="http://darksouls2.wikidot.com/skeptic-s-spice">Skeptic's Spice</a></li>
<li data-id="playthrough_9_12">Go through the tunnel on the upper level, turn left and kill the <a href="http://darksouls2.wikidot.com/crystal-lizard">Crystal Lizard</a> but do not drop down in to the mist</li>
<li data-id="playthrough_9_13">Double back, get the <a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shard</a> and <a href="http://darksouls2.wikidot.com/fragrant-branch-of-yore">Fragrant Branch of Yore</a> and drop down to the main area</li>
<li data-id="playthrough_9_14">Go back up the same way, wait for the <a href="http://darksouls2.wikidot.com/mounted-overseer">Mounted Overseer</a> to smash through the planks, and bait him in to smashing the planks behind him</li>
<li data-id="playthrough_9_15">Pick up the <a href="http://darksouls2.wikidot.com/soul-of-a-lost-undead">Soul Of A Lost Undead</a>, <a href="http://darksouls2.wikidot.com/old-knight-pike">Old Knight Pike</a>, <a href="http://darksouls2.wikidot.com/old-knight-greatshield">Old Knight Greatshield</a>, <a href="http://darksouls2.wikidot.com/torch">Torch</a>, <a href="http://darksouls2.wikidot.com/radiant-lifegem">Radiant Lifegem</a> and <a href="http://darksouls2.wikidot.com/smooth-silky-stone">Smooth and Silky Stone</a></li>
<li data-id="playthrough_9_16">Leave the cave, drop down to the right and get the <a href="http://darksouls2.wikidot.com/poison-stone">Poison Stone</a> and <a href="http://darksouls2.wikidot.com/rotten-pine-resin">Rotten Pine Resins</a> from the chest</li>
<li data-id="playthrough_9_17">Climb down the ladder in to the poison mist, go straight ahead, pick up the <a href="http://darksouls2.wikidot.com/soul-of-a-nameless-soldier">Soul of a Nameless Soldier</a> and climb up the ladder</li>
<li data-id="playthrough_9_18">Drop down the smallest hole without the ladder and get the <a href="http://darksouls2.wikidot.com/fading-soul">Fading Soul</a></li>
<li data-id="playthrough_9_19">Continue forward and to the right, pick up the <a href="http://darksouls2.wikidot.com/simpleton-s-spice">Simpleton's Spice</a>, and go up the ramp to the right at the end</li>
<li data-id="playthrough_9_20">Drop down in to the mist and get the <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a>, <a href="http://darksouls2.wikidot.com/large-titanite-shard">Large Titanite Shard</a>, <a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shard</a>, <a href="http://darksouls2.wikidot.com/soul-of-a-brave-warrior">Soul Of A Brave Warrior</a> and the <a href="http://darksouls2.wikidot.com/chameleon">Chameleon</a> Sorcery</li>
<li data-id="playthrough_9_21">Go across the bridge, up the steps and turn left before entering the building, and continue forward through the tunnels</li>
<li data-id="playthrough_9_22">Examine the statue to learn the Praise The Sun gesture and optionally join the <a href="http://darksouls2.wikidot.com/heirs-of-the-sun">Heirs of the Sun</a> covenant</li>
<li data-id="playthrough_9_23">Take a moment to gaze at the sun!</li>
<li data-id="playthrough_9_24">Go back and in to the building, watching out for the <a href="http://darksouls2.wikidot.com/undead-steelworker">Undead Steelworker</a> that will ambush you through the poison pots</li>
<li data-id="playthrough_9_25">Continue forward and up the steps to the fog gate, and drop down the gap beside the wooden planks to get the <a href="http://darksouls2.wikidot.com/skeptic-s-spice">Skeptic's Spice</a></li>
<li data-id="playthrough_9_26">Jump across to the ledge of the cage room and go down the passageway, watching out for the arrow trap that fires from behind you</li>
<li data-id="playthrough_9_27">Get the <a href="http://darksouls2.wikidot.com/soul-of-a-nameless-soldier">Soul of a Nameless Soldier</a> and <a href="http://darksouls2.wikidot.com/titanite-shard">Titanite Shards</a> from the corpse</li>
<li data-id="playthrough_9_28">Get the <a href="http://darksouls2.wikidot.com/heavy-crossbow">Heavy Crossbow +3</a> and the <a href="http://darksouls2.wikidot.com/heavy-bolt">Heavy Bolts</a> from the chest, head back out and jump across to the steps</li>
<li data-id="playthrough_9_29">Go down the steps in to the poison, go straight down the passageway, turn right in to the room and clear it out</li>
<li data-id="playthrough_9_30">Use a <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a> and get the <a href="http://darksouls2.wikidot.com/poisonbite-ring">Poisonbite Ring</a> and <a href="http://darksouls2.wikidot.com/soul-of-a-proud-knight">Soul Of A Proud Knight</a> from the chest in the hidden room</li>
<li data-id="playthrough_9_31">Go back in to the poison, turn right and get the <a href="http://darksouls2.wikidot.com/estus-flask-shard">Estus Flask Shard</a> from the end, and then go all the way back to the fog gate</li>
<li data-id="playthrough_9_32">Go in to the side room and get the <a href="http://darksouls2.wikidot.com/torch">Torch</a> from the trapped chest</li>
<li data-id="playthrough_9_33">Go through the fog gate and kill the <a href="http://darksouls2.wikidot.com/covetous-demon">Covetous Demon</a> boss
<ul>
<li data-id="playthrough_9_33_1">There are no NPCs to summon for this fight</li>
<li data-id="playthrough_9_33_2">You can use <a href="http://darksouls2.wikidot.com/iron-arrow">Iron Arrows</a> or <a href="http://darksouls2.wikidot.com/heavy-bolt">Heavy Bolts</a> to shoot down the pots to release enemies to distract the boss</li>
<li data-id="playthrough_9_33_3">You will get the <a href="http://darksouls2.wikidot.com/covetous-demon-soul">Covetous Demon Soul</a> and 13,000 souls</li>
<li data-id="playthrough_9_33_4">Optionally do some <a href="http://darksouls2.wikidot.com/online-matchmaking">jolly co-op</a> to get some extra souls. You will get 3,250 souls each time</li>
</ul>
</li>
<li data-id="playthrough_9_34">Return to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, level up, upgrade your weapons and armor, and buy any consumables you need</li>
<li data-id="playthrough_9_35">Don't forget to upgrade your <a href="http://darksouls2.wikidot.com/estus-flask">Estus Flask</a></li>
<li data-id="playthrough_9_36">Now that you have a couple of <a href="http://darksouls2.wikidot.com/fragrant-branch-of-yore">Fragrant Branches of Yore</a> you can take care of a couple of things</li>
<li data-id="playthrough_9_37">If you want some boss soul weapons then you need to go and free <a href="http://darksouls2.wikidot.com/straid-of-olaphis">Straid Of Olaphis</a>
<ul>
<li data-id="playthrough_9_37_1">Travel to the <a href="http://darksouls2.wikidot.com/the-lost-bastille">The Lost Bastille / Servants' Quarters</a> bonfire</li>
<li data-id="playthrough_9_37_2">Go up the steps, across the wooden bridge, up the spiral staircase in the tower and through the barrel room</li>
<li data-id="playthrough_9_37_3">Go in to the room with the big pots, and keep going up the stairs until you get to him</li>
<li data-id="playthrough_9_37_4">Use a <a href="http://darksouls2.wikidot.com/fragrant-branch-of-yore">Fragrant Branch of Yore</a> to free him</li>
<li data-id="playthrough_9_37_5">Don't forget to light the bonfire to make it easy to get back here</li>
</ul>
</li>
<li data-id="playthrough_9_38">Learn the Mock gesture from him and buy anything you need
<ul>
<li data-id="playthrough_9_38_1"><a href="http://darksouls2.wikidot.com/ring-of-knowledge">Ring of Knowledge</a> @ 28,000 souls (Increases Intelligence)</li>
<li data-id="playthrough_9_38_2"><a href="http://darksouls2.wikidot.com/lingering-dragoncrest-ring">Lingering Dragoncrest Ring</a> @ 2,500 souls (Extends length of spell effect)</li>
<li data-id="playthrough_9_38_3"><a href="http://darksouls2.wikidot.com/homing-soul-arrow">Homing Soul Arrow</a> Sorcery @ 6,500 souls</li>
<li data-id="playthrough_9_38_4"><a href="http://darksouls2.wikidot.com/strong-magic-shield">Strong Magic Shield</a> Sorcery @ 6,300 souls</li>
<li data-id="playthrough_9_38_5"><a href="http://darksouls2.wikidot.com/cast-light">Cast Light</a> Sorcery @ 3,000 souls</li>
<li data-id="playthrough_9_38_6"><a href="http://darksouls2.wikidot.com/resplendent-life">Resplendent Life</a> Miracle @ 4,500 souls</li>
<li data-id="playthrough_9_38_7"><a href="http://darksouls2.wikidot.com/great-lightning-spear">Great Lightning Spear</a> Miracle @ 13,000 souls</li>
<li data-id="playthrough_9_38_8"><a href="http://darksouls2.wikidot.com/unveil">Unveil</a> Miracle @ 2,200 souls</li>
<li data-id="playthrough_9_38_9"><a href="http://darksouls2.wikidot.com/sunlight-blade">Sunlight Blade</a> Miracle @ 12,400 souls</li>
<li data-id="playthrough_9_38_10"><a href="http://darksouls2.wikidot.com/lingering-flame">Lingering Flame</a> Pyromancy @ 6,700 souls</li>
<li data-id="playthrough_9_38_11"><a href="http://darksouls2.wikidot.com/flame-swathe">Flame Swathe</a> Pyromancy @ 9,500 souls</li>
<li data-id="playthrough_9_38_12"><a href="http://darksouls2.wikidot.com/dark-orb">Dark Orb</a> Hex @ 600 souls</li>
<li data-id="playthrough_9_38_13"><a href="http://darksouls2.wikidot.com/dark-hail">Dark Hail</a> Hex @ 1,500 souls</li>
<li data-id="playthrough_9_38_14"><a href="http://darksouls2.wikidot.com/dark-fog">Dark Fog</a> Hex @ 5,200 souls</li>
<li data-id="playthrough_9_38_15"><a href="http://darksouls2.wikidot.com/affinity">Affinity</a> Hex @ 11,500 souls</li>
<li data-id="playthrough_9_38_16"><a href="http://darksouls2.wikidot.com/rouge-water">Rouge Water</a> @ 3,000 souls each (Max 3)</li>
</ul>
</li>
<li data-id="playthrough_9_39">Trade in your boss souls for any weapons or spells that you want</li>
<li data-id="playthrough_9_40">Optionally, kill him to get the <a href="http://darksouls2.wikidot.com/black-hood">Black Hood</a>, and make the rest of the <a href="http://darksouls2.wikidot.com/black-set">Black Set</a> available to buy from <a href="http://darksouls2.wikidot.com/merchant-hag-melentia">Merchant Hag Melentia</a></li>
<li data-id="playthrough_9_41">Unlock the cell beside him with the <a href="http://darksouls2.wikidot.com/bastille-key">Bastille Key</a> to get the <a href="http://darksouls2.wikidot.com/petrified-dragon-bone">Petrified Dragon Bone</a> and <a href="http://darksouls2.wikidot.com/firebomb">Firebombs</a></li>
<li data-id="playthrough_9_42">If you want to reinforce your <a href="http://darksouls2.wikidot.com/pyromancy-flames">Pyromancy Flame</a> or buy some more Pryomancies then you need to go and free <a href="http://darksouls2.wikidot.com/rosabeth-of-melfia">Rosabeth Of Melfia</a>
<ul>
<li data-id="playthrough_9_42_1">Go back to where you met <a href="http://darksouls2.wikidot.com/benhart-of-jugo">Benhart Of Jugo</a>, go inside the building and use a <a href="http://darksouls2.wikidot.com/fragrant-branch-of-yore">Fragrant Branch of Yore</a> to free her</li>
<li data-id="playthrough_9_42_2">Do not use the switch yet because it will trigger an ambush</li>
</ul>
</li>
<li data-id="playthrough_9_43">Talk to her to get a <a href="http://darksouls2.wikidot.com/prism-stone">Prism Stone</a> and buy anything you need from her
<ul>
<li data-id="playthrough_9_43_1"><a href="http://darksouls2.wikidot.com/flame-quartz-ring">Flame Quartz Ring</a> @ 2,000 souls (Increases fire defense)</li>
<li data-id="playthrough_9_43_2"><a href="http://darksouls2.wikidot.com/thunder-quartz-ring">Thunder Quartz Ring</a> @ 2,000 souls (Increases lightning defense)</li>
<li data-id="playthrough_9_43_3"><a href="http://darksouls2.wikidot.com/dark-quartz-ring">Dark Quartz Ring</a> @ 2,000 souls (Increases dark defense)</li>
<li data-id="playthrough_9_43_4"><a href="http://darksouls2.wikidot.com/fireball">Fireball</a> Pyromancy @ 1,200 souls</li>
<li data-id="playthrough_9_43_5"><a href="http://darksouls2.wikidot.com/fire-orb">Fire Orb</a> Pyromancy @ 3,400 souls</li>
<li data-id="playthrough_9_43_6"><a href="http://darksouls2.wikidot.com/combustion">Combustion</a> Pyromancy @ 1,500 souls</li>
<li data-id="playthrough_9_43_7"><a href="http://darksouls2.wikidot.com/poison-mist">Poison Mist</a> Pyromancy @ 3,400 souls</li>
<li data-id="playthrough_9_43_8"><a href="http://darksouls2.wikidot.com/flash-sweat">Flash Sweat</a> Pyromancy @ 2,300 souls</li>
<li data-id="playthrough_9_43_9"><a href="http://darksouls2.wikidot.com/iron-flesh">Iron Flesh</a> Pyromancy @ 3,500 souls</li>
<li data-id="playthrough_9_43_10"><a href="http://darksouls2.wikidot.com/small-blue-burr">Small Blue Burr</a> @ 1,200 souls each</li>
<li data-id="playthrough_9_43_11"><a href="http://darksouls2.wikidot.com/small-yellow-burr">Small Yellow Burr</a> @ 1,200 souls each</li>
<li data-id="playthrough_9_43_12"><a href="http://darksouls2.wikidot.com/small-orange-burr">Small Orange Burr</a> @ 1,200 souls each</li>
<li data-id="playthrough_9_43_13"><a href="http://darksouls2.wikidot.com/fire-seed">Fire Seed</a> @ 8,000 souls each (Max 3)</li>
</ul>
</li>
<li data-id="playthrough_9_44">If you have any <a href="http://darksouls2.wikidot.com/fire-seed">Fire Seeds</a> she can reinforce your <a href="http://darksouls2.wikidot.com/pyromancy-flames">Pyromancy Flame</a></li>
<li data-id="playthrough_9_45">Optionally, kill her to get a <a href="http://darksouls2.wikidot.com/fire-seed">Fire Seed</a></li>
<li data-id="playthrough_9_46">It is advised at this point to get her back to <a href="http://darksouls2.wikidot.com/majula">Majula</a> before using the switch</li>
<li data-id="playthrough_9_47">Exhaust her dialog, give her at least one item of clothing and return to the <a href="http://darksouls2.wikidot.com/majula">Majula</a> bonfire and rest at it. She should now be up on the hill</li>
<li data-id="playthrough_9_48">Travel back to the <a href="http://darksouls2.wikidot.com/earthen-peak">Earthen Peak / Lower Earthen Peak</a> bonfire</li>
</ul>
<a name="Earthen_Peak"></a>
<h3><a href="http://darksouls2.wikidot.com/earthen-peak">Earthen Peak</a> (Levels 65-75) <span id="playthrough_totals_10"></span></h3>
<ul>
<li data-id="playthrough_10_1">Talk to <a href="http://darksouls2.wikidot.com/lucatiel-of-mirrah">Lucatiel of Mirrah</a> to get the <a href="http://darksouls2.wikidot.com/ring-of-steel-protection">Ring of Steel Protection +1</a></li>
<li data-id="playthrough_10_2">Continue onwards and up the stairs, and get the <a href="http://darksouls2.wikidot.com/radiant-lifegem">Radiant Lifegem</a> from the corpse</li>
<li data-id="playthrough_10_3">Go across the walkway, watching for the archers to your right, turn right at the end and follow the path to the chest to get the <a href="http://darksouls2.wikidot.com/pike">Pike</a></li>
<li data-id="playthrough_10_4">Head back the way you came and up the ladder, go through the fog gate, light the bonfire and then light your torch</li>
<li data-id="playthrough_10_5">Burn the windmill to drain poison from some keys areas in this level</li>
<li data-id="playthrough_10_6">Go up the stairs, pick up the <a href="http://darksouls2.wikidot.com/black-firebomb">Black Firebombs</a>, watch for the arrow trap that fires towards you, and get the <a href="http://darksouls2.wikidot.com/manikin-mask">Manikin Mask</a></li>
<li data-id="playthrough_10_7">Go out the door, break the fence and walk along the ledge to the left, and talk to <a href="http://darksouls2.wikidot.com/laddersmith-gilligan">Laddersmith Gilligan</a></li>
<li data-id="playthrough_10_8">You can pay him 2,000 souls to lower a ladder so you can get a <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a> and <a href="http://darksouls2.wikidot.com/twinkling-titanite">Twinkling Titanite</a> from the ledge</li>
<li data-id="playthrough_10_9">Talk to him to learn the Prostration gesture and buy stuff from him
<ul>
<li data-id="playthrough_10_9_1"><a href="http://darksouls2.wikidot.com/reinforced-club">Reinforced Club</a> @ 2,000 souls</li>
<li data-id="playthrough_10_9_2"><a href="http://darksouls2.wikidot.com/whip">Whip</a> @ 1,800 souls</li>
<li data-id="playthrough_10_9_3"><a href="http://darksouls2.wikidot.com/claws-weapon">Claws</a> @ 1,500 souls</li>
<li data-id="playthrough_10_9_4"><a href="http://darksouls2.wikidot.com/wooden-shield">Wooden Shield</a> @ 1,200 souls</li>
<li data-id="playthrough_10_9_5"><a href="http://darksouls2.wikidot.com/thief-mask">Thief Mask</a> @ 1,000 souls</li>
<li data-id="playthrough_10_9_6"><a href="http://darksouls2.wikidot.com/black-leather-armor">Black Leather Armor</a> @ 1,200 souls</li>
<li data-id="playthrough_10_9_7"><a href="http://darksouls2.wikidot.com/black-leather-gloves">Black Leather Gloves</a> @ 1,000 souls</li>
<li data-id="playthrough_10_9_8"><a href="http://darksouls2.wikidot.com/black-leather-boots">Black Leather Boots</a> @ 1,100 souls</li>
<li data-id="playthrough_10_9_9"><a href="http://darksouls2.wikidot.com/lacerating-knife">Lacerating Knife</a> @ 350 souls each</li>
<li data-id="playthrough_10_9_10"><a href="http://darksouls2.wikidot.com/aromatic-ooze">Aromatic Ooze</a> @ 2,000 souls each</li>
<li data-id="playthrough_10_9_11"><a href="http://darksouls2.wikidot.com/bleeding-serum">Bleeding Serum</a> @ 2,000 souls each</li>
<li data-id="playthrough_10_9_12"><a href="http://darksouls2.wikidot.com/ladder-miniature">Ladder Miniature</a> @ 6.399 souls</li>
</ul>
</li>
<li data-id="playthrough_10_10">Optionally, kill him to get the <a href="http://darksouls2.wikidot.com/melu-scimitar">Melu Scimitar</a> and <a href="http://darksouls2.wikidot.com/ladder-miniature">Ladder Miniature</a></li>
<li data-id="playthrough_10_11">Go back along the ledge to get a <a href="http://darksouls2.wikidot.com/simpleton-s-spice">Simpleton's Spice</a></li>
<li data-id="playthrough_10_12">Pull the lever and quickly get the <a href="http://darksouls2.wikidot.com/large-soul-of-a-proud-knight">Large Soul Of A Proud Knight</a> and <a href="http://darksouls2.wikidot.com/divine-blessing">Divine Blessing</a> from underneath and climb up the ladder</li>
<li data-id="playthrough_10_13">(WARNING: In SOTFS do this step after speaking to <a href="http://darksouls2.wikidot.com/mild-mannered-pate">Mild Mannered Pate</a> in the step below, otherwise he will disappear and you won't be able to continue the questline) Pull the lever again and ride the platform up, watch out for the enemies behind the pots, and get the <a href="http://darksouls2.wikidot.com/mirrah-shield">Mirrah Shield</a> from the chest</li>
<li data-id="playthrough_10_14">Drop down, go up the ladder, follow the passageway, head down in to the room on the right and talk to <a href="http://darksouls2.wikidot.com/mild-mannered-pate">Mild Mannered Pate</a></li>
<li data-id="playthrough_10_15">Go back up and continue up the steps to get a <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a> from the trapped chest</li>
<li data-id="playthrough_10_16">Go back down, go straight ahead and try the difficult jump to get the <a href="http://darksouls2.wikidot.com/radiant-lifegem">Radiant Lifegem</a>, and a <a href="http://darksouls2.wikidot.com/soul-of-a-brave-warrior">Soul Of A Brave Warrior</a> and <a href="http://darksouls2.wikidot.com/crimson-water">Crimson Water</a> from the chest</li>
<li data-id="playthrough_10_17">Jump back, drop down on to the platform below, get the <a href="http://darksouls2.wikidot.com/great-heavy-soul-arrow">Great Heavy Soul Arrow</a> Sorcery from the chest, go through the door and talk to <a href="http://darksouls2.wikidot.com/mild-mannered-pate">Pate</a> again</li>
<li data-id="playthrough_10_18">Go back out the door, drop down to the platform on the right, and get the <a href="http://darksouls2.wikidot.com/lightning-spear">Lightning Spear</a> Miracle from the chest</li>
<li data-id="playthrough_10_19">Get a good running jump across to the other walkway and get the <a href="http://darksouls2.wikidot.com/broadsword">Poisonous Broadsword</a> and <a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a> from the corpse</li>
<li data-id="playthrough_10_20">Jump across to the next walkway where you opened the chest earlier, and make your way back to the bonfire</li>
<li data-id="playthrough_10_21">Go up the stairs, passed the arrow trap, and take the ladder up to the next level, turning left at the top</li>
<li data-id="playthrough_10_22">Make your way along, ignoring the fog gate for now, go up the steps and clear the room on the right, and get the <a href="http://darksouls2.wikidot.com/small-smooth-silky-stone">Small Smooth and Silky Stone</a> from the corpse</li>
<li data-id="playthrough_10_23">Don't waste a <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a> but do kill the <a href="http://darksouls2.wikidot.com/mimic">Mimic</a>, and get the <a href="http://darksouls2.wikidot.com/dark-gauntlets">Dark Gauntlets</a> and <a href="http://darksouls2.wikidot.com/work-hook">Work Hook</a></li>
<li data-id="playthrough_10_24">Leave the room and go upstairs and kill the <a href="http://darksouls2.wikidot.com/crescent-sickle-phantom">Crescent Sickle Phantom</a></li>
<li data-id="playthrough_10_25">Go left along the ledge, open the hidden door and get the <a href="http://darksouls2.wikidot.com/petrified-something">Petrified Something</a> from the chest</li>
<li data-id="playthrough_10_26">Go along the ledge in the other direction, open the hidden door and light the hidden bonfire</li>
<li data-id="playthrough_10_27">Head down to the fog gate and pick up the <a href="http://darksouls2.wikidot.com/poison-stone">Poison Stone</a> to the left of the steps</li>
<li data-id="playthrough_10_28">Go through the fog gate and kill the <a href="http://darksouls2.wikidot.com/mytha-the-baneful-queen">Mytha The Baneful Queen</a> boss
<ul>
<li data-id="playthrough_10_28_1">You can summon <a href="http://darksouls2.wikidot.com/jester-thomas">Jester Thomas</a> to the right of the steps</li>
<li data-id="playthrough_10_28_2">Make sure you set fire to the windmill earlier or this fight will be multiple times harder</li>
<li data-id="playthrough_10_28_3">You will get the <a href="http://darksouls2.wikidot.com/mytha-the-baneful-queen-soul">Mytha, the Baneful Queen Soul</a> and 20,000 souls</li>
<li data-id="playthrough_10_28_4">Optionally do some <a href="http://darksouls2.wikidot.com/online-matchmaking">jolly co-op</a> to get some extra souls. You will get 5,000 souls each time</li>
</ul>
</li>
<li data-id="playthrough_10_29">Continue through the new door, go up in the elevator to enter the <a href="http://darksouls2.wikidot.com/iron-keep">Iron Keep</a>, and light the bonfire down the steps to the left</li>
<li data-id="playthrough_10_30">Return to <a href="http://darksouls2.wikidot.com/majula">Majula</a>, level up, upgrade your weapons and armor, and buy any consumables you need</li>
<li data-id="playthrough_10_31">If you still need the ladders to get down the pit go talk to <a href="http://darksouls2.wikidot.com/laddersmith-gilligan">Laddersmith Gilligan</a>
<ul>
<li data-id="playthrough_10_31_1">The small ladder costs 500 souls</li>
<li data-id="playthrough_10_31_2">The medium ladder costs 3,500 souls</li>
<li data-id="playthrough_10_31_3">The long ladder costs 12,000 souls</li>
<li data-id="playthrough_10_31_4">If you buy the long ladder and talk to him he will give you the <a href="http://darksouls2.wikidot.com/melu-scimitar">Melu Scimitar</a></li>
</ul>
</li>
<li data-id="playthrough_10_32">Now that you've opened up <a href="http://darksouls2.wikidot.com/iron-keep">Iron Keep</a> it's worth doing the beginning of the level to get the <a href="http://darksouls2.wikidot.com/dull-ember">Dull Ember</a> to open up <a href="http://darksouls2.wikidot.com/steady-hand-mcduff">Steady Hand McDuff</a></li>
<li data-id="playthrough_10_33">Travel to the <a href="http://darksouls2.wikidot.com/iron-keep">Iron Keep / Threshold Bridge</a> bonfire, go across the bridge and open the door</li>
<li data-id="playthrough_10_34">Inside turn right, go talk to <a href="http://darksouls2.wikidot.com/magerold-of-lanafir">Magerold of Lanafir</a> and buy anything you need from him
<ul>
<li data-id="playthrough_10_34_1"><a href="http://darksouls2.wikidot.com/jester-s-cap">Jester's Cap</a> @ 2,000 souls</li>
<li data-id="playthrough_10_34_2"><a href="http://darksouls2.wikidot.com/jester-s-robes">Jester's Robes</a> @ 3,000 souls</li>
<li data-id="playthrough_10_34_3"><a href="http://darksouls2.wikidot.com/jester-s-gloves">Jester's Gloves</a> @ 2,300 souls</li>
<li data-id="playthrough_10_34_4"><a href="http://darksouls2.wikidot.com/jester-s-tights">Jester's Tights</a> @ 2,600 souls</li>
<li data-id="playthrough_10_34_5"><a href="http://darksouls2.wikidot.com/spiked-bandit-helm">Spiked Bandit Helmet</a> @ 1,000 souls</li>
<li data-id="playthrough_10_34_6"><a href="http://darksouls2.wikidot.com/bandit-armor">Bandit Armor</a> @ 1,600 souls</li>
<li data-id="playthrough_10_34_7"><a href="http://darksouls2.wikidot.com/bandit-gauntlets">Bandit Gauntlets</a> @ 1,200 souls</li>
<li data-id="playthrough_10_34_8"><a href="http://darksouls2.wikidot.com/bandit-boots">Bandit Boots</a> @ 1,300 souls</li>
<li data-id="playthrough_10_34_9"><a href="http://darksouls2.wikidot.com/cursebite-ring">Cursebite Ring</a> @ 9,000 souls (Increases curse resistance)</li>
<li data-id="playthrough_10_34_10"><a href="http://darksouls2.wikidot.com/human-effigy">Human Effigy</a> @ 3,000 souls each (Max 5)</li>
<li data-id="playthrough_10_34_11"><a href="http://darksouls2.wikidot.com/green-blossom">Green Blossom</a> @ 1,300 souls each (Max 10)</li>
<li data-id="playthrough_10_34_12"><a href="http://darksouls2.wikidot.com/black-firebomb">Black Firebomb</a> @ 300 souls each</li>
<li data-id="playthrough_10_34_13"><a href="http://darksouls2.wikidot.com/charcoal-pine-resin">Charcoal Pine Resin</a> @ 1,500 souls</li>
<li data-id="playthrough_10_34_14"><a href="http://darksouls2.wikidot.com/repair-powder">Repair Powder</a> @ 2,500 souls each (Max 1)</li>
<li data-id="playthrough_10_34_15"><a href="http://darksouls2.wikidot.com/rusted-coin">Rusted Coin</a> @ 900 souls each (Max 5)</li>
<li data-id="playthrough_10_34_16"><a href="http://darksouls2.wikidot.com/hello-carving">Hello Carving</a> @ 2,000 souls</li>
<li data-id="playthrough_10_34_17"><a href="http://darksouls2.wikidot.com/thank-you-carving">Thank You Carving</a> @ 2,000 souls</li>
<li data-id="playthrough_10_34_18"><a href="http://darksouls2.wikidot.com/i-m-sorry-carving">I'm Sorry Carving</a> @ 2,000 souls</li>
<li data-id="playthrough_10_34_19"><a href="http://darksouls2.wikidot.com/very-good-carving">Very Good! Carving</a> @ 2,000 souls</li>
<li data-id="playthrough_10_34_20"><a href="http://darksouls2.wikidot.com/fragrant-branch-of-yore">Fragrant Branch of Yore</a> @ 7,500 souls (Max 1)</li>
<li data-id="playthrough_10_34_21"><a href="http://darksouls2.wikidot.com/soul-arrow">Soul Arrow</a> Sorcery @ 1,500 souls</li>
<li data-id="playthrough_10_34_22"><a href="http://darksouls2.wikidot.com/great-soul-arrow">Great Soul Arrow</a> Sorcery @ 3,000 souls</li>
<li data-id="playthrough_10_34_23"><a href="http://darksouls2.wikidot.com/heavy-soul-arrow">Heavy Soul Arrow</a> Sorcery @ 2,000 souls</li>
<li data-id="playthrough_10_34_24"><a href="http://darksouls2.wikidot.com/great-heavy-soul-arrow">Great Heavy Soul Arrow</a> Sorcery @ 4,500 souls</li>
<li data-id="playthrough_10_34_25"><a href="http://darksouls2.wikidot.com/fall-control">Fall Control</a> Sorcery @ 4,800 souls</li>
<li data-id="playthrough_10_34_26"><a href="http://darksouls2.wikidot.com/dark-hail">Dark Hail</a> Hex @ 1,500 souls</li>
<li data-id="playthrough_10_34_27"><a href="http://darksouls2.wikidot.com/darkstorm">Darkstorm</a> Hex @ 4,700 souls</li>
</ul>
</li>
<li data-id="playthrough_10_35">If you have any <a href="http://darksouls2.wikidot.com/skeptic-s-spice">Skeptic's Spice</a> or <a href="http://darksouls2.wikidot.com/simpleton-s-spice">Simpleton's Spice</a> he can also incense your spells to lower their Intelligence or Faith requirements</li>
<li data-id="playthrough_10_36">Later, once you have the <a href="http://darksouls2.wikidot.com/petrified-egg">Petrified Egg</a> from <a href="http://darksouls2.wikidot.com/dragon-shrine">Dragon Shrine</a>, you can talk to him to join the <a href="http://darksouls2.wikidot.com/dragon-remnants">Dragon Remnants</a> covenant</li>
<li data-id="playthrough_10_37">Optionally, kill him to get the <a href="http://darksouls2.wikidot.com/covetous-gold-serpent-ring">Covetous Gold Serpent Ring +1</a></li>
<li data-id="playthrough_10_38">Go upstairs, get the <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a> to the left and open the hidden door to the right</li>
<li data-id="playthrough_10_39">Get the <a href="http://darksouls2.wikidot.com/fire-arrow">Fire Arrows</a> from the corpse, open the next hidden door in front of the ballista and head in to the next area</li>
<li data-id="playthrough_10_40">Use ranged attacks to take out the <a href="http://darksouls2.wikidot.com/alonne-knight">Alonne Knight</a> archer to the right, head along the walkway and drop down to pull the first lever</li>
<li data-id="playthrough_10_41">Go up the steps, head to the right, drop down and get the <a href="http://darksouls2.wikidot.com/soul-of-a-proud-knight">Soul Of A Proud Knight</a> and <a href="http://darksouls2.wikidot.com/repair-powder">Repair Powder</a></li>
<li data-id="playthrough_10_42">Climb up the ladder and get the <a href="http://darksouls2.wikidot.com/life-ring">Life Ring +1</a> and <a href="http://darksouls2.wikidot.com/twinkling-titanite">Twinkling Titanite</a> from the chest, drop down and head back to the bridge</li>
<li data-id="playthrough_10_43">Go across the bridge, jump across to the pillar and get the <a href="http://darksouls2.wikidot.com/large-soul-of-a-nameless-soldier">Large Soul Of A Nameless Soldier</a> and <a href="http://darksouls2.wikidot.com/red-leech-troches">Red Leech Troches</a> from the corpse</li>
<li data-id="playthrough_10_44">Drop down, pull the second lever, drop to the steps and go up to turn off the fire in the furnace</li>
<li data-id="playthrough_10_45">If you have enough fire defense and/or healing you can go to the bottom of the steps and get the <a href="http://darksouls2.wikidot.com/phoenix-parma">Phoenix Parma</a> from the chest</li>
<li data-id="playthrough_10_46">Go in to the furnace and get the <a href="http://darksouls2.wikidot.com/large-titanite-shard">Large Titanite Shards</a> and <a href="http://darksouls2.wikidot.com/petrified-dragon-bone">Petrified Dragon Bone</a> from the corpse</li>
<li data-id="playthrough_10_47">Go through the other door, back across the bridge, jump across the gap and get the <a href="http://darksouls2.wikidot.com/zweihander">Zweihander</a> from the chest</li>
<li data-id="playthrough_10_48">Make the tricky jump down on to the steps and get the <a href="http://darksouls2.wikidot.com/dull-ember">Dull Ember</a>, go up the ladder, don't waste a <a href="http://darksouls2.wikidot.com/pharros-lockstone">Pharros Lockstone</a> and drop down</li>
<li data-id="playthrough_10_49">At this point we've got what we've came for, so make your way back to the bonfire</li>
<li data-id="playthrough_10_50">Travel to the <a href="http://darksouls2.wikidot.com/the-lost-bastille">The Lost Bastille / McDuff's Workshop</a> bonfire and give <a href="http://darksouls2.wikidot.com/steady-hand-mcduff">Steady Hand McDuff</a> the ember</li>
<li data-id="playthrough_10_51">Talk to him and buy anything you need
<ul>
<li data-id="playthrough_10_51_1"><a href="http://darksouls2.wikidot.com/bastard-sword">Bastard Sword</a> @ 3,000 souls</li>
<li data-id="playthrough_10_51_2"><a href="http://darksouls2.wikidot.com/uchigatana">Uchigatana</a> @ 5,000 souls</li>
<li data-id="playthrough_10_51_3"><a href="http://darksouls2.wikidot.com/greataxe">Greataxe</a> @ 6,200 souls</li>
<li data-id="playthrough_10_51_4"><a href="http://darksouls2.wikidot.com/winged-spear">Winged Spear</a> @ 2,500 souls</li>
<li data-id="playthrough_10_51_5"><a href="http://darksouls2.wikidot.com/scythe">Scythe</a> @ 3,500 souls</li>
<li data-id="playthrough_10_51_6"><a href="http://darksouls2.wikidot.com/long-bow">Long Bow</a> @ 2,000 souls</li>
<li data-id="playthrough_10_51_7"><a href="http://darksouls2.wikidot.com/light-crossbow">Light Crossbow</a> @ 1,500 souls</li>
<li data-id="playthrough_10_51_8"><a href="http://darksouls2.wikidot.com/royal-kite-shield">Royal Kite Shield</a> @ 2,400 souls</li>
<li data-id="playthrough_10_51_9"><a href="http://darksouls2.wikidot.com/wood-arrow">Wood Arrow</a> @ 10 souls each</li>
<li data-id="playthrough_10_51_10"><a href="http://darksouls2.wikidot.com/iron-arrow">Iron Arrow</a> @ 30 souls each</li>
<li data-id="playthrough_10_51_11"><a href="http://darksouls2.wikidot.com/iron-greatarrow">Iron Greatarrow</a> @ 120 souls each</li>
<li data-id="playthrough_10_51_12"><a href="http://darksouls2.wikidot.com/wood-bolt">Wood Bolt</a> @ 25 souls each</li>
<li data-id="playthrough_10_51_13"><a href="http://darksouls2.wikidot.com/heavy-bolt">Heavy Bolt</a> @ 50 souls each</li>
<li data-id="playthrough_10_51_14"><a href="http://darksouls2.wikidot.com/repair-powder">Repair Powder</a> @ 2,500 souls (Max 1)</li>
<li data-id="playthrough_10_51_15"><a href="http://darksouls2.wikidot.com/large-titanite-shard">Large Titanite Shard</a> @ 2,500 souls each</li>
</ul>
</li>
<li data-id="playthrough_10_52">He can also infuse your weapons and shields if you have the required stones</li>
<li data-id="playthrough_10_53">If you spend 14,000 souls on his services, not including buying stuff from him, he will give you a <a href="http://darksouls2.wikidot.com/titanite-slab">Titante Slab</a></li>
<li data-id="playthrough_10_54">Optionally, kill him to get a <a href="http://darksouls2.wikidot.com/titanite-slab">Titante Slab</a></li>
<li data-id="playthrough_10_55">Travel to <a href="http://darksouls2.wikidot.com/the-gutter">The Gutter / Upper Gutter</a> bonfire</li>
</ul>
<a name="The_Gutter"></a>
<h3><a href="http://darksouls2.wikidot.com/the-gutter">The Gutter</a> (Levels 65-75) <span id="playthrough_totals_11"></span></h3>
<ul>
<li data-id="playthrough_11_1">There are a few things to note while making your way through this area
<ul>
<li data-id="playthrough_11_1_1">It is much easier if you carry a torch at all times, and light all the sconces for better visibility and to know where you've been</li>
<li data-id="playthrough_11_1_2">Make sure you have some <a href="http://darksouls2.wikidot.com/poison-moss">Poison Moss</a> or lots of <a href="http://darksouls2.wikidot.com/lifegem">Lifegems</a> to deal with the poison in this level</li>
<li data-id="playthrough_11_1_3">Smashing the <a href="http://darksouls2.wikidot.com/poison-shooting-statue">Poison Shooting Statues</a> uses weapon durability, so bring a second weapon or <a href="http://darksouls2.wikidot.com/repair-powder">Repair Powder</a> with you</li>
<li data-id="playthrough_11_1_4">The steps below assume you don't fall through a collapsible floor unless stated</li>
<li data-id="playthrough_11_1_5">There are multiple branching paths in this area, so it's easy to get lost or turned around. Stay calm, there's always a way back</li>
<li data-id="playthrough_11_1_6">Thankfully there is no <a href="https://www.reddit.com/r/darksouls/comments/zleys/one_of_the_hardest_bosses_in_the_game/">Fucking Branch</a>!</li>
</ul>
</li>
<li data-id="playthrough_11_2">Before crossing the first bridge break the pot to the left to get the <a href="http://darksouls2.wikidot.com/dung-pie">Dung Pies</a></li>
<li data-id="playthrough_11_3">Cross the bridge, watching out for the collapsing floor in the middle, cross the next bridge and kill the <a href="http://darksouls2.wikidot.com/molerat">Molerat</a></li>
<li data-id="playthrough_11_4">Cross the next bridge, go up the ramp and drop down to the dirt area below</li>
<li data-id="playthrough_11_5">Drop off the edge farthest from where you came from and towards the wooden structure</li>
<li data-id="playthrough_11_6">Climb up the ladder on the side of the structure, jump across to the ledge and get the <a href="http://darksouls2.wikidot.com/ring-of-soul-protection">Ring of Soul Protection</a> from the chest</li>
<li data-id="playthrough_11_7">Roll from the ledge back in to the wooden structure to get the <a href="http://darksouls2.wikidot.com/twinkling-titanite">Twinkling Titanite</a> and <a href="http://darksouls2.wikidot.com/small-smooth-silky-stone">Small Smooth and Silky Stones</a> from the chest</li>
<li data-id="playthrough_11_8">Go back up the ladder, jump across to the ledge and light the sconce at the other end to get <a href="http://darksouls2.wikidot.com/melinda-the-butcher">Melinda The Butcher</a> to invade you</li>
<li data-id="playthrough_11_9">Drop down off the ledge, drop down again at the other edge, head back towards the bonfire, getting the <a href="http://darksouls2.wikidot.com/lifegem">Lifegem</a> from the pot along the way</li>
<li data-id="playthrough_11_10">Go back across the first bridge, drop down through the collapsing floor, taking care of the ambush when you drop</li>
<li data-id="playthrough_11_11">Take a running rump across to the platform with the torch wielding <a href="http://darksouls2.wikidot.com/undead-citizen">Undead Citizen</a></li>
<li data-id="playthrough_11_12">Later, when you get the <a href="http://darksouls2.wikidot.com/forgotten-key">Forgotten Key</a> in <a href="http://darksouls2.wikidot.com/black-gulch">Black Gulch</a>, come back here and go up the ladder to get <a href="http://darksouls2.wikidot.com/havel-s-set">Havel's Set</a> and <a href="http://darksouls2.wikidot.com/havel-s-greatshield">Havel's Greatshield</a></li>
<li data-id="playthrough_11_13">Go across the bridge, drop down the hole, kill the <a href="http://darksouls2.wikidot.com/molerat">Molerat</a>, and get the <a href="http://darksouls2.wikidot.com/dark-pyromancy-flame">Dark Pyromancy Flame</a> and <a href="http://darksouls2.wikidot.com/rotten-pine-resin">Rotten Pine Resins</a> from the pot</li>
<li data-id="playthrough_11_14">Go up two ladders, get the <a href="http://darksouls2.wikidot.com/large-soul-of-a-nameless-soldier">Large Soul Of A Nameless Soldier</a> from the pot and drop down back to the start of the first rope bridge</li>
<li data-id="playthrough_11_15">Start across the bridge but watch for the exploding <a href="http://darksouls2.wikidot.com/undead-citizen">Undead Citizen</a> in front of you and the <a href="http://darksouls2.wikidot.com/molerat">Molerat</a> that might drop down behind you</li>
<li data-id="playthrough_11_16">On the other side of the bridge, kill the <a href="http://darksouls2.wikidot.com/molerat">Molerat</a>, go up the ladder and get the <a href="http://darksouls2.wikidot.com/black-firebomb">Black Firebombs</a> from the chest</li>
<li data-id="playthrough_11_17">Go down the ladder and drop down twice on the same structure and get the <a href="http://darksouls2.wikidot.com/titanite-chunk">Titanite Chunk</a> from the pot</li>
<li data-id="playthrough_11_18">Drop down in to the next structure and get the <a href="http://darksouls2.wikidot.com/tattered-cloth-set">Tattered Set</a> from the pot</li>
<li data-id="playthrough_11_19">Jump across to the dirt ledge and get the <a href="http://darksouls2.wikidot.com/ring-of-the-evil-eye">Ring of the Evil Eye</a> from the chest, being ready for the ambush</li>