summaryrefslogtreecommitdiff
path: root/world/map/npc/011-3
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2011-06-18 21:58:47 -0700
committerBen Longbons <b.r.longbons@gmail.com>2011-06-19 14:19:55 -0700
commitbae4b92e560c2694eaaf0e8b4d9e95e56204471b (patch)
tree4acc120f6a94cfbf9694bf344658493de5aaa67b /world/map/npc/011-3
parent319f80526f8585ecadaec986e37c9bd326f4d363 (diff)
downloadserverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.gz
serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.bz2
serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.xz
serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.zip
Move to a subdirectory
Diffstat (limited to 'world/map/npc/011-3')
-rw-r--r--world/map/npc/011-3/_import.txt7
-rw-r--r--world/map/npc/011-3/_mobs.txt8
-rw-r--r--world/map/npc/011-3/_warps.txt4
-rw-r--r--world/map/npc/011-3/hermit.txt62
-rw-r--r--world/map/npc/011-3/monsters.txt21
5 files changed, 102 insertions, 0 deletions
diff --git a/world/map/npc/011-3/_import.txt b/world/map/npc/011-3/_import.txt
new file mode 100644
index 00000000..799e5dd0
--- /dev/null
+++ b/world/map/npc/011-3/_import.txt
@@ -0,0 +1,7 @@
+// Map 011-3: Hermit's cave
+// This file is generated automatically. All manually changes will be removed when running the Converter.
+map: 011-3.gat
+npc: npc/011-3/_mobs.txt
+npc: npc/011-3/_warps.txt
+npc: npc/011-3/hermit.txt
+npc: npc/011-3/monsters.txt
diff --git a/world/map/npc/011-3/_mobs.txt b/world/map/npc/011-3/_mobs.txt
new file mode 100644
index 00000000..2fc7d85b
--- /dev/null
+++ b/world/map/npc/011-3/_mobs.txt
@@ -0,0 +1,8 @@
+// This file is generated automatically. All manually changes will be removed when running the Converter.
+// Hermit's cave mobs
+
+
+
+011-3.gat,0,0,0 script Mob011-3 -1,{
+ end;
+}
diff --git a/world/map/npc/011-3/_warps.txt b/world/map/npc/011-3/_warps.txt
new file mode 100644
index 00000000..0c7ae9de
--- /dev/null
+++ b/world/map/npc/011-3/_warps.txt
@@ -0,0 +1,4 @@
+// This file is generated automatically. All manually changes will be removed when running the Converter.
+// Hermit's cave warps
+
+011-3.gat,31,21 warp ToLakeCave -1,-1,011-4.gat,72,11
diff --git a/world/map/npc/011-3/hermit.txt b/world/map/npc/011-3/hermit.txt
new file mode 100644
index 00000000..4b582cc4
--- /dev/null
+++ b/world/map/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;
+}
diff --git a/world/map/npc/011-3/monsters.txt b/world/map/npc/011-3/monsters.txt
new file mode 100644
index 00000000..37da9f40
--- /dev/null
+++ b/world/map/npc/011-3/monsters.txt
@@ -0,0 +1,21 @@
+// Map: 011-3
+// This is the Hermit's Cave -- level 1.
+//
+
+011-3.gat,0,0,0,0 monster Bat 1017,10,0,0,Mob4::OnBat
+
+011-3.gat,0,0,0,0 monster SilkWorm 1035,3,60000,30000,Mob4::OnSilkWorm
+
+011-3.gat,0,0,0 script Mob4 -1,{
+OnBat:
+ set @mobID, 1017;
+ callfunc "MobPoints";
+ break;
+
+OnSilkWorm:
+ set @mobID, 1035;
+ callfunc "MobPoints";
+ break;
+
+ end;
+}