summaryrefslogtreecommitdiff
path: root/npc/003-1/aahna.txt
blob: 94fff454aa50d27e3373a123ae166682908f6e2f (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
35
36
37
38
39
40
41
// TMW-2 Script
// Author:
//  Jesusalva
//  Pookie
// Description:
//  This NPC serves no purpose currently. She is here to make Tulimshar more crowded.
//  Now a believer to announce Halinarzo and Alvasus Quest.

003-1,53,128,0	script	Aahna	NPC_ELVEN_FEMALE,{
    mesn;
    mesq l("Hello, What a lovely day for a stroll.");
    next;
    mesn;
    mesq l("I heard every Sunday there's a party at Halinarzo Church, but to get there you need to pass through the Desert Canyon.");
    next;
    mesn;
    mesq l("I hope one day, they decide build a church here. It's a pain to travel there every time...");
    close;

OnInit:
    .sex = G_FEMALE;
    .distance = 5;
    end;

// Server Happy Hour
OnSun1800:
    $@EXP_EVENT=rand2(15, 20);
    if ($@EXP_EVENT > 15 && $@EXP_EVENT != 20)
        $@EXP_EVENT=rand2(15, 20);
    $@EXP_EVENT_TIME=any(1,1,1,2);
    donpcevent "@exprate::OnPlayerCall";
    end;

OnSun0000:
    disablenpc .name$;
    end;

OnMon0000:
    enablenpc .name$;
    end;
}