diff options
Diffstat (limited to 'src/net/eathena/questhandler.cpp')
-rw-r--r-- | src/net/eathena/questhandler.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/net/eathena/questhandler.cpp b/src/net/eathena/questhandler.cpp index 7b857b9b7..496ea49ad 100644 --- a/src/net/eathena/questhandler.cpp +++ b/src/net/eathena/questhandler.cpp @@ -39,6 +39,7 @@ QuestHandler::QuestHandler() : { SMSG_QUEST_ADD, SMSG_QUEST_LIST, + SMSG_QUEST_LIST_OBJECTIVES, 0 }; handledMessages = _messages; @@ -57,6 +58,10 @@ void QuestHandler::handleMessage(Net::MessageIn &msg) processAddQuests(msg); break; + case SMSG_QUEST_LIST_OBJECTIVES: + processAddQuestsObjectives(msg); + break; + default: break; } @@ -107,4 +112,24 @@ void QuestHandler::processAddQuests(Net::MessageIn &msg) questsWindow->rebuild(false); } +void QuestHandler::processAddQuestsObjectives(Net::MessageIn &msg) +{ + msg.readInt16("len"); + const int quests = msg.readInt32("quests count"); + for (int f = 0; f < quests; f ++) + { + const int var = msg.readInt32("quest id"); + msg.readInt32("time diff"); + msg.readInt32("time"); + const int num = msg.readInt16("objectives count"); + for (int d = 0; d < num; d ++) + { + // need use in quests kills list + msg.readInt32("monster id"); + msg.readInt16("count"); + msg.readString(24, "monster name"); + } + } +} + } // namespace TmwAthena |