diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-17 12:44:29 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-17 12:44:29 -0300 |
commit | 6d13de220eb233a0fcf52e97583afa1423faab00 (patch) | |
tree | 2077d66872c06d7f12f1b609a393dea861e13e7f /npc | |
parent | 6400a3c65a9e6b3d9287b700004c38fe1b8a3c7b (diff) | |
download | serverdata-6d13de220eb233a0fcf52e97583afa1423faab00.tar.gz serverdata-6d13de220eb233a0fcf52e97583afa1423faab00.tar.bz2 serverdata-6d13de220eb233a0fcf52e97583afa1423faab00.tar.xz serverdata-6d13de220eb233a0fcf52e97583afa1423faab00.zip |
Saulc, could you do a smaller mess next time?
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); |