summaryrefslogtreecommitdiff
path: root/npc/commands/debug-quest.txt
blob: 1d345091dd1d504fc31fedc512ef3f94e6426296 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// Evol Script
// Author: Gumi, Jesusalva

// TODO: This script must be auto-generated from db/quests.conf to be of any use
function	script	GlobalQuestDebug	{
        do
        {
            clear;
            setnpcdialogtitle l("Quest debug") + " - " + l("Other");
            mes l("This menu gives access to quest debug menus for @@ quests.", strtolower(l("Other")));
            next;
            mes l("Please select a quest:");

            menuint
                menuimage("actions/back", l("Go back")), -1,
                l("Custom"), -136;

            switch (@menuret)
            {
                case -1: return;
                case -136:
                        mes "Determine the quest number, as stated in db/quests.conf";
                        input .@quest;
                        if (!.@quest) return;
                        mes "";
                        mes l("DEBUG: Changing @@, Values: (@@, @@, @@).", getquestlink(.@quest), getq(.@quest), getq2(.@quest), getq3(.@quest));
                        select
                            "set 1",
                            "set 2",
                            "set 3",
                            "reset";
                        mes l("DEBUG: Changing @@ field @@ to something else.", getquestlink(.@quest), @menu);
                        mes "";
                        mes "Determine the new value (numeric only)";
                        input .@value;
                        if (.@value < 0) return;
                        if (@menu == 1)
                            setq1 .@quest, .@value;
                        if (@menu == 2)
                            setq2 .@quest, .@value;
                        if (@menu == 3)
                            setq3 .@quest, .@value;
                        if (@menu == 4)
                            setq .@quest, .@value, 0, 0;

                    return;
                default: return;
            }
        } while (1);
    return;
}


// TODO FIXME: Include OnGetq (@getq)
-	script	@qdebug	32767,{
    end;

OnCall:
    if (!is_gm()) {
        end;
    }
    GlobalQuestDebug;
    closedialog;
    end;

OnSetq:
    if (.@atcmd_numparameters < 2) {
        dispbottom "setq called with invalid arguments (min. 2)";
        dispbottom "GM Command syntax: @setq <quest_id> <val1> <val2> <val3>";
        end;
    }
    .@q=atoi(.@atcmd_parameters$[0]);
    switch (.@atcmd_numparameters) {
        case 4:
            setq3 .@q, atoi(.@atcmd_parameters$[3]);
        case 3:
            setq2 .@q, atoi(.@atcmd_parameters$[2]);
        case 2:
            setq1 .@q, atoi(.@atcmd_parameters$[1]);
            dispbottom l("Quest @@ modified by GM", getquestlink(.@q));
            specialeffect 50, SELF, playerattached();
            break;
        default:
            dispbottom "setq called with invalid arguments (max. 4)";
            dispbottom "GM Command syntax: @setq <quest_id> <val1> <val2> <val3>";
            break;
    }
    end;

OnGetq:
    if (.@atcmd_numparameters != 1) {
        dispbottom "getq called with invalid arguments.";
        dispbottom "Message is sent as a console notice.";
        dispbottom "GM Command syntax: @getq <quest_id>";
        end;
    }
    .@q=atoi(.@atcmd_parameters$[0]);
    consoleinfo("Information for Quest [%d/%d]: Q1 %d | Q2 %d | Q3 %d | QT %d",
             .@q, getcharid(0), getq(.@q), getq2(.@q), getq3(.@q), getqtime(.@q));
    end;

OnInit:
    bindatcmd "qdebug", "@qdebug::OnCall", 99, 99, 1;
    bindatcmd "setq", "@qdebug::OnSetq", 99, 99, 1;
    bindatcmd "getq", "@qdebug::OnGetq", 99, 99, 0;
}