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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
// TMW2 script.
// Authors:
// Jesusalva
// Description:
// Controls the Cindy Gateway quest node.
// Also controls Watch Spot Yetis.
021-1,246,206,0 script Yeti#0211Cindy NPC_YETI,{
// Is this the right Yeti?
.@n=getq(NivalisQuest_Well);
if (.@n < 2)
goto L_NoQuest;
// Alright, now we need to cycle Cindy quest to decide if this NPC will have
// a special behavior or not.
.@q=getq(NivalisQuest_Cindy);
// if (.@q == 999) goto L_Cindy;
mesn;
mesq l("Hey, thanks for saving me. You know, from the well.");
next;
mesn strcharinfo(0);
mesq l("You're wel-- Wait, it was you who was trapped on the well near Miler's house?!");
next;
mesn;
mesq l("Yes, exactly. Thanks for the rescue. I must guard this area from the caves, if you need, just call me.");
close;
L_NoQuest:
@yetiagro=@yetiagro+1;
if (@yetiagro > 5) goto L_Hit;
if (@yetiagro > 3) goto L_Warning;
if (@yetiagro > 1) goto L_Disrupt;
goto L_Walking;
L_Walking:
mesn;
mesq l("Grr, where's Mercury... He was supposed to keep watch over this spot... It was meant to be my free time!");
next;
mesn;
mesq l("And you, @@... You better get walking. Soon.", get_race());
close;
L_Disrupt:
mesn;
mesq l("Grrr... Why are @@ on this cave?! What Mercury was doing?!", get_race());
close;
L_Warning:
mesn;
mesq l("Stupid @@, get out of this cave before I lose my patience!", get_race());
close;
L_Hit:
mesn;
mesq l("DIE, SCUM!");
@yetiagro=0;
percentheal -100, -100;
close;
OnInit:
.sex=G_OTHER;
.distance=20;
end;
}
/////////////////////////////////////////////////////// Random Lookout Yetis
021-1,144,203,0 script Yeti#0211Guard NPC_YETI,{
@yetiagro=@yetiagro+1;
if (@yetiagro > 5) goto L_Hit;
if (@yetiagro > 3) goto L_Warning;
if (@yetiagro > 1) goto L_Disrupt;
goto L_Walking;
L_Walking:
mesn;
mesq l("You, @@... You better get walking. Soon.", get_race());
close;
L_Disrupt:
mesn;
mesq l("Grrr... Why are @@ on this cave?! Begone, before I lose my patience!", get_race());
close;
L_Warning:
mesn;
mesq l("Stupid @@, get out of this cave before I lose my patience!", get_race());
close;
L_Hit:
mesn;
mesq l("DIE, SCUM!");
percentheal -100, -100;
@yetiagro=0;
close;
OnInit:
.sex=G_OTHER;
.distance=20;
end;
}
//021-1,25,298,0 duplicate(Yeti#0211Guard) Yeti#0211G2 NPC_YETI
|