1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
// TMW2 Scripts.
// Author:
// Jesusalva
// Description:
// Nard's ship Doors NPCs.
002-3,30,28,0 script AreaNPC#doors4 NPC_HIDDEN,0,0,{
OnTouch:
if (getq(ShipQuests_Julia) < 3) {
showavatar NPC_NARD;
setcamnpc "Nard";
mesn l("Nard");
mesq l("Where do you think you are going, without talking to me first?");
next;
mesc l("Talk to Nard to unlock the door.");
next;
restorecam;
close;
}
if (LOCATION$ == "Candor") {
warp "005-1", 49, 117;
close;
}
if (LOCATION$ == "Tulim") {
warp "003-1", 81, 68;
close;
}
debugmes "Script error: 002-3 door";
close;
}
002-3,42,25,0 script AreaNPC#002-3d NPC_HIDDEN,0,0,{
OnTouch:
if (LOCATION$ == "")
warp "002-1", 72, 29;
else
warp "002-1@"+LOCATION$, 72, 29;
close;
}
|