diff options
-rw-r--r-- | npc/000-1/_import.txt | 2 | ||||
-rw-r--r-- | npc/000-1/exit.txt | 16 |
2 files changed, 18 insertions, 0 deletions
diff --git a/npc/000-1/_import.txt b/npc/000-1/_import.txt index 4a59eca0c..475e3118b 100644 --- a/npc/000-1/_import.txt +++ b/npc/000-1/_import.txt @@ -1,3 +1,5 @@ // Map 000-1: Drasil Island // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/000-1/_mobs.txt", +"npc/000-1/exit.txt", +"npc/000-1/mapflags.txt", diff --git a/npc/000-1/exit.txt b/npc/000-1/exit.txt new file mode 100644 index 000000000..1c7dad6de --- /dev/null +++ b/npc/000-1/exit.txt @@ -0,0 +1,16 @@ +// TMW2 scripts. +// Author: +// Jesusalva +// Description: +// Special Soul Menhir which only allows leaving the map. + +000-1,78,110,0 script Emergency Exit NPC_SOUL_CURSED,{ +OnTouch: +OnTalk: +OnTalkNearby: + savepoint "002-1", 53, 38; + warp "002-1", 53, 38; + close; + +} + |