diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-11 18:16:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-11 18:16:32 +0300 |
commit | cd02cce9c9b344c67b05b9b70f944bbed600c62e (patch) | |
tree | 3e4ce04ddde7dc8845f6d77367ad5d310423cc4e /src/net/eathena/packetsout.inc | |
parent | 1a43a25be73ab9ed464903edef65486e54699437 (diff) | |
download | plus-cd02cce9c9b344c67b05b9b70f944bbed600c62e.tar.gz plus-cd02cce9c9b344c67b05b9b70f944bbed600c62e.tar.bz2 plus-cd02cce9c9b344c67b05b9b70f944bbed600c62e.tar.xz plus-cd02cce9c9b344c67b05b9b70f944bbed600c62e.zip |
Add packet CMSG_CHECK_NAME 0x0a13.
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 446d95144..b26a6ef9d 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -317,6 +317,7 @@ packet(CMSG_BOOKING_REGISTER_REQ, 0x0000, 0, nullptr); packet(CMSG_BOOKING_SEARCH_REQ, 0x0000, 0, nullptr); packet(CMSG_BOOKING_DELETE_REQ, 0x0000, 0, nullptr); packet(CMSG_BOOKING_UPDATE_REQ, 0x0000, 0, nullptr); +packet(CMSG_CHECK_NAME, 0x0000, 0, nullptr); packet(CMSG_MAIL2_OPEN_WRITE_MAIL, 0x0000, 0, nullptr); packet(CMSG_MAIL2_ADD_ITEM_TO_MAIL, 0x0000, 0, nullptr); packet(CMSG_MAIL2_REMOVE_ITEM_MAIL, 0x0000, 0, nullptr); @@ -1382,6 +1383,12 @@ if (packetVersion == 20140416) packet(CMSG_MAIL2_REMOVE_ITEM_MAIL, 0x0a06, 6, clif->pRodexRemoveItem); } +// 20140423 +if (packetVersion >= 20140423) +{ + packet(CMSG_CHECK_NAME, 0x0a13, 26, clif->pRodexCheckName); +} + // 20140605 if (packetVersion >= 20140605) { |