diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-02 21:22:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-02 21:22:21 -0300 |
commit | a09a52e0d8c827b1fe37b11865cc9903c563fe82 (patch) | |
tree | 9213e9f5840902f354c535da137f268096356468 /npc/003-2-1/demure.txt | |
parent | cb7e2fc6fd16b8962285bd9a4789f44ef38a0aae (diff) | |
download | serverdata-a09a52e0d8c827b1fe37b11865cc9903c563fe82.tar.gz serverdata-a09a52e0d8c827b1fe37b11865cc9903c563fe82.tar.bz2 serverdata-a09a52e0d8c827b1fe37b11865cc9903c563fe82.tar.xz serverdata-a09a52e0d8c827b1fe37b11865cc9903c563fe82.zip |
Minor improvements to Leave Complaints depto
Diffstat (limited to 'npc/003-2-1/demure.txt')
-rw-r--r-- | npc/003-2-1/demure.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/npc/003-2-1/demure.txt b/npc/003-2-1/demure.txt index 8dd2e7658..09ed9f205 100644 --- a/npc/003-2-1/demure.txt +++ b/npc/003-2-1/demure.txt @@ -3,7 +3,7 @@ // Crazyfefe // Jesusalva -003-2-1,51,41,0 script Demure GM NPC_HIDDEN,{ +003-2-1,51,41,0 script Demure GM NPC_FEMALE,{ // Let's try without freeloop mesn any("NotSoBot", "Demure"); if (rand(1,5) <= 2) @@ -25,6 +25,15 @@ close; OnInit: - .distance=5; + .@npcId = getnpcid(.name$); + setunitdata(.@npcId, UDT_HEADTOP, Cap); + setunitdata(.@npcId, UDT_HEADMIDDLE, RedStockings); + setunitdata(.@npcId, UDT_HEADBOTTOM, BunnyEars); + setunitdata(.@npcId, UDT_WEAPON, GMRobe); + setunitdata(.@npcId, UDT_HAIRSTYLE, 14); + setunitdata(.@npcId, UDT_HAIRCOLOR, 18); + + .sex = G_FEMALE; + .distance = 5; end; } |