diff options
Diffstat (limited to 'npc/002-1')
-rw-r--r-- | npc/002-1/doors.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/npc/002-1/doors.txt b/npc/002-1/doors.txt new file mode 100644 index 000000000..14b32518b --- /dev/null +++ b/npc/002-1/doors.txt @@ -0,0 +1,15 @@ +// TMW2 Scripts. +// Author: +// Jesusalva +// Description: +// Doors NPCs. + +002-1,72,30,0 script AreaNPC#002-1d NPC_HIDDEN,0,0,{ + +OnTouch: + if (LOCATION$ == "") + warp "002-3", 42, 26; + else + warp "002-3@"+LOCATION$, 42, 26; + close; +} |