diff options
author | Jared Adams <jaxad0127@gmail.com> | 2011-06-01 15:27:26 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2011-06-01 15:37:09 -0600 |
commit | 3d0823d5c9b56be5c3892c0a4e717f961cb93e69 (patch) | |
tree | 6545b29dbd08d81b57f9cb1f9f83df57ead489c2 /npc/009-2_Hurnscald/waitress.txt | |
parent | c6e448824925eec18edffffc7342399b73b6feb4 (diff) | |
download | serverdata-3d0823d5c9b56be5c3892c0a4e717f961cb93e69.tar.gz serverdata-3d0823d5c9b56be5c3892c0a4e717f961cb93e69.tar.bz2 serverdata-3d0823d5c9b56be5c3892c0a4e717f961cb93e69.tar.xz serverdata-3d0823d5c9b56be5c3892c0a4e717f961cb93e69.zip |
Change the Converter to use different folder names
And update everything to use it.
Diffstat (limited to 'npc/009-2_Hurnscald/waitress.txt')
-rw-r--r-- | npc/009-2_Hurnscald/waitress.txt | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/npc/009-2_Hurnscald/waitress.txt b/npc/009-2_Hurnscald/waitress.txt deleted file mode 100644 index 265cd234..00000000 --- a/npc/009-2_Hurnscald/waitress.txt +++ /dev/null @@ -1,83 +0,0 @@ -// Waitress - -009-2.gat,60,52,0 script Melinda 140,{ - - 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; - -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; - -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; - -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; - -L_No: - 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; - -L_TooMany: - mes "[Melinda]"; - mes "\"You don't have room for a beer!\""; - close; -} |