diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/007-1/caelum.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/npc/007-1/caelum.txt b/npc/007-1/caelum.txt index 993988cce..6aaa2aa0a 100644 --- a/npc/007-1/caelum.txt +++ b/npc/007-1/caelum.txt @@ -57,6 +57,7 @@ L_List: mes ""; mesn; mes l("Here's what I need:"); + mes l("@@/1 @@", countitem(Lifestone), getitemlink(Lifestone)); mes l("@@/1 @@", countitem(CottonCloth), getitemlink(CottonCloth)); mes l("@@/2 @@", countitem(BlackScorpionStinger), getitemlink(BlackScorpionStinger)); mes l("@@/5 @@", countitem(ScorpionClaw), getitemlink(ScorpionClaw)); @@ -77,6 +78,7 @@ L_Check: L_Give: if ( + countitem(Lifestone) < 1 || countitem(CottonCloth) < 1 || countitem(BlackScorpionStinger) < 2 || countitem(BugLeg) < 8 || @@ -88,6 +90,7 @@ L_Give: inventoryplace MinerGloves, 1; + delitem(Lifestone, 1); delitem(CottonCloth, 1); delitem(BlackScorpionStinger, 2); delitem(BugLeg, 8); |