summaryrefslogtreecommitdiff
path: root/src/map/packets_struct.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-10-10 21:23:52 +0300
committerAndrei Karas <akaras@inbox.ru>2018-10-22 01:42:43 +0300
commit2df7202ba89332afb00372a0b95926078059e968 (patch)
tree109a62ca0211af5c1f88eaf0cf2df5db7b4d2065 /src/map/packets_struct.h
parent36ba4a248e5c23af16e1cdf64cddff172e42a383 (diff)
downloadhercules-2df7202ba89332afb00372a0b95926078059e968.tar.gz
hercules-2df7202ba89332afb00372a0b95926078059e968.tar.bz2
hercules-2df7202ba89332afb00372a0b95926078059e968.tar.xz
hercules-2df7202ba89332afb00372a0b95926078059e968.zip
Update packet ZC_ADD_QUEST_EX.
Diffstat (limited to 'src/map/packets_struct.h')
-rw-r--r--src/map/packets_struct.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h
index 5d209cee0..6f3f3aeb1 100644
--- a/src/map/packets_struct.h
+++ b/src/map/packets_struct.h
@@ -380,7 +380,9 @@ enum packet_headers {
clanLeave = 0x0989, ///< ZC_ACK_CLAN_LEAVE
clanMessage = 0x098E, ///< ZC_NOTIFY_CLAN_CHAT
#endif
-#if PACKETVER >= 20150513 // [4144] 0x09f9 handled in client from 2014-10-29aRagexe and 2014-03-26cRagexeRE
+#if PACKETVER_ZERO_NUM >= 20181010 || PACKETVER >= 20181017
+ questAddType = 0xb0c,
+#elif PACKETVER >= 20150513 // [4144] 0x09f9 handled in client from 2014-10-29aRagexe and 2014-03-26cRagexeRE
questAddType = 0x9f9,
#else
questAddType = 0x2b3,
@@ -1827,7 +1829,11 @@ struct PACKET_ZC_NOTIFY_CLAN_CHAT {
* PACKET_ZC_MISSION_HUNT_EX (PACKETVER >= 20150513)
*/
struct packet_quest_hunt_sub {
-#if PACKETVER >= 20150513
+#if PACKETVER_ZERO_NUM >= 20181010 || PACKETVER >= 20181017
+ uint32 huntIdent;
+ uint32 huntIdent2;
+ uint32 mobType;
+#elif PACKETVER >= 20150513
uint32 huntIdent;
uint32 mobType;
#endif