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
45
46
47
48
49
50
51
52
53
54
55
56
|
// TMW2 Scripts
// There are three docks here, one which returns you to 014-2 and two which dismount
// Those which dismount have two NPCs nearby to confirm the operation. If it did not
// succeed (back'n'forth), you sink. Remember you MUST use a slide
// Having a rowboat is never checked here, it can safely expire.
// setmount 3; setmount 0;
011-4,124,21,0 script #Dock0114A NPC_HIDDEN,0,1,{
end;
OnTouch:
warp "014-2", 25, any(96, 97);
sleep2(10);
setmount 0;
end;
}
011-4,85,67,0 script #Dock0114B1 NPC_HIDDEN,0,1,{
end;
OnTouch:
dispbottom l("You are now at Graveyard Island.");
slide 82, 65;
sleep2(10);
setmount 0;
end;
}
011-4,83,67,0 script #Dock0114B2 NPC_HIDDEN,0,1,{
end;
OnTouch:
slide 85, 65;
sleep2(10);
setmount 3;
end;
}
011-4,236,72,0 script #Dock0114C1 NPC_HIDDEN,0,1,{
end;
OnTouch:
dispbottom l("You are now at Elli's Tower.");
slide 239, 70;
sleep2(10);
setmount 0;
end;
}
011-4,238,72,0 script #Dock0114C2 NPC_HIDDEN,0,1,{
end;
OnTouch:
slide 236, 70;
sleep2(10);
setmount 3;
end;
}
|