summaryrefslogtreecommitdiff
path: root/npc/functions/quest-debug/033-Artis_Legion_Progress.txt
blob: c4ea5558a6acd3b57ba6bf4f1a14b5b973308c6b (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
29
30
// Mona quest debug
// Authors:
//    gumi
//    monwarez

function	script	QuestDebug33	{
    do
    {
        clear;
        setnpcdialogtitle l("Quest debug");
        mes "Artis_Legion_Progress";
        mes "---";
        mes l("Quest state: @@", getq(Artis_Legion_Progress));
        next;

        GenericQuestDebug Artis_Legion_Progress,
            l("Does not have the quest"), 0,
            l("Sent to training"), 1,
            l("Finished  training"), 2,
            l("Sent to battle"), 3,
            l("Finished battle"), 4,
            l("Sent to Q'Anon"), 5;

        if (@menuret < 0)
        {
            return;
        }

    } while (1);
}