summaryrefslogtreecommitdiff
path: root/src/net/eathena/packetsin.inc
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-03-23 00:34:38 +0300
committerAndrei Karas <akaras@inbox.ru>2016-03-23 00:34:38 +0300
commitffd2832c4a84c534afa0302d03ae857f9a1c28e9 (patch)
treeb7809c112ce0b619e98df36b848adae4b5f054d1 /src/net/eathena/packetsin.inc
parent51c9a63a660fe88cfa44d93028e6ae2448fb889d (diff)
downloadplus-ffd2832c4a84c534afa0302d03ae857f9a1c28e9.tar.gz
plus-ffd2832c4a84c534afa0302d03ae857f9a1c28e9.tar.bz2
plus-ffd2832c4a84c534afa0302d03ae857f9a1c28e9.tar.xz
plus-ffd2832c4a84c534afa0302d03ae857f9a1c28e9.zip
Add booking and some other not implimented packets (hercules)
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r--src/net/eathena/packetsin.inc24
1 files changed, 23 insertions, 1 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc
index 510376e9c..e0a365019 100644
--- a/src/net/eathena/packetsin.inc
+++ b/src/net/eathena/packetsin.inc
@@ -474,9 +474,31 @@ if (packetVersion >= 20150513)
// introduced in 20150805
if (packetVersion >= 20150805)
{
- packet(SMSG_SELECT_CART, 0x00c2, -1, &InventoryRecv::processSelectCart);
+ packet(SMSG_SELECT_CART, 0x097f, -1, &InventoryRecv::processSelectCart);
}
else
{
packet(SMSG_SELECT_CART, 0x0000, 0, nullptr);
}
+
+packet(SMSG_MERGE_ITEM, 0x096d, -1, nullptr);
+packet(SMSG_ACK_MERGE_ITEMS, 0x096f, 7, nullptr);
+
+// unused or not implimented packets
+packet(SMSG_BOOKING_REGISTER_ACK, 0x0803, 4, nullptr);
+packet(SMSG_BOOKING_SEARCH_ACK, 0x0805, -1, nullptr);
+packet(SMSG_BOOKING_DELETE_ACK, 0x0807, 4, nullptr);
+packet(SMSG_BOOKING_INSERT_NOTIFY, 0x0809, 50, nullptr);
+packet(SMSG_BOOKING_UPDATE_NOTIFY, 0x080a, 18, nullptr);
+packet(SMSG_BOOKING_DELETE_NOTIFY, 0x080b, 6, nullptr);
+packet(SMSG_RECRUIT_REGISTER_ACK, 0x08e6, 4, nullptr);
+packet(SMSG_RECRUIT_SEARCH_ACK, 0x08e8, -1, nullptr);
+packet(SMSG_RECRUIT_DELETE_ACK, 0x08ea, 4, nullptr);
+packet(SMSG_RECRUIT_INSERT_NOTIFY, 0x08ec, 73, nullptr);
+packet(SMSG_RECRUIT_UPDATE_NOTIFY, 0x08ed, 43, nullptr);
+packet(SMSG_RECRUIT_DELETE_NOTIFY, 0x08ee, 6, nullptr);
+packet(SMSG_BOOKING_VOLUNTEER_INFO, 0x08f2, 36, nullptr);
+packet(SMSG_BOOKING_REFUSE_VOLUNTEER, 0x08fa, 6, nullptr);
+packet(SMSG_BOOKING_CANCEL_VOLUNTEER, 0x0909, 6, nullptr);
+packet(SMSG_BOOKING_ADD_FILTERING_LIST, 0x090b, 30, nullptr);
+packet(SMSG_BOOKING_SUB_FILTERING_LIST, 0x090c, 30, nullptr);