diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-02 11:11:24 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-02 11:11:24 -0300 |
commit | 8362a7a29bcd038cc4e929245163536b9d6372d2 (patch) | |
tree | a5f61b660feec72deb3d6aab82e773f9773728a0 | |
parent | f02709508e6393f9049cb50c8b4a353d2b0b236d (diff) | |
download | serverdata-8362a7a29bcd038cc4e929245163536b9d6372d2.tar.gz serverdata-8362a7a29bcd038cc4e929245163536b9d6372d2.tar.bz2 serverdata-8362a7a29bcd038cc4e929245163536b9d6372d2.tar.xz serverdata-8362a7a29bcd038cc4e929245163536b9d6372d2.zip |
014-2 Injuried Mouboo: Accept Coffee and give an ingame tip.
-rw-r--r-- | npc/014-2/mouboo.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/npc/014-2/mouboo.txt b/npc/014-2/mouboo.txt index 99534db10..91b4a0b31 100644 --- a/npc/014-2/mouboo.txt +++ b/npc/014-2/mouboo.txt @@ -175,6 +175,24 @@ L_Healed: mesn l("Injuried Mouboo"); mesq l("Zzzzzz...."); mesc l("The mouboo is sleeping soundly. The curse is still there."); + if (countitem(Coffee)) { + next; + mesc l("Give a @@ to the Mouboo?", getitemlink(Coffee)); + next; + if (askyesno() == ASK_YES) { + mesn l("Injuried Mouboo"); + mesc l("*scream*"); + mes ""; + mesc l("The Mouboo doesn't wants to drink the Coffee. Try to force him to drink anyway?"); + next; + if (askyesno() == ASK_YES) { + delitem Coffee, 1; + mesc l("There's no change in the Mouboo condition."); + next; + mesc l("Maybe Hurnscald alchemist, Wyara, could explain why."); + } + } + } close; // Final Results |