From ebeb2c4f224016bf076f9a97d7f03afc16a102cf Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 15 May 2019 01:01:39 +0300 Subject: Add packet SMSG_REFINE_ANNOUNCE 0x0ada --- src/net/eathena/packetsin.inc | 16 ++++++++++++++++ src/net/eathena/refinerecv.cpp | 9 +++++++++ src/net/eathena/refinerecv.h | 1 + 3 files changed, 26 insertions(+) (limited to 'src/net/eathena') diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index d83a51a40..cda7ec635 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -1251,6 +1251,18 @@ packet(SMSG_PLAYER_STAT_UPDATE_7, 0x0acb, 12, &PlayerRecv::processPlay packet(SMSG_PLAYER_GET_EXP2, 0x0acc, 18, &PlayerRecv::processPlayerGetExp2, 20170830); packet(SMSG_SERVICE_MESSAGE_COLOR, 0x0adb, -1, &ChatRecv::processServiceMessageColor, 20170830); +// 20170830 re +if (packetVersionRe >= 20170830) +{ + packet(SMSG_REFINE_ANNOUNCE, 0x0ada, 30, &RefineRecv::processRefineAnnounce, 20170830); +} + +// 20170906 main +if (packetVersionMain >= 20170906) +{ + packet(SMSG_REFINE_ANNOUNCE, 0x0ada, 30, &RefineRecv::processRefineAnnounce, 20170906); +} + // zero 20171018 if (packets_zero == true) { @@ -1281,6 +1293,7 @@ if (packets_zero == true) packet(SMSG_MERGE_ITEM, 0x096d, -1, &InventoryRecv::processMergeItem, 20171018); packet(SMSG_ACK_MERGE_ITEMS, 0x096f, 7, &InventoryRecv::processMergeItemResponse, 20171018); packet(SMSG_REFINE_ADD_ITEM, 0x0aa2, -1, &RefineRecv::processRefineAddItem, 20171018); + packet(SMSG_REFINE_ANNOUNCE, 0x0ada, 30, &RefineRecv::processRefineAnnounce, 20171018); } // 20171019 zero @@ -1453,6 +1466,7 @@ if (packetVersionRe >= 20180704) packet(SMSG_ITEM_DROPPED, 0x0add, 24, &ItemRecv::processItemDropped, 20180704); packet(SMSG_ITEM_PREVIEW1, 0x0ab9, 47, &InventoryRecv::processShowItemPreview1, 20180704); packet(SMSG_ENCHANT_EQUIPMENT, 0x0a3f, 11, &InventoryRecv::processEnchantEquipment, 20180704); + packet(SMSG_REFINE_ANNOUNCE, 0x0ada, 32, &RefineRecv::processRefineAnnounce, 20180704); } // 20180801 re @@ -1574,6 +1588,7 @@ if (packetVersionZero >= 20181114) { packet(SMSG_HOMUNCULUS_INFO, 0x09f7, 77, &HomunculusRecv::processHomunculusInfo2, 20181114); packet(SMSG_ENCHANT_EQUIPMENT, 0x0a3f, 11, &InventoryRecv::processEnchantEquipment, 20181114); + packet(SMSG_REFINE_ANNOUNCE, 0x0ada, 32, &RefineRecv::processRefineAnnounce, 20181114); } // 20181121 main @@ -1581,6 +1596,7 @@ if (packetVersionMain >= 20181121) { packet(SMSG_HOMUNCULUS_INFO, 0x09f7, 77, &HomunculusRecv::processHomunculusInfo2, 20181121); packet(SMSG_ENCHANT_EQUIPMENT, 0x0a3f, 11, &InventoryRecv::processEnchantEquipment, 20181121); + packet(SMSG_REFINE_ANNOUNCE, 0x0ada, 32, &RefineRecv::processRefineAnnounce, 20181121); } // 20181128 main diff --git a/src/net/eathena/refinerecv.cpp b/src/net/eathena/refinerecv.cpp index 5a66435a1..e63e2ae42 100644 --- a/src/net/eathena/refinerecv.cpp +++ b/src/net/eathena/refinerecv.cpp @@ -54,4 +54,13 @@ void RefineRecv::processRefineAddItem(Net::MessageIn &msg) } } +void RefineRecv::processRefineAnnounce(Net::MessageIn &msg) +{ + UNIMPLEMENTEDPACKET; + msg.readString(24, "char name"); + msg.readItemId("item id"); + msg.readInt8("refine level"); + msg.readInt8("status"); +} + } // namespace EAthena diff --git a/src/net/eathena/refinerecv.h b/src/net/eathena/refinerecv.h index 6334ffe9b..d4fc75416 100644 --- a/src/net/eathena/refinerecv.h +++ b/src/net/eathena/refinerecv.h @@ -32,6 +32,7 @@ namespace EAthena { void processRefineOpen(Net::MessageIn &msg); void processRefineAddItem(Net::MessageIn &msg); + void processRefineAnnounce(Net::MessageIn &msg); } // namespace RefineRecv } // namespace EAthena -- cgit v1.2.3-60-g2f50