summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/019-2/angela.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/npc/019-2/angela.txt b/npc/019-2/angela.txt
index a6c6d45bb..8a81bef3d 100644
--- a/npc/019-2/angela.txt
+++ b/npc/019-2/angela.txt
@@ -19,7 +19,22 @@
// Main Quest: Cindy Quest
// Reward: Something awesome, probably.
// Advised Level: Groups of level 80 players.
+019-2,75,25,0 script Angela#Outside NPC_ELF_F,{
+ hello; end;
+OnInit:
+ .@npcId = getnpcid(0, .name$);
+ setunitdata(.@npcId, UDT_HEADTOP, KnitHat);
+ setunitdata(.@npcId, UDT_HEADMIDDLE, TneckSweater);
+ setunitdata(.@npcId, UDT_HEADBOTTOM, NPCEyes);
+ setunitdata(.@npcId, UDT_WEAPON, CottonSkirt);
+ setunitdata(.@npcId, UDT_HAIRSTYLE, any(7,8,9,10,11,12,13,19,20));
+ setunitdata(.@npcId, UDT_HAIRCOLOR, rand(0,20));
+
+ .sex = G_FEMALE;
+ .distance = 5;
+ end;
+}