blob: 11cf3a448f97300994656b3f5b5f81e941413299 (
plain) (
blame)
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
|
// Lazy brother quest debug
// Author:
// gumi
function script QuestDebug20 {
do
{
clear;
setnpcdialogtitle l("Quest debug");
mes "ArtisQuests_LazyBrother";
mes "---";
mes l("Quest state: @@", getq(ArtisQuests_LazyBrother));
next;
GenericQuestDebug ArtisQuests_LazyBrother,
l("Does not have the quest"), 0,
l("Katja asked for help"), 1,
l("Found bobo, didn't tell Katja"), 2,
l("Told bobo to go home"), 3,
l("Katja gave reward"), 4;
if (@menuret < 0)
{
return;
}
} while (1);
}
|