summaryrefslogtreecommitdiff
path: root/npc/000-1/exit.txt
blob: a3c4f6c76513225ddf14f8eeb2a01a359da9126b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;

}