summaryrefslogtreecommitdiff
path: root/npc/functions/quest-debug/100-General_Narrator.txt
blob: a88f5d6a6cf390e0255eb7b4f1239375f4a41ccf (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
// Narrator debug
// Author:
//    gumi

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

        GenericQuestDebug General_Narrator,
            l("Game introduction"), 0,
            l("Arrived in Artis"), 1,
            l("Arrived in Argaes"), 2,
            l("Sent to Airlia"), 3;

        if (@menuret < 0)
        {
            return;
        }

    } while (1);
}