diff options
author | QAston <none@none> | 2009-06-06 08:32:14 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-06-06 08:32:14 +0200 |
commit | c99b74151727a081423c60d3f42f1bd6caf4cc7e (patch) | |
tree | 61d45f78cdd770e10a81c32a7f938e725b72d78d /src/game/Level3.cpp | |
parent | 8bc46785de9950218f791f9eb6efc598d1a97d29 (diff) | |
parent | 39548d6822ce2a8cea49e4467f8329335aa0d85d (diff) |
*Merge.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Level3.cpp')
-rw-r--r-- | src/game/Level3.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/game/Level3.cpp b/src/game/Level3.cpp index 2082c7e5339..bc0e3b8f80f 100644 --- a/src/game/Level3.cpp +++ b/src/game/Level3.cpp @@ -88,8 +88,8 @@ bool ChatHandler::HandleAHBotOptionsCommand(const char* args) PSendSysMessage("ahexpire"); PSendSysMessage("minitems"); PSendSysMessage("maxitems"); - PSendSysMessage("mintime"); - PSendSysMessage("maxtime"); + //PSendSysMessage(""); + //PSendSysMessage(""); PSendSysMessage("percentages"); PSendSysMessage("minprice"); PSendSysMessage("maxprice"); @@ -132,6 +132,9 @@ bool ChatHandler::HandleAHBotOptionsCommand(const char* args) } else if (strncmp(opt,"mintime",l) == 0) { + PSendSysMessage("ahbotoptions mintime has been deprecated"); + return false; + /* char * param1 = strtok(NULL, " "); if ((!ahMapIdStr) || (!param1)) { @@ -139,9 +142,13 @@ bool ChatHandler::HandleAHBotOptionsCommand(const char* args) return false; } AuctionHouseBotCommands(3, ahMapID, NULL, param1); + */ } else if (strncmp(opt,"maxtime",l) == 0) { + PSendSysMessage("ahbotoptions maxtime has been deprecated"); + return false; + /* char * param1 = strtok(NULL, " "); if ((!ahMapIdStr) || (!param1)) { @@ -149,6 +156,7 @@ bool ChatHandler::HandleAHBotOptionsCommand(const char* args) return false; } AuctionHouseBotCommands(4, ahMapID, NULL, param1); + */ } else if (strncmp(opt,"percentages",l) == 0) { |