diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-09-26 20:00:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-09-26 20:00:11 +0300 |
commit | e3163de9297e06ed4e9bfa4cbaaca0c757222b81 (patch) | |
tree | 390e345ff3854c0d74ffd5ffdf7d0e545ba8be32 /src/net/eathena/packetsin.inc | |
parent | 392c3d08286a3f19a02258e61c6b240b32fd4f46 (diff) | |
download | manaplus-e3163de9297e06ed4e9bfa4cbaaca0c757222b81.tar.gz manaplus-e3163de9297e06ed4e9bfa4cbaaca0c757222b81.tar.bz2 manaplus-e3163de9297e06ed4e9bfa4cbaaca0c757222b81.tar.xz manaplus-e3163de9297e06ed4e9bfa4cbaaca0c757222b81.zip |
Add packet SMSG_INVENTORY_START 0x0b08.
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r-- | src/net/eathena/packetsin.inc | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index 5699a58ea..c2dab4b15 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -1299,12 +1299,36 @@ if (packetVersionRe >= 20180704) packet(SMSG_ITEM_DROPPED, 0x0add, 24, &ItemRecv::processItemDropped, 20180704); } -// 20180801 +// 20180801 re if (packetVersionRe >= 20180801) { packet(SMSG_BEING_VIEW_EQUIPMENT2, 0x0b03, -1, &BeingRecv::processBeingViewEquipment2, 20180801); } +// 20180829 re +if (packetVersionRe >= 20180829) +{ + packet(SMSG_INVENTORY_START1, 0x0b08, 26, &InventoryRecv::processInventoryStart1, 20180829); +} + +// 20180912 re +if (packetVersionRe >= 20180912) +{ + packet(SMSG_INVENTORY_START2, 0x0b08, 27, &InventoryRecv::processInventoryStart2, 20180912); +} + +// 20180919 re +if (packetVersionRe >= 20180919) +{ + packet(SMSG_INVENTORY_START3, 0x0b08, -1, &InventoryRecv::processInventoryStart3, 20180919); +} + +// 20180919 zero +if (packetVersionZero >= 20180919) +{ + packet(SMSG_INVENTORY_START3, 0x0b08, -1, &InventoryRecv::processInventoryStart3, 20180919); +} + // 0 // evol always packets packet(SMSG_SERVER_VERSION_RESPONSE, 0x7531, -1, &LoginRecv::processServerVersion, 0); |