summaryrefslogtreecommitdiff
path: root/npc/functions/quest-debug/017-ShipQuests_ChefGado.txt
blob: 05e8cdb09b2c22d3df2b36284cfa4cc3bfa63f37 (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
28
29
30
// Gado quest debug
// Author:
//    gumi

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

        GenericQuestDebug ShipQuests_ChefGado,
            l("Does not have the quest"), 0,
            l("Nard asks to solve conflict"), 1,
            l("Got poison from Gado"), 2,
            l("Poisoned Julia"), 3,
            l("Completed, Gado wins"), 4,
            l("Completed, Julia wins (returned poison)"), 5,
            l("Completed, Julia wins"), 6;

        if (@menuret < 0)
        {
            return;
        }

    } while (1);
}