diff options
Diffstat (limited to 'npc/012-1/andrei.txt')
-rw-r--r-- | npc/012-1/andrei.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/npc/012-1/andrei.txt b/npc/012-1/andrei.txt new file mode 100644 index 000000000..56fbeda61 --- /dev/null +++ b/npc/012-1/andrei.txt @@ -0,0 +1,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,59,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; + +} |