diff options
author | jesusalva <cpntb1@ymail.com> | 2018-02-11 14:00:36 -0200 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-02-11 14:00:36 -0200 |
commit | 91e35411240fed391bb2a873c8d42e38aef98d01 (patch) | |
tree | 0183cba81ec0ccb8a0f77176e69b0afaca8e696a /npc/003-1/tinris.txt | |
parent | 4e2081bd5d1940bd634023bffdfd163115f6203d (diff) | |
download | serverdata-91e35411240fed391bb2a873c8d42e38aef98d01.tar.gz serverdata-91e35411240fed391bb2a873c8d42e38aef98d01.tar.bz2 serverdata-91e35411240fed391bb2a873c8d42e38aef98d01.tar.xz serverdata-91e35411240fed391bb2a873c8d42e38aef98d01.zip |
Give body to north tulimshar (a girl is still topless - XML fault, not mine)
Diffstat (limited to 'npc/003-1/tinris.txt')
-rw-r--r-- | npc/003-1/tinris.txt | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/npc/003-1/tinris.txt b/npc/003-1/tinris.txt index de267dff8..972891192 100644 --- a/npc/003-1/tinris.txt +++ b/npc/003-1/tinris.txt @@ -1,12 +1,27 @@ // Author: // Saulc -003-1,66,30,0 script Tinris NPC_MONA,{ +003-1,66,30,0 script Tinris NPC_ELF,{ -hello; + // Placeholder dialog + mesn; + mesq l("We elves have greater affinity for magic than humans."); + next; + mesq l("However, our skill growth rate is much smaller than those of humans."); + next; + mesq l("In the end, elves would have quite the age to rivalize with human wizards."); + close; OnInit: + .@npcId = getnpcid(0, "Tinris"); + //setunitdata(.@npcId, UDT_HEADTOP, 2929); + setunitdata(.@npcId, UDT_HEADMIDDLE, 1308); + setunitdata(.@npcId, UDT_HEADBOTTOM, 2207); + setunitdata(.@npcId, UDT_WEAPON, 1802); // Boots + setunitdata(.@npcId, UDT_HAIRSTYLE, 3); + setunitdata(.@npcId, UDT_HAIRCOLOR, 19); + .sex = G_MALE; - .distance = 3; + .distance = 5; end; } |