summaryrefslogtreecommitdiff
path: root/npc/006-0/warpcandorbattle.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/006-0/warpcandorbattle.txt')
-rw-r--r--npc/006-0/warpcandorbattle.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/npc/006-0/warpcandorbattle.txt b/npc/006-0/warpcandorbattle.txt
new file mode 100644
index 000000000..20ef44ee2
--- /dev/null
+++ b/npc/006-0/warpcandorbattle.txt
@@ -0,0 +1,17 @@
+// TMW2 Script
+// Author:
+// Crazyfefe
+// Jesusalva
+
+006-0,54,35,0 script Magic Barrier NPC_HIDDEN,0,0,{
+ end;
+
+OnTouch:
+ if (BaseLevel >= 20 && !$@FEFE_CAVE_LEVEL)
+ warp "006-1", 49, 53;
+ else if (BaseLevel < 20)
+ npctalk3 l("You don't have the required level to pass this barrier.");
+ else
+ npctalk3 l("You can't pass this barrier while people are fighting inside!");
+ end;
+}