diff options
Diffstat (limited to 'npc/000-1/exit.txt')
-rw-r--r-- | npc/000-1/exit.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/npc/000-1/exit.txt b/npc/000-1/exit.txt new file mode 100644 index 00000000..a3c4f6c7 --- /dev/null +++ b/npc/000-1/exit.txt @@ -0,0 +1,18 @@ +// TMW2 scripts. +// Author: +// Jesusalva +// Description: +// Special Soul Menhir which only allows leaving the map. + +000-1,22,22,0 script Emergency Exit NPC_NO_SPRITE,2,2,{ +OnTouch: +OnTalk: +OnTalkNearby: + if (Sex) + warp "029-2", 25, 24; + else + warp "029-2", 22, 24; + end; + +} + |