summaryrefslogblamecommitdiff
path: root/npc/020-7-1/sage.txt
blob: fba75e0d201653474f6e27069145c63c16f80daf (plain) (tree)
1
2
3
4
5
6
7
8
9








                                              
                                                                     
 

                                                      
                                     










                                                                                                                                  






           
// 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, variant B)

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;
}