DK77 Posted January 20, 2022 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 61 Reputation: 0 Joined: 06/30/17 Last Seen: July 19, 2024 Share Posted January 20, 2022 (edited) Hai guys , actually im doing some custom packet filter , but the clif.cpp could not declare this argument rAthena Hash: 2f6e70d Client Date: 20180328 Server Mode: PRE-RE Description of Issue: clif.cpp getting error during compile on CASE HEADER_ZC_USESKILL_ACK Edited January 20, 2022 by DK77 Quote Link to comment Share on other sites More sharing options...
0 Shakto Posted February 26, 2022 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 416 Reputation: 96 Joined: 02/07/13 Last Seen: 6 hours ago Share Posted February 26, 2022 Check if the packet is in src/map/packets.hpp #if PACKETVER_MAIN_NUM >= 20181212 || PACKETVER_RE_NUM >= 20181212 || PACKETVER_ZERO_NUM >= 20190130 struct PACKET_ZC_USESKILL_ACK { int16 packetType; uint32 srcId; uint32 dstId; uint16 x; uint16 y; uint16 skillId; uint32 element; uint32 delayTime; uint8 disposable; uint32 unknown; } __attribute__((packed)); DEFINE_PACKET_HEADER(ZC_USESKILL_ACK, 0x0b1a); #elif PACKETVER_MAIN_NUM >= 20091124 || PACKETVER_RE_NUM >= 20091124 || defined(PACKETVER_ZERO) struct PACKET_ZC_USESKILL_ACK { int16 packetType; uint32 srcId; uint32 dstId; uint16 x; uint16 y; uint16 skillId; uint32 element; uint32 delayTime; uint8 disposable; } __attribute__((packed)); DEFINE_PACKET_HEADER(ZC_USESKILL_ACK, 0x07fb); #elif PACKETVER_MAIN_NUM >= 20090406 || PACKETVER_SAK_NUM >= 20080618 || PACKETVER_RE_NUM >= 20080827 || defined(PACKETVER_ZERO) struct PACKET_ZC_USESKILL_ACK { int16 packetType; uint32 srcId; uint32 dstId; uint16 x; uint16 y; uint16 skillId; uint32 element; uint32 delayTime; } __attribute__((packed)); DEFINE_PACKET_HEADER(ZC_USESKILL_ACK, 0x013e); #endif Quote Link to comment Share on other sites More sharing options...
Question
DK77
Hai guys , actually im doing some custom packet filter , but the clif.cpp could not declare this argument
rAthena Hash: 2f6e70d
Client Date: 20180328
Server Mode: PRE-RE
Description of Issue:
clif.cpp getting error during compile on CASE HEADER_ZC_USESKILL_ACK
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.