diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-18 21:22:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-18 21:22:36 -0300 |
commit | 29b702bbb4c47cd14fab877e7966458123831dd2 (patch) | |
tree | 6d456a1bb81eb201022f4a5fddf7e29f27b6bc23 /npc/014-2/mouboo.txt | |
parent | 1dbd7a6a0d494b35f193a65abb8a4c65be6e1be9 (diff) | |
download | serverdata-29b702bbb4c47cd14fab877e7966458123831dd2.tar.gz serverdata-29b702bbb4c47cd14fab877e7966458123831dd2.tar.bz2 serverdata-29b702bbb4c47cd14fab877e7966458123831dd2.tar.xz serverdata-29b702bbb4c47cd14fab877e7966458123831dd2.zip |
Don't allow Sewer Water on Injuried Mouboo with a reaction
Diffstat (limited to 'npc/014-2/mouboo.txt')
-rw-r--r-- | npc/014-2/mouboo.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/014-2/mouboo.txt b/npc/014-2/mouboo.txt index 345e90f77..114504667 100644 --- a/npc/014-2/mouboo.txt +++ b/npc/014-2/mouboo.txt @@ -72,13 +72,19 @@ L_Begin: mesc l("You give up."); close; } + + // Bad healing items if (.@id == MoubooSteak) { mesc l("Uhm, this seems like a bad idea."); close; } else if (.@id == DeathPenalty) { mesc l("Uhm, that's an... @@. Do you... want to grow a tree on the mouboo or something? Can't you think on something else?", getitemlink(DeathPenalty)); close; + } else if (.@id == BottleOfSewerWater) { + mesc l("Uhm... I thought you were trying to heal the mouboo. Why are you giving it poisonous stuff?!"); + close; } + mesc l("Really give your @@ to the Mouboo?", getitemlink(.@id)), 1; mesc l("The item will be lost forever."); next; |