diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-10 16:54:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-10 16:54:46 +0300 |
commit | 7d162145958fccfcc3ba32a7db3b8161cfe83fe2 (patch) | |
tree | d109f74483a9274bca46a41670cc5ec69b50876f /src/net/eathena/questhandler.cpp | |
parent | 8aad60beb37fb0f364b0d8ab5bbe66232eacb676 (diff) | |
download | plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.gz plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.bz2 plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.xz plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.zip |
Mark all unimplimented packets with UNIMPLIMENTEDPACKET attribute.
Diffstat (limited to 'src/net/eathena/questhandler.cpp')
-rw-r--r-- | src/net/eathena/questhandler.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/net/eathena/questhandler.cpp b/src/net/eathena/questhandler.cpp index 8be58f90c..404069594 100644 --- a/src/net/eathena/questhandler.cpp +++ b/src/net/eathena/questhandler.cpp @@ -164,11 +164,11 @@ void QuestHandler::processAddQuestsObjectives(Net::MessageIn &msg) void QuestHandler::processUpdateQuestsObjectives(Net::MessageIn &msg) { + // ignored msg.readInt16("len"); const int num = msg.readInt16("objectives count"); for (int f = 0; f < num; f ++) { - // need use in quests kills list msg.readInt32("quest id"); msg.readInt32("monster id"); msg.readInt16("count old"); @@ -197,6 +197,7 @@ void QuestHandler::processRemoveQuest(Net::MessageIn &msg) void QuestHandler::processActivateQuest(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; // +++ need enable/disable quests depend on this packet msg.readInt32("quest id"); msg.readUInt8("activate"); @@ -204,6 +205,7 @@ void QuestHandler::processActivateQuest(Net::MessageIn &msg) void QuestHandler::processNpcQuestEffect(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; // this packed mostly useless, because manaplus can show any // kind of effects based on quest states. msg.readInt32("npc id"); |