blob: b8162cdd18f34b7cb1384b4b1611ac72bd024ccd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// TMW2 Scripts.
// Author:
// Jesusalva
// Description:
// Doors NPCs.
002-4,19,27,0 script AreaNPC#002-4d NPC_HIDDEN,0,0,{
OnTouch:
if (LOCATION$ == "")
warp "002-3", 43, 28;
else
warp "002-3@"+LOCATION$, 43, 28;
close;
}
|