summaryrefslogtreecommitdiff
path: root/npc/003-5/doors.txt
blob: 1b4492356ba141e4c2dd9f67175874a3a7671372 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// TMW2 scripts.
// Authors:
//    Jesusalva

003-5,38,41,0	script	LeaveArena	NPC_HIDDEN,0,0,{

OnTouch:
    if (DESTROY_ME) goto L_Warn;

    goto L_Warp;

L_Warn:
    mesn "Narrator";
    mes col(l("You are not allowed to leave until you inform Arnea that you're done."), 1);
    close;

L_Warp:
    warp "003-1", 96, 145;
    closedialog;
    close;
}