blob: 2d7f9450f250f315cea4b165b538612c0740be44 (
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;
}
|