diff options
Diffstat (limited to 'npc/000-1/exit.txt')
-rw-r--r-- | npc/000-1/exit.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/000-1/exit.txt b/npc/000-1/exit.txt index 1c7dad6de..788ef0bc6 100644 --- a/npc/000-1/exit.txt +++ b/npc/000-1/exit.txt @@ -4,13 +4,15 @@ // Description: // Special Soul Menhir which only allows leaving the map. -000-1,78,110,0 script Emergency Exit NPC_SOUL_CURSED,{ +000-1,22,22,0 script Emergency Exit NPC_SOUL_CURSED,2,2,{ OnTouch: OnTalk: OnTalkNearby: + if (getsavepoint(0) != "000-1") warp "SAVE"; + if (getsavepoint(0) != "000-1") end; savepoint "002-1", 53, 38; warp "002-1", 53, 38; - close; + end; } |