diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-01 17:56:49 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-01 17:56:49 -0300 |
commit | c668daba011e359df621e9fe53e654bf589e314b (patch) | |
tree | 64bc191c422cd2fea635f82054c6703e0971fa14 /npc/012-1/andrei.txt | |
parent | 959f924969e661823a0a2fce6d98bcf082cd2d5a (diff) | |
download | serverdata-c668daba011e359df621e9fe53e654bf589e314b.tar.gz serverdata-c668daba011e359df621e9fe53e654bf589e314b.tar.bz2 serverdata-c668daba011e359df621e9fe53e654bf589e314b.tar.xz serverdata-c668daba011e359df621e9fe53e654bf589e314b.zip |
Andrei Sakar, greatest hero of all, is now on Hurnscald.
Might later add a disablenpc code to its OnInit block, and let GMs
activate it when necessary.
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; + +} |