blob: 3b333be055bda7b3e231cf2196d1b7ad400dc064 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// TMW2 scripts.
// Authors:
// Jesusalva
// Description:
// This script controls access to Nard's Ship, fixing variables.
005-1,50,117,0 script CandorShip NPC_HIDDEN,0,0,{
OnTouch:
LOCATION$="Candor";
goto L_Warp;
L_Warp:
warp "002-3@"+LOCATION$, 31, 28;
closedialog;
close;
}
|