diff options
-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; + } |