summaryrefslogtreecommitdiff
path: root/npc/functions/quest-debug/026-General_Rumly.txt
blob: c533c27a02a935f9f9bc55497c9060efae92ab8e (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
// Rumly quest debug
// Author:
//    gumi

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

        GenericQuestDebug General_Rumly,
            l("Does not have the quest"), 0,
            l("Rumly needs your help"), 1,
            l("Rumly wants @@", l("Plushroom")), 2,
            l("Gave @@ to Rumly", l("Plushroom")), 3;

        if (@menuret < 0)
        {
            return;
        }

    } while (1);
}