summaryrefslogtreecommitdiff
path: root/npc/011-3/hermit.txt
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2011-06-01 15:27:26 -0600
committerJared Adams <jaxad0127@gmail.com>2011-06-01 15:37:09 -0600
commit3d0823d5c9b56be5c3892c0a4e717f961cb93e69 (patch)
tree6545b29dbd08d81b57f9cb1f9f83df57ead489c2 /npc/011-3/hermit.txt
parentc6e448824925eec18edffffc7342399b73b6feb4 (diff)
downloadserverdata-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/011-3/hermit.txt')
-rw-r--r--npc/011-3/hermit.txt62
1 files changed, 62 insertions, 0 deletions
diff --git a/npc/011-3/hermit.txt b/npc/011-3/hermit.txt
new file mode 100644
index 00000000..4b582cc4
--- /dev/null
+++ b/npc/011-3/hermit.txt
@@ -0,0 +1,62 @@
+//
+
+011-3.gat,30,30,0 script Arkim 116,{
+ mes "[Arkim the Hermit]";
+ mes "\"Do you want to go back outside?\"";
+ menu
+ "Yes, please!", L_Sure,
+ "Not yet.", -,
+ "Actually... Why do you live here?", L_Interested;
+ close;
+
+L_Sure:
+ warp "011-1.gat", 60, 95;
+ close;
+
+L_Interested:
+ mes "[Arkim the Hermit]";
+ mes "\"Oh my, never really thought about it!\"";
+ next;
+ mes "[Arkim the Hermit]";
+ mes "\"I guess mostly I enjoy experimenting with the bats here.\"";
+
+ menu
+ "I see...", -,
+ "What type of experimenting?", L_Experiment;
+ close;
+
+L_Experiment:
+ mes "[Arkim the Hermit]";
+ mes "\"Never really thought about it either...\"";
+
+ next;
+
+ mes "You watch as the hermit's old, lazy eyes open wide, and the old man comes alive with energy.";
+
+ next;
+
+ mes "[Arkim the Hermit]";
+ mes "\"I GUESS I REALLY LIKE CUTTING THEM UP TO SEE HOW THEY WORK!! HAHAHA!\"";
+
+ menu
+ "YOU'RE CRAZY!", -,
+ "Right... me too! Can I help?", L_Quest;
+ close;
+
+L_Quest:
+ set @dq_level, 20;
+ set @dq_cost, 4;
+ set @dq_count, 3;
+ set @dq_name$, "BatWing";
+ set @dq_friendly_name$, "bat wings";
+ set @dq_money, 600;
+ set @dq_exp, 100;
+
+ callfunc "DailyQuest";
+
+ next;
+
+ mes "[Arkim the Hermit]";
+ mes "\"And remember: never lend your toothbrush to a slime!\"";
+ close;
+}