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
|
// TMW2 Scripts.
// Author:
// Jesusalva
// Description:
// Magic School - A Night in Red
027-7,40,40,0 script Inspector Lestard NPC_ANSELMO_BR,{
if (getq(General_NightInRed) == 2) goto L_Night;
// TODO FIXME
if (getq(General_NightInRed) >= 3) {
mes "";
mesc l("@@ You need to wait further releases to continue this quest!", b(l("WARNING:"))), 1;
goto L_Night;
}
//if (getq(General_NightInRed) == 4) goto L_Victim;
mesn;
mesq l("Carry along, there's nothing for you to see here.");
close;
L_Night:
mesn;
mesq l("So you're the %s which they informed me that would come to investigate the murder? I see.", academicrank());
next;
mesn;
mesq l("Obviously there's no body, the victim respawned at the Soul Menhir as it was supposed to happen. C'mon, what did you expect, a ghost?!");
next;
mesn;
mesq l("However several things are amiss - this is not a PVP map and has no monsters on it. We thought in the hypothesis of a %s or they being poisoned, but we ruled that out too.", getitemlink(DeathPotion));
mesc l("The Academy is NOT considered a town, and death penalty was applied."), 1;
next;
mesn;
mesq l("However, there was lot of magical residue, which is unusual. The victim said they remember entering the storage to meet someone, and next they knew, they were in the Soul Menhir.");
next;
mesn;
mesq l("You should interrogate the victim, maybe you can get more information out of them. What the Academy wishes to know is what sort of magic was used to kill in this area.");
next;
mesn;
mesq l("And that's the highest priority, so before disclosing the victim's identity, I wish you to investigate the storeroom and find anything out of place. Talk to me after you've scourged this place.");
setq1 General_NightInRed, 3;
//// Endtrail
mes "";
mesc l("@@ You need to wait further releases to continue this quest!", b(l("WARNING:"))), 1;
close;
OnInit:
.sex = G_MALE;
.distance = 6;
end;
}
027-7,27,31,0, script #NIRSpot01 NPC_NO_SPRITE,{
if (getq(General_NightInRed) != 1) end;
mesc l("This statue seems unnaturally broken. There's a paper note with the word %s written on it glued to the wall. There is no blood nor signals of any struggle.", b("Come mighty developer, and curse me!")); // TRANSLATORS: Chant, translate each word literally or keep chants in english.
// ...but "mighty" is not a power word? "Developer" is a Ghost word, and Curse is a Ghost aspect.
next;
mesc l("The inspector might have cleaned the scene when he removed to body... You should talk to him.");
setq1 General_NightInRed, 2;
close;
OnInit:
.distance=2;
end;
}
|