summaryrefslogtreecommitdiff
path: root/src/net/eathena/packetsout.inc
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-05-16 23:02:32 +0300
committerAndrei Karas <akaras@inbox.ru>2016-05-16 23:02:32 +0300
commitc9b56ae6afd246a8492dc1d22764b825d5b5f4bd (patch)
tree1a30440edc5bdf7726016d2368096c8c0718df9f /src/net/eathena/packetsout.inc
parent43b65caadfd6abd2e5e083324e629659826ea0f5 (diff)
downloadplus-c9b56ae6afd246a8492dc1d22764b825d5b5f4bd.tar.gz
plus-c9b56ae6afd246a8492dc1d22764b825d5b5f4bd.tar.bz2
plus-c9b56ae6afd246a8492dc1d22764b825d5b5f4bd.tar.xz
plus-c9b56ae6afd246a8492dc1d22764b825d5b5f4bd.zip
Add support for packet version 20151216.
Diffstat (limited to 'src/net/eathena/packetsout.inc')
-rw-r--r--src/net/eathena/packetsout.inc29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc
index d42b689c1..d22658b6a 100644
--- a/src/net/eathena/packetsout.inc
+++ b/src/net/eathena/packetsout.inc
@@ -795,4 +795,33 @@ if (packetVersion >= 20151104)
packet(CMSG_NAME_REQUEST, 0x0887, 6, clif->pGetCharNameRequest);
}
+// 20151216
+if (packetVersion >= 20151216)
+{
+ packet(CMSG_BUYINGSTORE_OPEN, 0x0361, 6, clif->pReqClickBuyingStore);
+ packet(CMSG_SEARCHSTORE_CLICK, 0x0436, 12, clif->pSearchStoreInfoListItemClick);
+ packet(CMSG_SKILL_USE_BEING, 0x0968, 10, clif->pUseSkillToId);
+ packet(CMSG_BUYINGSTORE_CLOSE, 0x083c, 2, clif->pReqCloseBuyingStore);
+ packet(CMSG_MOVE_TO_STORAGE, 0x08ac, 8, clif->pMoveToKafra);
+ packet(CMSG_NAME_REQUEST, 0x088b, 6, clif->pGetCharNameRequest);
+ packet(CMSG_BUYINGSTORE_CREATE, 0x0870, -1, clif->pReqOpenBuyingStore);
+ packet(CMSG_MAP_SERVER_CONNECT, 0x0947, 19, clif->pWantToConnection);
+ packet(CMSG_PLAYER_CHANGE_DEST, 0x08a2, 5, clif->pWalkToXY);
+ packet(CMSG_MOVE_FROM_STORAGE, 0x0864, 8, clif->pMoveFromKafra);
+ packet(CMSG_SKILL_USE_POSITION_MORE, 0x0874, 90, clif->pUseSkillToPosMoreInfo);
+ packet(CMSG_SOLVE_CHAR_NAME, 0x089e, 6, clif->pSolveCharName);
+ packet(CMSG_PLAYER_CHANGE_ACT, 0x089d, 7, clif->pActionRequest);
+ packet(CMSG_PLAYER_INVENTORY_DROP, 0x0966, 6, clif->pDropItem);
+ packet(CMSG_SKILL_USE_POSITION, 0x0865, 10, clif->pUseSkillToPos);
+ packet(CMSG_FRIENDS_ADD_PLAYER, 0x091d, 26, clif->pFriendsListAdd);
+ packet(CMSG_BUYINGSTORE_SELL, 0x0954, -1, clif->pReqTradeBuyingStore);
+ packet(CMSG_SEARCHSTORE_SEARCH, 0x0944, -1, clif->pSearchStoreInfo);
+ packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0960, 2, clif->pSearchStoreInfoNextPage);
+ packet(CMSG_MAP_PING, 0x085b, 6, clif->pTickSend);
+ packet(CMSG_HOMUNCULUS_MENU, 0x0362, 5, clif->pHomMenu);
+ packet(CMSG_PARTY_INVITE2, 0x086e, 26, clif->pPartyInvite2);
+ packet(CMSG_PLAYER_CHANGE_DIR, 0x022d, 5, clif->pChangeDir);
+ packet(CMSG_ITEM_PICKUP, 0x08a9, 6, clif->pTakeItem);
+}
+
#endif