summaryrefslogtreecommitdiff
path: root/npc/new_38-1-woodland-mine/receptionist.txt
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2008-11-02 22:45:17 +0000
committerJared Adams <jaxad0127@gmail.com>2008-11-02 22:45:17 +0000
commitec9be0a2967b38955d26e337b05bc3a042ac4544 (patch)
treee1ef509c78c8a3fe777b4adb0f4c650364fa55cb /npc/new_38-1-woodland-mine/receptionist.txt
parent2fd04617279829d54349b325bacb4c72addebfe4 (diff)
downloadserverdata-ec9be0a2967b38955d26e337b05bc3a042ac4544.tar.gz
serverdata-ec9be0a2967b38955d26e337b05bc3a042ac4544.tar.bz2
serverdata-ec9be0a2967b38955d26e337b05bc3a042ac4544.tar.xz
serverdata-ec9be0a2967b38955d26e337b05bc3a042ac4544.zip
Branch data for eAthena
Diffstat (limited to 'npc/new_38-1-woodland-mine/receptionist.txt')
-rw-r--r--npc/new_38-1-woodland-mine/receptionist.txt65
1 files changed, 65 insertions, 0 deletions
diff --git a/npc/new_38-1-woodland-mine/receptionist.txt b/npc/new_38-1-woodland-mine/receptionist.txt
new file mode 100644
index 00000000..822d09a3
--- /dev/null
+++ b/npc/new_38-1-woodland-mine/receptionist.txt
@@ -0,0 +1,65 @@
+//
+
+new_38-1.gat,50,24,0 script Receptionist 108,{
+ mes "[Receptionist]";
+ mes "\"Welcome to the mining camp!";
+ mes "Do you need anything?\"";
+ next;
+
+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.", -;
+ 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,
+ "Thank you, no.", -;
+ 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 "\"I'm sorry, but the mine is very active. Entrance is restricted to miners only.\"";
+ 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?", -,
+ "Not my problem", L_Question_End;
+
+ 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;
+}