summaryrefslogtreecommitdiff
path: root/npc/functions/quest-debug/011-ShipQuests_Astapolos.txt
blob: aca065edbce2c810e6a88f58e8dcd6f6d1037b0a (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
// Part of Gugli quest debug
// Author:
//    gumi

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

        GenericQuestDebug ShipQuests_Astapolos,
            l("Does not have the quest"), 0,
            l("Got the package"), 1;

        if (@menuret < 0)
        {
            return;
        }

    } while (1);
}