summaryrefslogtreecommitdiff
path: root/npc/012-2/helena.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/012-2/helena.txt')
-rw-r--r--npc/012-2/helena.txt25
1 files changed, 25 insertions, 0 deletions
diff --git a/npc/012-2/helena.txt b/npc/012-2/helena.txt
new file mode 100644
index 000000000..fe84d93e6
--- /dev/null
+++ b/npc/012-2/helena.txt
@@ -0,0 +1,25 @@
+// TMW2 Script.
+// Author:
+// Jesusalva
+// Description:
+// Lena
+
+012-2,47,40,0 script Helena NPC_FEMALE,{
+
+ mesn;
+ mesq lg("Hello, madam!", "Hello, sir!");
+ close;
+
+OnInit:
+ .@npcId = getnpcid(0, .name$);
+ setunitdata(.@npcId, UDT_HEADTOP, FairyHat);
+ setunitdata(.@npcId, UDT_HEADMIDDLE, ForestArmor);
+ setunitdata(.@npcId, UDT_HEADBOTTOM, CottonSkirt);
+ setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins);
+ setunitdata(.@npcId, UDT_HAIRSTYLE, 17);
+ setunitdata(.@npcId, UDT_HAIRCOLOR, 7);
+
+ .sex = G_FEMALE;
+ .distance = 5;
+ end;
+}