summaryrefslogtreecommitdiff
path: root/npc/003-4/sorfina.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/003-4/sorfina.txt')
-rw-r--r--npc/003-4/sorfina.txt42
1 files changed, 42 insertions, 0 deletions
diff --git a/npc/003-4/sorfina.txt b/npc/003-4/sorfina.txt
new file mode 100644
index 000000000..6ee621824
--- /dev/null
+++ b/npc/003-4/sorfina.txt
@@ -0,0 +1,42 @@
+// TMW2 Script.
+// Author:
+// Saulc
+// Jesusalva
+// Description:
+// Sorfina is Hasan's mother.
+
+003-4,39,33,0 script Sorfina NPC_FEMALE,{
+ //if (getq(TulimsharQuest_Hasan) == 2) goto
+ //if (getq(TulimsharQuest_Hasan) == 3) goto
+ //if (getq(TulimsharQuest_Hasan) == 4) goto
+ //if (getq(TulimsharQuest_Hasan) == 5) goto
+ mesn;
+ mesq l("Hello, darling!");
+ close;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+OnInit:
+ .@npcId = getnpcid(0, .name$);
+ setunitdata(.@npcId, UDT_HEADTOP, NPCEyes);
+ setunitdata(.@npcId, UDT_HEADMIDDLE, ValentineDress); //TODO
+ setunitdata(.@npcId, UDT_HEADBOTTOM, CottonTrousers);
+ setunitdata(.@npcId, UDT_WEAPON, DeepBlackBoots); // Boots
+ setunitdata(.@npcId, UDT_HAIRSTYLE, 16);
+ setunitdata(.@npcId, UDT_HAIRCOLOR, 4);
+
+ .sex = G_FEMALE;
+ .distance = 5;
+ end;
+}