diff options
Diffstat (limited to 'npc/002-4_Desert_mines/chest.txt')
-rw-r--r-- | npc/002-4_Desert_mines/chest.txt | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/npc/002-4_Desert_mines/chest.txt b/npc/002-4_Desert_mines/chest.txt index 158b79fc..8233611d 100644 --- a/npc/002-4_Desert_mines/chest.txt +++ b/npc/002-4_Desert_mines/chest.txt @@ -4,37 +4,33 @@ if (TMW_Quest >= 38) goto L_Finished; - mes "[Chest]"; - mes "Would you try to open it?"; + mes "There is a chest here."; + mes "Do you want to try to open it?"; next; menu - "Yes", L_Yes, - "No", -; + "Yes.", L_Yes, + "No.", -; close; L_Yes: if(countitem("TreasureKey") < 3) goto L_Not_Enough; getinventorylist; if (@inventorylist_count == 100 && countitem("TreasureKey") > 3) goto L_TooMany; - mes "[Chest]"; - mes "You opened it and found a short bow!"; + mes "You opened the chest and found a short bow!"; delitem "TreasureKey", 3; getitem "ShortBow", 1; set TMW_Quest, 38; close; L_Not_Enough: - mes "[Chest]"; - mes "It seems that this is not the right key..."; + mes "It seems that you do not the right key for this chest yet..."; close; L_Finished: - mes "[Chest]"; - mes "You already opened this chest."; + mes "You have already opened this chest."; close; L_TooMany: - mes "[Chest]"; - mes "You don't have room for what ever is inside. Maybe you should try again later."; + mes "You do not have enough room to loot this chest. Maybe you should try again later."; close; } |