1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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;
}
|