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

022-1.gat,73,71,0|script|Ferry Master|138,
{
    mes "[Ferry Master]";
    mes "\"Hello! Do you need something?\"";
    next;
    menu
        "How do I use the ferry?", L_Explain,
        "Nothing I guess", L_Close;

L_Explain:
    mes "[Ferry Master]";
    mes "\"You'll step up on the dock and select your destination. Each destination has an associated price that you need to pay. You don't have to go anywhere. Choosing the current port will result in nothing.\"";
    goto L_Close;

L_Close:
    close;
}