summaryrefslogtreecommitdiff
path: root/npc/custom/quests/quest_shop.txt
diff options
context:
space:
mode:
authorEmistry Haoyan <equinox1991@gmail.com>2019-04-13 16:28:16 +0800
committerEmistry Haoyan <equinox1991@gmail.com>2019-04-29 00:44:32 +0800
commit9f6ffd2f9aae9c39eb2fe2be2c60cfd45c18842a (patch)
tree64900c78ff3328e0359a84e7ebe682cad6ffcc0f /npc/custom/quests/quest_shop.txt
parentab81d4012eac5c2c00c485971fc9b89bf69761be (diff)
downloadhercules-9f6ffd2f9aae9c39eb2fe2be2c60cfd45c18842a.tar.gz
hercules-9f6ffd2f9aae9c39eb2fe2be2c60cfd45c18842a.tar.bz2
hercules-9f6ffd2f9aae9c39eb2fe2be2c60cfd45c18842a.tar.xz
hercules-9f6ffd2f9aae9c39eb2fe2be2c60cfd45c18842a.zip
Added *consolemes script command
- deprecated `*debugmes` script command. - added `*consolemes` script command which display the console message based on `type`. - allow map-server console to auto logging into text file depend on type of message.
Diffstat (limited to 'npc/custom/quests/quest_shop.txt')
-rw-r--r--npc/custom/quests/quest_shop.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/custom/quests/quest_shop.txt b/npc/custom/quests/quest_shop.txt
index 739b53c02..c2481e991 100644
--- a/npc/custom/quests/quest_shop.txt
+++ b/npc/custom/quests/quest_shop.txt
@@ -170,13 +170,13 @@ OnEnd:
function Add {
if (getitemname(getarg(1)) == "null") {
- debugmes "Quest reward #"+getarg(1)+" invalid (skipped).";
+ consolemes(CONSOLEMES_WARNING, "Quest reward #"+getarg(1)+" invalid (skipped).");
return;
}
setarray .@j[0],getarg(2),getarg(3),getarg(4);
for(set .@i,5; .@i<getargcount(); set .@i,.@i+2) {
if (getitemname(getarg(.@i)) == "null") {
- debugmes "Quest requirement #"+getarg(.@i)+" invalid (skipped).";
+ consolemes(CONSOLEMES_WARNING, "Quest requirement #"+getarg(.@i)+" invalid (skipped).");
return;
} else
setarray .@j[.@i-2],getarg(.@i),getarg(.@i+1);