diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-24 09:18:53 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-24 09:19:44 -0300 |
commit | 0dd1e3e0a0de4b145fdf83ebfdd8bcee4344fc1f (patch) | |
tree | e208affa7e1b1212459681068ef8b8b0b80d64bb /npc | |
parent | cffc2e613acc29837cf2fd2553219a3400819f4d (diff) | |
download | serverdata-0dd1e3e0a0de4b145fdf83ebfdd8bcee4344fc1f.tar.gz serverdata-0dd1e3e0a0de4b145fdf83ebfdd8bcee4344fc1f.tar.bz2 serverdata-0dd1e3e0a0de4b145fdf83ebfdd8bcee4344fc1f.tar.xz serverdata-0dd1e3e0a0de4b145fdf83ebfdd8bcee4344fc1f.zip |
Dress Contrabandist
Diffstat (limited to 'npc')
-rw-r--r-- | npc/009-1/trader_king.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/npc/009-1/trader_king.txt b/npc/009-1/trader_king.txt index 5d0ec35bd..88bce5737 100644 --- a/npc/009-1/trader_king.txt +++ b/npc/009-1/trader_king.txt @@ -181,5 +181,18 @@ L_Die: L_Close: close; +OnInit: + .@npcId = getnpcid(0, .name$); + setunitdata(.@npcId, UDT_HEADTOP, BurglarMask); + setunitdata(.@npcId, UDT_HEADMIDDLE, Chainmail); + setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers); + setunitdata(.@npcId, UDT_WEAPON, LeatherBoots); // Boots + setunitdata(.@npcId, UDT_HAIRSTYLE, 7); + setunitdata(.@npcId, UDT_HAIRCOLOR, 1); + + .sex = G_MALE; + .distance = 5; + end; + } |