summaryrefslogtreecommitdiff
path: root/npc/003-1/aahna.txt
blob: b336a6fdcb98ec0626614097650b8ecd2cc26949 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// TMW-2 Script
// Author:
//  Jesusalva
// Description:
//  This NPC serves no purpose currently. She is here to make Tulimshar more crowded.

003-1,53,128,0	script	Aahna	NPC_ELVEN_FEMALE,{
    if (is_admin()) {
        closedialog;
        openauction();
        close;
    }
    mesn;
    mesq l("Hello, What a lovely day for a stroll.");
    close;

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