diff options
Diffstat (limited to 'npc/003-5/doors.txt')
-rw-r--r-- | npc/003-5/doors.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/npc/003-5/doors.txt b/npc/003-5/doors.txt new file mode 100644 index 000000000..1b4492356 --- /dev/null +++ b/npc/003-5/doors.txt @@ -0,0 +1,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; +} + |