summaryrefslogtreecommitdiff
path: root/npc/001-1/ferry_master.txt
blob: db5c6ec885ebd660d8db423e65942ed132024275 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
001-1,64,75,0	script	Ferry Master#tulimshar	NPC138,{
    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;
}