summaryrefslogtreecommitdiff
path: root/world/map/npc/024-2/tyer_trigger.txt
blob: 353dea16839522db62ddedd38605c18e174ce64a (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
// A man in the magic school

024-2.gat,33,24,0|script|#Tyer_Trigger|0,1,1,
{
    if (BaseLevel >= 40) end;

    mes "[Tyer]";
    mes "\"You're still too young to go in there.\"";
    next;

    menu
        "What do you mean I'm too young to go in there?", L_Explain,
        "Ah, right.", L_Close;

L_Explain:
    mes "[Tyer]";
    mes "\"The canyon is a dangerous place, so only more experienced people are allowed there.\"";
    next;

    mes "[Tyer]";
    mes "\"That barrier was made to keep those that are too young out.\"";
    goto L_Close;

L_Close:
    close;
}