summaryrefslogtreecommitdiff
path: root/world/map/npc/031-1/dock.txt
blob: a2f1994109da52c31b9dc788e824dc379986c152 (plain) (blame)
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

// Ferry Sign
031-1,95,107,0|script|Ferry Schedule#6|398
{
    callfunc "FerryManifest";
    end;
}

031-1,110,108,0|script|Nivalis Koga|395,6,2
{
    callfunc "BoardFerry";
    close;
}

031-1,99,109,0|script|Nivalis Dock|400,3,3
{
    set @DockNumber, 2;
    callfunc "FerryManifest";
    close;
}

031-1,100,100,0|script|#NivalisDock|32767
{
    end;

OnCommandArrive:
    disablenpc "Nivalis Dock";
    enablenpc "Nivalis Koga";
    end;

OnCommandWarp:
    disablenpc "Nivalis Koga";
    enablenpc "Nivalis Dock";
    end;
}