summaryrefslogtreecommitdiff
path: root/world/map/npc/009-2/waitress.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-07-07 20:34:27 -0300
committerJesusaves <cpntb1@ymail.com>2021-07-07 20:34:27 -0300
commit9877fd4ad81120af8e63e96d5d429092014dc017 (patch)
treeec045a0535109a2e0d82e0e8155eb01ed9776452 /world/map/npc/009-2/waitress.txt
parentaedbeb335a5ec5f55d22eace389076a18241ac9a (diff)
downloadserverdata-9877fd4ad81120af8e63e96d5d429092014dc017.tar.gz
serverdata-9877fd4ad81120af8e63e96d5d429092014dc017.tar.bz2
serverdata-9877fd4ad81120af8e63e96d5d429092014dc017.tar.xz
serverdata-9877fd4ad81120af8e63e96d5d429092014dc017.zip
Remove all Legacy files
Diffstat (limited to 'world/map/npc/009-2/waitress.txt')
-rw-r--r--world/map/npc/009-2/waitress.txt73
1 files changed, 0 insertions, 73 deletions
diff --git a/world/map/npc/009-2/waitress.txt b/world/map/npc/009-2/waitress.txt
deleted file mode 100644
index 1bacd738..00000000
--- a/world/map/npc/009-2/waitress.txt
+++ /dev/null
@@ -1,73 +0,0 @@
-// Waitress
-
-009-2,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;
-
-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?", L_Next,
- "Nah, I don't feel like chatting.", L_No;
-
-L_Next:
- 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;
-}