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
|
// TMW-2 Script.
// Author:
// Jesusalva
018-5,108,44,0 script Storage Fairy NPC_FAIRY_C,{
if (getq(LoFQuest_EPISODE) == 7 &&
countitem(SnakeSkin)) {
mesc l("Deliver the %s to retrieve Miler's memeto?", getitemlink(SnakeSkin)), 1;
if (askyesno() == ASK_NO) {
clear;
} else {
inventoryplace DeathPotion, 1;
mesn;
mesq l("Now, isn't this lovely? I'll turn it into some pants for %s winter.", (season() == WINTER ? l("this") : l("next")));
next;
delitem SnakeSkin, 1;
getitem DeathPotion, 1;
setq LoFQuest_EPISODE, 8, 0;
mesn;
mesq l("Oh, Miler just prepared a %s for you. You can use it... Or give it to Henry in Nivalis Inn, and whisper \"The Shadow Tortuga won the race against the Panthom Lord\".", getitemlink(DeathPotion));
close;
}
}
Banker(.name$, "Lilit", 50000);
close;
OnInit:
.sex = G_OTHER;
.distance = 5;
end;
}
|