summaryrefslogtreecommitdiff
path: root/npc/012-1/andrei.txt
blob: 0bb3b11e6a62cac3e0647e35596d9431f1b796af (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
// TMW-2 Script
// Author:
//    Jesusalva
// Description:
//    Legendary hero

// I started with 'Greetings, citzen' and then I thought on 4144.
// He would never do such formal, hero-ish introduction. So I decided for something
// more realistic, which sounded like a human hero (ie. a normal player).

012-1,75,58,0	script	Andrei Sakar	NPC_ANDREI,{
    mesn l("Andrei Sakar, Legendary Hero");
    if (strcharinfo(0) == $MOST_HEROIC$)
        mesq l("Hi, @@.", strcharinfo(0));
    else
        mesq l("Hi.");
    close;

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

}