diff options
Diffstat (limited to 'npc/014-2')
-rw-r--r-- | npc/014-2/mouboo.txt | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/npc/014-2/mouboo.txt b/npc/014-2/mouboo.txt index 746a1bf94..52c2d45c7 100644 --- a/npc/014-2/mouboo.txt +++ b/npc/014-2/mouboo.txt @@ -76,7 +76,7 @@ L_Begin: 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?", 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; } mesc l("Really give your @@ to the Mouboo?", getitemlink(.@id)), 1; @@ -100,6 +100,20 @@ L_Begin: getexp 800, 0; close; } + + // Progress Report + if (.@q2 > 900) { + mesc l("The mouboo seems to want to thank you, but is still too weak. Let's finish this healing."); + } + else if (.@q2 > 700) { + mesc l("The mouboo looks a bit more healthy. A little more should do."); + } + else if (.@q2 > 400) { + mesc l("The mouboo looks a bit less sickly. But this is not enough."); + } + if (.@q2 > 100) { + mesc l("The mouboo still looks terrible, but you can see a small difference."); + } } break; case 3: |