diff options
author | jesusalva <cpntb1@ymail.com> | 2018-02-11 14:34:19 -0200 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-02-11 14:34:19 -0200 |
commit | ff65ab48ba68c2f80a377eaa2561e48d9d0efa3f (patch) | |
tree | cfcd9fae79aad585321ce6554d9e546dd0184018 /npc/003-1/jerican.txt | |
parent | 4ff349e57a5b8efd89fbe3f2e6389b5ccf175c32 (diff) | |
download | serverdata-ff65ab48ba68c2f80a377eaa2561e48d9d0efa3f.tar.gz serverdata-ff65ab48ba68c2f80a377eaa2561e48d9d0efa3f.tar.bz2 serverdata-ff65ab48ba68c2f80a377eaa2561e48d9d0efa3f.tar.xz serverdata-ff65ab48ba68c2f80a377eaa2561e48d9d0efa3f.zip |
With aid of a python script, dress everyone in tulimshar.
All womans except Eomie will need new clotches.
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; } |