summaryrefslogblamecommitdiff
path: root/npc/functions/quest-debug/000-ShipQuests_Julia.txt
blob: 13eea14d03b2888af1d32efd0395da91f4d5ff65 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                         




                                                                


                                           


                                                                   



                                            
                         
         



                                                    



                
// Julia quest debug
// Authors:
//    gumi

function	script	QuestDebug0	{
    do
    {
        clear;
        setnpcdialogtitle l("Quest debug");
        mes "ShipQuests_Julia";
        mes "---";
        mes l("Quest state: @@", getq(ShipQuests_Julia));
        mes "---";
        mes l("Related quests:");
        mes "ShipQuests_Nard: " + getq(ShipQuests_Nard);
        mes "ShipQuests_ChefGado: " + getq(ShipQuests_ChefGado);
        mes "General_Narrator: " + getq(General_Narrator);
        next;

        GenericQuestDebug ShipQuests_Julia,
            menuimage("actions/manage", l("Debug Nard quest")), -1,
            menuimage("actions/manage", l("Debug Gado quest")), -2,
            menuimage("actions/manage", l("Debug Narrator")), -3,
            l("Does not have the quest"), 0,
            l("Got the quest"), 1,
            l("Completed"), 2;

        switch (@menuret)
        {
            case -1: callfunc "QuestDebug4"; break;
            case -2: callfunc "QuestDebug17"; break;
            case -3: callfunc "QuestDebug28"; break;
            default: if (@menuret < 0) return;
        }

    } while (1);
}