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
|
// TMW2/LOF Script.
// Author:
// Jesusalva
// Description:
// Better to skip this quest. It is too poor and would require more work,
// eg. rope and something to make the player take part on it... Probably?
// TODO: We could also throw random stuff (dig script), and use makeitem() to
// make it pop at Terranite Cave, near the lake, suggesting that's where the water
// comes from.
// TODO: We also need to figure out who was there, and why to save that person.
// Is it related to the episode?
019-1,110,101,0 script Well#Nivalis NPC_SWORDS_SIGN,{
mesc l("ERROR, missing sprite: Snowland.Well"), 1;
mesc l("Blame Saulc"), 1;
mesc "-------------------------------------", 1;
// Begin here
.@q=getq(NivalisQuest_Well);
if (.@q == 2)
goto L_Well;
mes l("Out of Order.");
close;
L_Well:
mesn strcharinfo(0);
mes l("Well well well, not felling well?");
mesc "-------------------------------------", 1;
mesc l("ERROR, missing item id: Frozen Water."), 1;
mesc l("Blame Saulc"), 1;
close;
OnInit:
.sex = G_OTHER;
.distance = 3;
end;
}
|