summaryrefslogtreecommitdiff
path: root/npc/functions/quest-debug/008-ShipQuests_Couwan.txt
blob: 3df0cdbf0df985a7f72e3aeae422d84be60c40c2 (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
// Couwan quest debug
// Author:
//    gumi

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

        GenericQuestDebug ShipQuests_Couwan,
            l("Does not have the quest"), 0,
            l("Couwan asks to deliver box"), 1,
            l("Delivered box, got reward"), 2;

        if (@menuret < 0)
        {
            return;
        }

    } while (1);
}