diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-20 02:28:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-20 02:28:34 +0300 |
commit | d036ceb193139ada2322c0f3b16991d09301878f (patch) | |
tree | a0dabd17a645d36969dee4de81a5df5c021ef57c /src/net/eathena/packetsout.inc | |
parent | c9433013925e52857a85a30a29e1265081091e14 (diff) | |
download | plus-d036ceb193139ada2322c0f3b16991d09301878f.tar.gz plus-d036ceb193139ada2322c0f3b16991d09301878f.tar.bz2 plus-d036ceb193139ada2322c0f3b16991d09301878f.tar.xz plus-d036ceb193139ada2322c0f3b16991d09301878f.zip |
Add packet CMSG_TAEKWON_RANKS 0x0225
Diffstat (limited to 'src/net/eathena/packetsout.inc')
-rw-r--r-- | src/net/eathena/packetsout.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index 889179353..0c07f8966 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -277,6 +277,7 @@ packet(CMSG_SELECT_CART, 0x0980, 7, clif->pSelectCart); packet(CMSG_ALCHEMIST_RANKS, 0x0000, 0, nullptr); packet(CMSG_BLACKSMITH_RANKS, 0x0000, 0, nullptr); packet(CMSG_PK_RANKS, 0x0000, 0, nullptr); +packet(CMSG_TAEKWON_RANKS, 0x0000, 0, nullptr); packet(CMSG_BUYINGSTORE_CLOSE, 0x0000, 0, nullptr); packet(CMSG_BUYINGSTORE_CREATE, 0x0000, 0, nullptr); packet(CMSG_BUYINGSTORE_SELL, 0x0000, 0, nullptr); @@ -328,6 +329,12 @@ if (packetVersion >= 20050110) packet(CMSG_CLOSE_STORAGE, 0x0193, 2, clif->pCloseKafra); } +// 20050328 +if (packetVersion >= 20050328) +{ + packet(CMSG_TAEKWON_RANKS, 0x0225, 2, clif->pTaekwon); +} + // 20050530 if (packetVersion >= 20050530) { |