blob: 1b4492356ba141e4c2dd9f67175874a3a7671372 (
plain) (
tree)
|
|
// 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;
}
|