diff options
Diffstat (limited to 'npc/003-1/jerican.txt')
-rw-r--r-- | npc/003-1/jerican.txt | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/npc/003-1/jerican.txt b/npc/003-1/jerican.txt index 1ec7d8b48..ff51601e2 100644 --- a/npc/003-1/jerican.txt +++ b/npc/003-1/jerican.txt @@ -1,13 +1,21 @@ // Author: // Saulc -003-1,93,125,0 script Jerican NPC_MONA,{ +003-1,93,125,0 script Jerican NPC_PLAYER,{ hello; OnInit: + .@npcId = getnpcid(0, "Jerican"); + //setunitdata(.@npcId, UDT_HEADTOP, 2936); + setunitdata(.@npcId, UDT_HEADMIDDLE, 1307); + setunitdata(.@npcId, UDT_HEADBOTTOM, 2204); + setunitdata(.@npcId, UDT_WEAPON, 1802); // Boots + setunitdata(.@npcId, UDT_HAIRSTYLE, 3); + setunitdata(.@npcId, UDT_HAIRCOLOR, 9); + .sex = G_MALE; - .distance = 3; + .distance = 5; end; } |