summaryrefslogtreecommitdiff
path: root/world/map/npc/029-1/ferry_master.txt
blob: 3163e6b2b0d08fed2af01e4541a4654015239e8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//

029-1.gat,45,107,0|script|Ferry Master#candor|138
{
    mes "[Ferry Master]";
    mes "\"Hello! Do you need something?\"";
    goto L_Main;

L_Main:
    menu
        "How do I use the ferry?", L_Explain,
        "Nothing I guess", L_Close;

L_Explain:
    mes "[Ferry Master]";
    callfunc "FerryHelp";
    goto L_Main;

L_Close:
    close;
}