diff options
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/packetsout.inc | 16 | ||||
-rw-r--r-- | src/net/eathena/skillhandler.cpp | 8 | ||||
-rw-r--r-- | src/net/eathena/skillhandler.h | 2 |
3 files changed, 21 insertions, 5 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index 17bb98078..ef23579a5 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -274,23 +274,29 @@ packet(CMSG_ONLINE_LIST, 0x0b0f); // 20150805 packet(CMSG_SELECT_CART, 0x0980); -#ifdef PACKETS_UPDATE +#ifndef PACKETS_UPDATE +// 0 +packet(CMSG_ALCHEMIST_RANKS, 0x0000); +packet(CMSG_BLACKSMITH_RANKS, 0x0000); +packet(CMSG_PK_RANKS, 0x0000); +#else // 20041108 if (packetVersion >= 20041108) { packet(CMSG_ALCHEMIST_RANKS, 0x0218); packet(CMSG_BLACKSMITH_RANKS, 0x0217); } +// 20050530 +if (packetVersion >= 20050530) +{ + packet(CMSG_PK_RANKS, 0x0237); +} // 20150513 if (packetVersion >= 20150513) { packet(CMSG_SEARCHSTORE_CLICK, 0x0838); packet(CMSG_BUYINGSTORE_CLOSE, 0x022d); } -#else -// 0 -packet(CMSG_ALCHEMIST_RANKS, 0x0000); -packet(CMSG_BLACKSMITH_RANKS, 0x0000); #endif // 20150513 diff --git a/src/net/eathena/skillhandler.cpp b/src/net/eathena/skillhandler.cpp index f6e1a52b0..5cc6317a2 100644 --- a/src/net/eathena/skillhandler.cpp +++ b/src/net/eathena/skillhandler.cpp @@ -93,4 +93,12 @@ void SkillHandler::getBlacksmithRanks() const } } +void SkillHandler::getPkRanks() const +{ + if (packetVersion >= 20050530) + { + createOutPacket(CMSG_PK_RANKS); + } +} + } // namespace EAthena diff --git a/src/net/eathena/skillhandler.h b/src/net/eathena/skillhandler.h index 09c863dae..77fc6dadb 100644 --- a/src/net/eathena/skillhandler.h +++ b/src/net/eathena/skillhandler.h @@ -53,6 +53,8 @@ class SkillHandler final : public Ea::SkillHandler void getAlchemistRanks() const override final; void getBlacksmithRanks() const override final; + + void getPkRanks() const override final; }; } // namespace EAthena |