summaryrefslogtreecommitdiff
path: root/world/map/npc/018-2/receptionist.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/018-2/receptionist.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/018-2/receptionist.txt')
-rw-r--r--world/map/npc/018-2/receptionist.txt68
1 files changed, 0 insertions, 68 deletions
diff --git a/world/map/npc/018-2/receptionist.txt b/world/map/npc/018-2/receptionist.txt
deleted file mode 100644
index efac07d9..00000000
--- a/world/map/npc/018-2/receptionist.txt
+++ /dev/null
@@ -1,68 +0,0 @@
-//
-
-018-2,50,24,0|script|Receptionist#mine|108
-{
- set @inspector, ((QUEST_Hurnscald & NIBBLE_3_MASK) >> NIBBLE_3_SHIFT);
-
- mes "[Receptionist]";
- mes "\"Welcome to the mining camp!";
- mes "Do you need anything?\"";
- next;
- goto L_Menu;
-
-L_Menu:
- if (@inspector == 10)
- menu
- "Why was a mine setup here?", L_Mine,
- "Can I go into the mine?", L_Enter,
- "Did the company build this building?", L_Building,
- "Did you hear a commotion here the other night?", L_NohMask,
- "Thank you, no.", L_Close;
- menu
- "Why was a mine setup here?", L_Mine,
- "Can I go into the mine?", L_Enter,
- "Did the company build this building?", L_Building,
- "Thank you, no.", L_Close;
-
-L_Mine:
- mes "[Receptionist]";
- mes "\"Minerals have been easy to find in this area historically. The mine entrance we're using collapsed from the mountain side when the volcano errupted. Plenty of minerals were exposed then.\"";
- next;
- goto L_Question_End;
-
-L_Enter:
- mes "[Receptionist]";
- mes "\"If you think you can handle all the monsters that have appeared there.\"";
- next;
- goto L_Question_End;
-
-L_Building:
- mes "[Receptionist]";
- mes "\"No, the company bought this building. It's been abandoned for a while. The villagers think it's haunted, but we haven't seen anything, except for the basement. None of us have been able to stay there for very long.\"";
- next;
- menu
- "Why not?", L_Next,
- "Not my problem", L_Question_End;
-
-L_Next:
- mes "[Receptionist]";
- mes "\"I haven't been down there myself, and the ones who have haven't been able to describe why at all.\"";
- next;
- goto L_Question_End;
-
-L_NohMask:
- mes "[Receptionist]";
- mes "\"I stay in town, and so couldn't have heard anything over here. One of the miners might be able to help you.\"";
- next;
- goto L_Question_End;
-
-L_Question_End:
- mes "[Receptionist]";
- mes "\"Do you need anything else?\"";
- next;
- goto L_Menu;
-
-L_Close:
- set @inspector, 0;
- close;
-}