diff options
author | jesusalva <cpntb1@ymail.com> | 2018-03-04 01:27:55 -0300 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-03-04 01:27:55 -0300 |
commit | 717bd70cccc157b39c7cbf50738e9dd3d7c12990 (patch) | |
tree | 7280eeea4af7965fdd3b0845e98e4a4bd102f049 /npc/000-1 | |
parent | 5620cd7038508024ddb6f7b08ef5e42e1338e31d (diff) | |
download | serverdata-717bd70cccc157b39c7cbf50738e9dd3d7c12990.tar.gz serverdata-717bd70cccc157b39c7cbf50738e9dd3d7c12990.tar.bz2 serverdata-717bd70cccc157b39c7cbf50738e9dd3d7c12990.tar.xz serverdata-717bd70cccc157b39c7cbf50738e9dd3d7c12990.zip |
Include a more effective emergency exit for 000-1 Drasil Island
Diffstat (limited to 'npc/000-1')
-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; + +} + |