summaryrefslogtreecommitdiff
path: root/npc/005-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-02-22 01:50:14 -0300
committerJesusaves <cpntb1@ymail.com>2020-02-22 01:50:14 -0300
commitd0386d85b337dbd76870e78fd449138574755da5 (patch)
treef30d63315970bdf183ed85fb292e85102f0d231c /npc/005-1
parent23aea6b427ae63a12f522bd420c73a30aecd7cb3 (diff)
downloadserverdata-d0386d85b337dbd76870e78fd449138574755da5.tar.gz
serverdata-d0386d85b337dbd76870e78fd449138574755da5.tar.bz2
serverdata-d0386d85b337dbd76870e78fd449138574755da5.tar.xz
serverdata-d0386d85b337dbd76870e78fd449138574755da5.zip
There's now a lobby room for Candor Arena.
Diffstat (limited to 'npc/005-1')
-rw-r--r--npc/005-1/_import.txt2
-rw-r--r--npc/005-1/underground.txt12
-rw-r--r--npc/005-1/warpcandorbattle.txt17
3 files changed, 13 insertions, 18 deletions
diff --git a/npc/005-1/_import.txt b/npc/005-1/_import.txt
index bbd950b67..84542811c 100644
--- a/npc/005-1/_import.txt
+++ b/npc/005-1/_import.txt
@@ -9,7 +9,7 @@
"npc/005-1/sailors.txt",
"npc/005-1/ship.txt",
"npc/005-1/soul-menhir.txt",
+"npc/005-1/underground.txt",
"npc/005-1/vincent.txt",
-"npc/005-1/warpcandorbattle.txt",
"npc/005-1/wateranimation.txt",
"npc/005-1/zegas.txt",
diff --git a/npc/005-1/underground.txt b/npc/005-1/underground.txt
new file mode 100644
index 000000000..ba721aaa6
--- /dev/null
+++ b/npc/005-1/underground.txt
@@ -0,0 +1,12 @@
+// TMW2 Script
+// Author:
+// Crazyfefe
+// Jesusalva
+
+005-1,66,62,0 script Magic Barrier NPC_HIDDEN,0,0,{
+ end;
+
+OnTouch:
+ warp "006-0", 49, 53;
+ end;
+}
diff --git a/npc/005-1/warpcandorbattle.txt b/npc/005-1/warpcandorbattle.txt
deleted file mode 100644
index d7af54df4..000000000
--- a/npc/005-1/warpcandorbattle.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-// TMW2 Script
-// Author:
-// Crazyfefe
-// Jesusalva
-
-005-1,66,62,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;
-}