diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-08-19 21:48:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-08-19 21:48:05 +0300 |
commit | c1183f13c3964f7000f13ce407759d145775dd7d (patch) | |
tree | c528e3b4691a5158503d30067c3cdb9774255d5e /src/net/eathena/packetsin.inc | |
parent | 4e5d11c6d14dc255070c61d5bb867d2c52039f30 (diff) | |
download | mv-c1183f13c3964f7000f13ce407759d145775dd7d.tar.gz mv-c1183f13c3964f7000f13ce407759d145775dd7d.tar.bz2 mv-c1183f13c3964f7000f13ce407759d145775dd7d.tar.xz mv-c1183f13c3964f7000f13ce407759d145775dd7d.zip |
Update packet SMSG_RANKS_LIST
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r-- | src/net/eathena/packetsin.inc | 31 |
1 files changed, 25 insertions, 6 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index 0cdbf304e..5d6d72efc 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -772,12 +772,6 @@ if (packetVersion >= 20120419) packet(SMSG_CHAR_CHARACTERS, 0x099d, -1, &CharServerRecv::processCharCharacters, 20120419); } -// 20120502 -if (packetVersion >= 20120502) -{ - packet(SMSG_RANKS_LIST, 0x097d, 288, &BeingRecv::processRanksList, 20120502); -} - // 20120618 if (packetVersion >= 20120618) { @@ -831,6 +825,18 @@ if (packetVersion >= 20130000) packet(SMSG_ITEM_DROPPED, 0x084b, 19, &ItemRecv::processItemDropped, 20130000); } +// 20130529 re +if (packetVersionRe >= 20130529) +{ + packet(SMSG_RANKS_LIST, 0x097d, 288, &BeingRecv::processRanksList1, 20130529); +} + +// 20130605 main +if (packetVersionMain >= 20130605) +{ + packet(SMSG_RANKS_LIST, 0x097d, 288, &BeingRecv::processRanksList1, 20130605); +} + // 20130605 re if (packetVersionRe >= 20130605) { @@ -1308,6 +1314,7 @@ if (packets_zero == true) packet(SMSG_REFINE_ADD_ITEM, 0x0aa2, -1, &RefineRecv::processRefineAddItem, 20171018); packet(SMSG_REFINE_ANNOUNCE, 0x0ada, 30, &RefineRecv::processRefineAnnounce, 20171018); packet(SMSG_PLAYER_SHORTCUTS, 0x0a00, 269, &PlayerRecv::processPlayerShortcuts2, 20171018); + packet(SMSG_RANKS_LIST, 0x097d, 288, &BeingRecv::processRanksList1, 20130529); } // 20171019 zero @@ -1809,6 +1816,18 @@ if (packetVersionZero >= 20190626) packet(SMSG_HOMUNCULUS_INFO, 0x0b2f, 73, &HomunculusRecv::processHomunculusInfo3, 20190626); } +// 20190703 re +if (packetVersionRe >= 20190703) +{ + packet(SMSG_RANKS_LIST, 0x097d, 88, &BeingRecv::processRanksList2, 20190703); +} + +// 20190724 zero +if (packetVersionZero >= 20190724) +{ + packet(SMSG_RANKS_LIST, 0x097d, 88, &BeingRecv::processRanksList2, 20190724); +} + // 0 // evol always packets packet(SMSG_SERVER_VERSION_RESPONSE, 0x7531, -1, &LoginRecv::processServerVersion, 0); |