diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-26 19:22:28 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-26 19:22:28 +0300 |
commit | 020bb7c43135289a801f411f75c8c588e94ff31b (patch) | |
tree | d4d6f97d11351b00485711efa0bc57ef3f6d4378 /src/net | |
parent | 52fdc7544c117b058fb1321a24795d64fe3d3887 (diff) | |
download | plus-020bb7c43135289a801f411f75c8c588e94ff31b.tar.gz plus-020bb7c43135289a801f411f75c8c588e94ff31b.tar.bz2 plus-020bb7c43135289a801f411f75c8c588e94ff31b.tar.xz plus-020bb7c43135289a801f411f75c8c588e94ff31b.zip |
Add support for quest fields in quests window.
Quest attributes: {@@var1}, {@@var2}, {@@var3}, {@@time}
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/eathena/questrecv.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/net/eathena/questrecv.cpp b/src/net/eathena/questrecv.cpp index 88f804330..1a2ae5311 100644 --- a/src/net/eathena/questrecv.cpp +++ b/src/net/eathena/questrecv.cpp @@ -66,7 +66,6 @@ void QuestRecv::processAddQuest2(Net::MessageIn &msg) const int var = msg.readInt32("quest id"); msg.readUInt8("state"); const int val1 = msg.readInt32("count1"); - // +++ need use all this fields const int val2 = msg.readInt32("count2"); const int val3 = msg.readInt32("count3"); const int time = msg.readInt32("time"); @@ -116,7 +115,6 @@ void QuestRecv::processAddQuests2(Net::MessageIn &msg) const int var = msg.readInt32("quest id"); msg.readUInt8("state"); const int val1 = msg.readInt32("count1"); - // +++ need use all this fields const int val2 = msg.readInt32("count2"); const int val3 = msg.readInt32("count3"); const int time = msg.readInt32("time"); |