summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-03-02 16:12:06 -0300
committerJesusaves <cpntb1@ymail.com>2019-03-02 16:12:06 -0300
commit55440f220e2f8e09e01f4cd66ebd60baeb767bf4 (patch)
tree79ce766d8788c912acd4a53121c5ded9975a9e37
parentafa190616650a240b2e0eb8e3bc38c9d6e73abb4 (diff)
downloadserverdata-55440f220e2f8e09e01f4cd66ebd60baeb767bf4.tar.gz
serverdata-55440f220e2f8e09e01f4cd66ebd60baeb767bf4.tar.bz2
serverdata-55440f220e2f8e09e01f4cd66ebd60baeb767bf4.tar.xz
serverdata-55440f220e2f8e09e01f4cd66ebd60baeb767bf4.zip
I found the typo. Emergency Exit is ready to go. (Scope reduced to local)
Init debug markers left active.
-rw-r--r--npc/000-1/exit.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/000-1/exit.txt b/npc/000-1/exit.txt
index 4c1d8cd80..a826b2141 100644
--- a/npc/000-1/exit.txt
+++ b/npc/000-1/exit.txt
@@ -9,11 +9,11 @@ OnTouch:
OnTalk:
OnTalkNearby:
// Switch LOCATION$ and warp to nearest town's Soul Menhir
- .@lx=array_find($@LOCAMASTER_LOC$, LOCATION$);
- debugmes "%s is %d", LOCATION$, .@lx;
+ .@lx=array_find(.LOCMASTER_LOC$, LOCATION$);
+ //debugmes "%s is %d", LOCATION$, .@lx;
if (.@lx >= 0) {
warp .LOCMASTER_MAP$[.@lx], .LOCMASTER_X[.@lx], .LOCMASTER_Y[.@lx];
- debugmes "%s (%d , %d)", .LOCMASTER_MAP$[.@lx], .LOCMASTER_X[.@lx], .LOCMASTER_Y[.@lx];
+ //debugmes "%s (%d , %d)", .LOCMASTER_MAP$[.@lx], .LOCMASTER_X[.@lx], .LOCMASTER_Y[.@lx];
end;
}