summaryrefslogtreecommitdiff
path: root/src/net
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-05-16 22:42:49 +0300
committerAndrei Karas <akaras@inbox.ru>2016-05-16 22:42:49 +0300
commit43b65caadfd6abd2e5e083324e629659826ea0f5 (patch)
tree1ec15c5ce7053b899cdaf7b715d994b89f606b7b /src/net
parent2bf7211bdc2603f4d6f438d6aa7ae089104c69dd (diff)
downloadManaVerse-43b65caadfd6abd2e5e083324e629659826ea0f5.tar.gz
ManaVerse-43b65caadfd6abd2e5e083324e629659826ea0f5.tar.bz2
ManaVerse-43b65caadfd6abd2e5e083324e629659826ea0f5.tar.xz
ManaVerse-43b65caadfd6abd2e5e083324e629659826ea0f5.zip
Add support for packet version 20151104.
Diffstat (limited to 'src/net')
-rw-r--r--src/net/eathena/packetsout.inc19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc
index efbb552c0..d42b689c1 100644
--- a/src/net/eathena/packetsout.inc
+++ b/src/net/eathena/packetsout.inc
@@ -776,4 +776,23 @@ if (packetVersion >= 20151001)
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
+// 20151104
+if (packetVersion >= 20151104)
+{
+ packet(CMSG_FRIENDS_ADD_PLAYER, 0x07EC, 26, clif->pFriendsListAdd);
+ packet(CMSG_BUYINGSTORE_CREATE, 0x023b, -1, clif->pReqOpenBuyingStore);
+ packet(CMSG_BUYINGSTORE_OPEN, 0x0436, 6, clif->pReqClickBuyingStore);
+ packet(CMSG_MAP_SERVER_CONNECT, 0x0360, 19, clif->pWantToConnection);
+ packet(CMSG_PLAYER_CHANGE_DEST, 0x0363, 5, clif->pWalkToXY);
+ packet(CMSG_PLAYER_INVENTORY_DROP, 0x0437, 6, clif->pDropItem);
+ packet(CMSG_MOVE_TO_STORAGE, 0x088b, 8, clif->pMoveToKafra);
+ packet(CMSG_BUYINGSTORE_SELL, 0x0815, -1, clif->pReqTradeBuyingStore);
+ packet(CMSG_PLAYER_CHANGE_DIR, 0x0928, 5, clif->pChangeDir);
+ packet(CMSG_MAP_PING, 0x0886, 6, clif->pTickSend);
+ packet(CMSG_HOMUNCULUS_MENU, 0x088d, 5, clif->pHomMenu);
+ packet(CMSG_ITEM_PICKUP, 0x0964, 6, clif->pTakeItem);
+ packet(CMSG_PARTY_INVITE2, 0x08a5, 26, clif->pPartyInvite2);
+ packet(CMSG_NAME_REQUEST, 0x0887, 6, clif->pGetCharNameRequest);
+}
+
#endif