summaryrefslogtreecommitdiff
path: root/npc/functions/quest-debug/001-ShipQuests_Arpan.txt
blob: 26c4964660eca64d4b6d8663b5938af7bf8888bc (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
// Arpan quest debug
// Author:
//    gumi

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

        GenericQuestDebug ShipQuests_Arpan,
            l("Arpan is waiting for you"), 0,
            l("Arpan told you to open the chest"), 1,
            l("You opened the chest"), 2,
            l("Completed"), 3;

        if (@menuret < 0)
        {
            return;
        }

    } while (1);
}