diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-14 18:19:48 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-14 18:19:48 -0300 |
commit | 6704ac98fdeca29c3efd8a73903cfd3f91783088 (patch) | |
tree | 90c5b3051fbc9cdd818e52b9cd9cef6596542c8c /npc | |
parent | 2d6126224d98b9cc4ce611e8abd72ca534be293c (diff) | |
download | serverdata-6704ac98fdeca29c3efd8a73903cfd3f91783088.tar.gz serverdata-6704ac98fdeca29c3efd8a73903cfd3f91783088.tar.bz2 serverdata-6704ac98fdeca29c3efd8a73903cfd3f91783088.tar.xz serverdata-6704ac98fdeca29c3efd8a73903cfd3f91783088.zip |
Make @qdebug more flexible
Diffstat (limited to 'npc')
-rw-r--r-- | npc/commands/debug-quest.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/npc/commands/debug-quest.txt b/npc/commands/debug-quest.txt index 0da95f402..7cc3ff110 100644 --- a/npc/commands/debug-quest.txt +++ b/npc/commands/debug-quest.txt @@ -21,6 +21,9 @@ function script GlobalQuestDebug { mes "Determine the quest number, as stated in db/quests.conf"; input .@quest; if (!.@quest) return; + mes ""; + mes l("DEBUG: Changing @@ from @@ to something else.", getquestlink(.@quest), getq(.@quest)); + mes ""; mes "Determine the new value (numeric only)"; input .@value; if (.@value < 0) return; |