summaryrefslogtreecommitdiff
path: root/npc/024-2_Tulimshar_Magic_School/barrier.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/024-2_Tulimshar_Magic_School/barrier.txt')
-rw-r--r--npc/024-2_Tulimshar_Magic_School/barrier.txt12
1 files changed, 12 insertions, 0 deletions
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;
+}