diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-02 16:12:06 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-02 16:12:06 -0300 |
commit | 55440f220e2f8e09e01f4cd66ebd60baeb767bf4 (patch) | |
tree | 79ce766d8788c912acd4a53121c5ded9975a9e37 /npc | |
parent | afa190616650a240b2e0eb8e3bc38c9d6e73abb4 (diff) | |
download | serverdata-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.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/000-1/exit.txt | 6 |
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; } |