diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-1/eventmaster.txt | 1 | ||||
-rw-r--r-- | npc/007-1/caelum.txt | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/npc/001-1/eventmaster.txt b/npc/001-1/eventmaster.txt index 043829cac..9a08c05c3 100644 --- a/npc/001-1/eventmaster.txt +++ b/npc/001-1/eventmaster.txt @@ -311,6 +311,7 @@ L_Norm: goto L_Norm; L_Sli: + select "Abort", // 1 "Azul Slime", // 2 "Blue Slime", // 3 diff --git a/npc/007-1/caelum.txt b/npc/007-1/caelum.txt index 021ed632c..3773ec332 100644 --- a/npc/007-1/caelum.txt +++ b/npc/007-1/caelum.txt @@ -57,6 +57,7 @@ L_List: mes l("@@/1 @@", countitem(CottonCloth), getitemlink(CottonCloth)); mes l("@@/2 @@", countitem(BlackScorpionStinger), getitemlink(BlackScorpionStinger)); mes l("@@/8 @@", countitem(RedScorpionStinger), getitemlink(RedScorpionStinger)); + mes l("@@/10 @@", countitem(BatWing), getitemlink(BatWing)); mes l("@@/10 @@", countitem(CactusDrink), getitemlink(CactusDrink)); mes l("@@/20 @@", countitem(MaggotSlime), getitemlink(MaggotSlime)); mes l("@@/5 @@, just because I'm hungry as a bear.", countitem(ScorpionClaw), getitemlink(ScorpionClaw)); @@ -76,6 +77,7 @@ L_Give: countitem(CottonCloth) < 1 || countitem(BlackScorpionStinger) < 2 || countitem(RedScorpionStinger) < 8 || + countitem(BatWing) < 10 || countitem(CactusDrink) < 10 || countitem(MaggotSlime) < 20 || countitem(ScorpionClaw) < 5 @@ -84,8 +86,9 @@ L_Give: inventoryplace MinerGloves, 1; delitem(CottonCloth, 1); - delitem(BlackScorpionStinger, ); + delitem(BlackScorpionStinger, 2); delitem(RedScorpionStinger, 8); + delitem(BatWing, 10); delitem(CactusDrink, 10); delitem(MaggotSlime, 20); delitem(ScorpionClaw, 5); |