summaryrefslogtreecommitdiff
path: root/npc/020-7-1/sage.txt
blob: eccff6122f1a924b46b2ce73a53c81919c3db0e3 (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
// TMW2 scripts.
// Authors:
//    Jesusalva
//    TMW Org.
// Description:
//    Blue Sage (and officers)

// Peetu: Move to 020-7 (so, not on this file)

// Oskari: Need to be placed somewhere here (on this file)

020-7-1,35,59,0	script	The Blue Sage	NPC_BLUESAGE,{
    .@cindy=($@CINDY_STATE < gettimetick(2));
    mesn l("Nikolai, the Blue Sage");
    if (is_night())
        .@t$=l("Good evening");
    else
        .@t$=l("Good morning");
    mesq .@t$ + l(", my name is Nikolai. I am a sage, and the owner of this place.");
    next;
    mesn l("Nikolai, the Blue Sage");
    mesq l("Not only that, but I am also Angela's husband and Nivalis Mayor. If you have any issues, you can go straight to me.");
    if (.@cindy) {
        mesc l("Nikolai takes a sweat of his head. He seems worried with Cindy.");
    }
    close;

OnInit:
    npcsit;
    end;
}