diff options
author | The Kandiman <kandiman@kandiman.(none)> | 2011-09-05 00:59:06 -0400 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2011-09-06 11:15:32 +0200 |
commit | a023cf16f0ec841620c975862cb5a96de99c577f (patch) | |
tree | 130b6e00993dbe275444743102031a2117c2f423 /world/map/npc/009-2/waitress.txt | |
parent | 7ee49eb4acf3a6c047e18f36695c407740cfc523 (diff) | |
download | serverdata-a023cf16f0ec841620c975862cb5a96de99c577f.tar.gz serverdata-a023cf16f0ec841620c975862cb5a96de99c577f.tar.bz2 serverdata-a023cf16f0ec841620c975862cb5a96de99c577f.tar.xz serverdata-a023cf16f0ec841620c975862cb5a96de99c577f.zip |
Tab conversion project. Maps 007-1 to 010-2 complete.
Diffstat (limited to 'world/map/npc/009-2/waitress.txt')
-rw-r--r-- | world/map/npc/009-2/waitress.txt | 121 |
1 files changed, 55 insertions, 66 deletions
diff --git a/world/map/npc/009-2/waitress.txt b/world/map/npc/009-2/waitress.txt index 265cd234..550cd6c4 100644 --- a/world/map/npc/009-2/waitress.txt +++ b/world/map/npc/009-2/waitress.txt @@ -1,83 +1,72 @@ // Waitress -009-2.gat,60,52,0 script Melinda 140,{ +009-2.gat,60,52,0|script|Melinda|140,{ - mes "[Melinda]"; - mes "\"Hi, sweetie! Want a fresh beer for 170 GP?\""; - next; + mes "[Melinda]"; + mes "\"Hi, sweetie! Want a fresh beer for 170 GP?\""; + next; - menu - "\"Sure! [don't tip]\"", L_NoTip, - "Sure! [tip 5 GP]", L_5Tip, - "Sure! [tip 10 GP]", L_10Tip, - "Nah, maybe later.", L_No; - close; + menu + "\"Sure! [don't tip]\"", L_NoTip, + "Sure! [tip 5 GP]", L_5Tip, + "Sure! [tip 10 GP]", L_10Tip, + "Nah, maybe later.", L_No; + close; L_NoTip: - if (zeny < 170) - goto L_NoMoney; - - getinventorylist; - if (@inventorylist_count == 100 && countitem("Beer") == 0) - goto L_TooMany; - - set zeny, zeny - 170; - getitem "Beer", 1; - - mes "[Melinda]"; - mes "Pff... nickel nurser!"; - close; + if (zeny < 170) + goto L_NoMoney; + getinventorylist; + if (@inventorylist_count == 100 && countitem("Beer") == 0) + goto L_TooMany; + set zeny, zeny - 170; + getitem "Beer", 1; + mes "[Melinda]"; + mes "Pff... nickel nurser!"; + close; L_5Tip: - if (zeny < 175) - goto L_NoMoney; - - getinventorylist; - if (@inventorylist_count == 100 && countitem("Beer") == 0) - goto L_TooMany; - - set zeny, zeny - 175; - getitem "Beer", 1; - - mes "[Melinda]"; - mes "\"Here you go, sweetheart!\""; - close; + if (zeny < 175) + goto L_NoMoney; + getinventorylist; + if (@inventorylist_count == 100 && countitem("Beer") == 0) + goto L_TooMany; + set zeny, zeny - 175; + getitem "Beer", 1; + mes "[Melinda]"; + mes "\"Here you go, sweetheart!\""; + close; L_10Tip: - if (zeny < 180) - goto L_NoMoney; - - getinventorylist; - if (@inventorylist_count == 100 && countitem("Beer") == 0) - goto L_TooMany; - - set zeny, zeny - 180; - getitem "Beer", 1; - - mes "[Melinda]"; - mes "\"Thank you, sweetie! Want to hear a secret?\""; - next; - - menu - "What is it, darling?", -, - "Nah, I don't feel like chatting.", L_No; - - mes "[Melinda]"; - mes "\"The master bowyer in this village used to construct exceptional bows. When you want one you should go and ask him.\""; - close; + if (zeny < 180) + goto L_NoMoney; + getinventorylist; + if (@inventorylist_count == 100 && countitem("Beer") == 0) + goto L_TooMany; + set zeny, zeny - 180; + getitem "Beer", 1; + mes "[Melinda]"; + mes "\"Thank you, sweetie! Want to hear a secret?\""; + next; + menu + "What is it, darling?", -, + "Nah, I don't feel like chatting.", L_No; + mes "[Melinda]"; + mes "\"The master bowyer in this village used to construct exceptional bows. When you want one you should go and ask him.\""; + close; L_No: - mes "[Melinda]"; - mes "\"Just call me when you've changed your mind.\""; - close; + mes "[Melinda]"; + mes "\"Just call me when you've changed your mind.\""; + close; L_NoMoney: - mes "[Melinda]"; - mes "\"You look broke. Don't think that you can dine and dash here!\""; - close; + mes "[Melinda]"; + mes "\"You look broke. Don't think that you can dine and dash here!\""; + close; L_TooMany: - mes "[Melinda]"; - mes "\"You don't have room for a beer!\""; - close; + mes "[Melinda]"; + mes "\"You don't have room for a beer!\""; + close; } |