summaryrefslogtreecommitdiff
path: root/npc/functions/quest-debug/034-ArtisQuests_TrainingLegion.txt
blob: ba72fd074f21894978ee341b1d1e6555218bcbf7 (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
// Training Legion quest
// Authors:
//    omatt

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

        GenericQuestDebug ArtisQuests_TrainingLegion,
            l("Does not have the quest"), 0,
            l("Finished sword training"), 1,
            l("Finished bow training"), 2,
            l("Both sword and bow training are finished"), 3,
            l("Skill training finished, end of quest"), 4;

        if (@menuret < 0)
        {
            return;
        }

    } while (1);
}