summaryrefslogtreecommitdiff
path: root/npc/functions/quest-debug/000-ShipQuests_Julia.txt
blob: 00e0120acd6546aa11c06193dfdbc5e1a5d62146 (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
// Julia quest debug
// Authors:
//    gumi

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

        GenericQuestDebug ShipQuests_Julia,
            l("Does not have the quest"), 0,
            l("Got the quest"), 1,
            l("Completed"), 2;

        if (@menuret == 32766)
        {
            return;
        }

    } while (1);
}