diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-10-29 11:29:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-10-29 11:29:43 -0300 |
commit | 592fae2cce56e04efe2df43a7e7ea8a881913b05 (patch) | |
tree | 769efc66fa120e9c41ca6770f2e69ee113d09cbe /npc/024-1/guard.txt | |
parent | d74b4496fa3ed93ad27af6b9a178ae29f96c012a (diff) | |
download | serverdata-592fae2cce56e04efe2df43a7e7ea8a881913b05.tar.gz serverdata-592fae2cce56e04efe2df43a7e7ea8a881913b05.tar.bz2 serverdata-592fae2cce56e04efe2df43a7e7ea8a881913b05.tar.xz serverdata-592fae2cce56e04efe2df43a7e7ea8a881913b05.zip |
Update warps. 024-1 Frostia Guard.
Diffstat (limited to 'npc/024-1/guard.txt')
-rw-r--r-- | npc/024-1/guard.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/npc/024-1/guard.txt b/npc/024-1/guard.txt new file mode 100644 index 000000000..b32f51185 --- /dev/null +++ b/npc/024-1/guard.txt @@ -0,0 +1,22 @@ +// TMW2 Script + +024-1,93,73,0 script Frostia Guard NPC_ELF,{ + mesn; + mesq l("You're not welcome here. Get moving."); + end; + + +OnInit: + .@npcId = getnpcid(0, .name$); + setunitdata(.@npcId, UDT_HEADTOP, WarlordHelmet); + setunitdata(.@npcId, UDT_HEADMIDDLE, WarlordPlate); + setunitdata(.@npcId, UDT_HEADBOTTOM, NPCEyes); + setunitdata(.@npcId, UDT_WEAPON, JeansChaps); + setunitdata(.@npcId, UDT_HAIRSTYLE, 2); + setunitdata(.@npcId, UDT_HAIRCOLOR, 4); + + .sex = G_MALE; + .distance = 5; + end; +} + |