diff options
-rw-r--r-- | npc/003-1/mahoud.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/npc/003-1/mahoud.txt b/npc/003-1/mahoud.txt index 4f684bb49..353f02232 100644 --- a/npc/003-1/mahoud.txt +++ b/npc/003-1/mahoud.txt @@ -9,6 +9,7 @@ .@COST_PER_BOTTLE = 50; + mesn; mes l("I can fill your bottle with water for only @@ gp the bottle.", .@COST_PER_BOTTLE); mes l("After all, I am the Well Master!"); input .@count; @@ -31,11 +32,15 @@ close; L_NotEnoughBottles: + mes ""; + mesn; mes l("You don't have that many empty bottles!"); close; L_NotEnoughMoney: - mes l("You don't have enough gp! You need @@ gp.", .@Cost); + mes ""; + mesn; + mes l("You don't have enough gold! You need @@ gp.", .@Cost); close; OnInit: |