summaryrefslogtreecommitdiff
path: root/npc/024-2_Tulimshar_Magic_School
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-03-07 11:47:45 -0700
committerJared Adams <jaxad0127@gmail.com>2009-03-07 11:47:45 -0700
commitccb6634a79c52021c4a918f7a63a3b9c2b02fafa (patch)
tree9354acc02fb583ce4ce55d7baafaf40945f9d0e3 /npc/024-2_Tulimshar_Magic_School
parentf0aeb577ac2d611b543281374d62cf10b50774f3 (diff)
downloadserverdata-ccb6634a79c52021c4a918f7a63a3b9c2b02fafa.tar.gz
serverdata-ccb6634a79c52021c4a918f7a63a3b9c2b02fafa.tar.bz2
serverdata-ccb6634a79c52021c4a918f7a63a3b9c2b02fafa.tar.xz
serverdata-ccb6634a79c52021c4a918f7a63a3b9c2b02fafa.zip
Add some new maps
Includes some indoors for Central Tulimshar, Tulimshar Canyon, and an indoor for Tulimshar Canyon.
Diffstat (limited to 'npc/024-2_Tulimshar_Magic_School')
-rw-r--r--npc/024-2_Tulimshar_Magic_School/_import.txt5
-rw-r--r--npc/024-2_Tulimshar_Magic_School/_mobs.txt7
-rw-r--r--npc/024-2_Tulimshar_Magic_School/_warps.txt4
-rw-r--r--npc/024-2_Tulimshar_Magic_School/barrier.txt12
-rw-r--r--npc/024-2_Tulimshar_Magic_School/tyer.txt23
5 files changed, 51 insertions, 0 deletions
diff --git a/npc/024-2_Tulimshar_Magic_School/_import.txt b/npc/024-2_Tulimshar_Magic_School/_import.txt
new file mode 100644
index 00000000..be56cb29
--- /dev/null
+++ b/npc/024-2_Tulimshar_Magic_School/_import.txt
@@ -0,0 +1,5 @@
+map: 024-2.gat
+npc: npc/024-2_Tulimshar_Magic_School/_mobs.txt
+npc: npc/024-2_Tulimshar_Magic_School/_warps.txt
+npc: npc/024-2_Tulimshar_Magic_School/barrier.txt
+npc: npc/024-2_Tulimshar_Magic_School/tyer.txt
diff --git a/npc/024-2_Tulimshar_Magic_School/_mobs.txt b/npc/024-2_Tulimshar_Magic_School/_mobs.txt
new file mode 100644
index 00000000..98573823
--- /dev/null
+++ b/npc/024-2_Tulimshar_Magic_School/_mobs.txt
@@ -0,0 +1,7 @@
+// 024-2 Tulimshar Magic School mobs
+
+
+
+024-2.gat,0,0,0 script Mob024-2 -1,{
+ end;
+}
diff --git a/npc/024-2_Tulimshar_Magic_School/_warps.txt b/npc/024-2_Tulimshar_Magic_School/_warps.txt
new file mode 100644
index 00000000..c58304b1
--- /dev/null
+++ b/npc/024-2_Tulimshar_Magic_School/_warps.txt
@@ -0,0 +1,4 @@
+// 024-2 Tulimshar Magic School warps
+
+024-2.gat,26,27 warp toOutside 0,-1,024-1.gat,79,49
+024-2.gat,42,28 warp toOutside -1,-1,024-1.gat,86,49
diff --git a/npc/024-2_Tulimshar_Magic_School/barrier.txt b/npc/024-2_Tulimshar_Magic_School/barrier.txt
new file mode 100644
index 00000000..eda8e173
--- /dev/null
+++ b/npc/024-2_Tulimshar_Magic_School/barrier.txt
@@ -0,0 +1,12 @@
+// A barrier in the magic school to keep less experienced players out of the canyon
+
+024-2.gat,31,24,0 script #MagicSchoolBarrier1#M 127,1,1,{
+ if (BaseLevel < 40) goto L_PushBack;
+ close;
+
+L_PushBack:
+ warp "024-2.gat", 34, 24;
+ mes "[Tyer]";
+ mes "\"You're still too young to go in there.\"";
+ close;
+}
diff --git a/npc/024-2_Tulimshar_Magic_School/tyer.txt b/npc/024-2_Tulimshar_Magic_School/tyer.txt
new file mode 100644
index 00000000..6594cc76
--- /dev/null
+++ b/npc/024-2_Tulimshar_Magic_School/tyer.txt
@@ -0,0 +1,23 @@
+// A man in the magic school
+
+024-2.gat,36,21,0 script Tyer 157,{
+ mes "[Tyer]";
+ mes "\"Hello.\"";
+
+ if (BaseLevel >= 40) close;
+ next;
+
+ menu
+ "Hello", -,
+ "What do you mean I'm too young to go in there?", L_Explain;
+ close;
+
+L_Explain:
+ mes "[Tyer]";
+ mes "\"The canyon is a dangerous place, so only more experienced people are allowed there.\"";
+ next;
+
+ mes "[Tyer]";
+ mes "\"That barrier was made to keep those that are too young out.\"";
+ close;
+}