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
|
// The ferry dock
// Author: Wushin
// Ferry Sign
001-1,61,71,0|script|Ferry Schedule#2|396
{
callfunc "FerryManifest";
end;
}
001-1,75,70,0|script|Tulimshar Koga|395,8,3
{
callfunc "BoardFerry";
close;
}
001-1,68,72,0|script|Tulimshar Dock|400,3,3
{
set @DockNumber, 2;
callfunc "FerryManifest";
close;
}
001-1,70,70,0|script|#TulimsharDock|32767
{
end;
OnCommandArrive:
disablenpc "Tulimshar Dock";
enablenpc "Tulimshar Koga";
end;
OnCommandWarp:
disablenpc "Tulimshar Koga";
enablenpc "Tulimshar Dock";
end;
}
|