diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-23 16:22:40 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-23 16:22:40 -0300 |
commit | 33043812b12103a447b3a2fc56bc4647f8e8f6f9 (patch) | |
tree | df17a2e9f761f7a5ad8d77e8ca6bf71d0e947225 | |
parent | 0b6a32dac1134e8af622fd8f339a86eaf0c6887a (diff) | |
download | serverdata-33043812b12103a447b3a2fc56bc4647f8e8f6f9.tar.gz serverdata-33043812b12103a447b3a2fc56bc4647f8e8f6f9.tar.bz2 serverdata-33043812b12103a447b3a2fc56bc4647f8e8f6f9.tar.xz serverdata-33043812b12103a447b3a2fc56bc4647f8e8f6f9.zip |
Caelum now requires a Lifestone too
-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); |