summaryrefslogtreecommitdiff
path: root/npc/008-2-10/airlia.txt
blob: 437e624d4a6020e35da8c3a93d3262d5de737fdf (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
// The Mana World scripts.
// Author:
//    Micksha
// Description:
//    Airlia, the major's daughter.
// THIS IS A PLACEHOLDER!

008-2-10,42,29,0	script	Airlia	NPC_AIRLIA,{
    speech
        l("Hello."),
        l("Do you know where the graveyard is?"),
        lg("No? Better that way. It's so dangerous there.");

    if (getq(General_Brotherhood) < 2)
        close;
    next;
    select
        l("Okay, thanks."),
        l("*whisper* Sagratha is great.");
    mes "";
    if (@menu == 2) {
        mesn;
        mesq l("Ah, uhm, erm. The Governor is busy arguing with the rest of the team.");
        next;
        mesn;
        mesq l("I'm afraid you'll need to wait them to reach a consensus first, before he can met with you.");
    }
    close;

OnInit:
    .bodytype = BODYTYPE_2;
    .distance = 4;
    end;
}