summaryrefslogtreecommitdiff
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
parent36ba4a248e5c23af16e1cdf64cddff172e42a383 (diff)
downloadhercules-2df7202ba89332afb00372a0b95926078059e968.tar.gz
hercules-2df7202ba89332afb00372a0b95926078059e968.tar.bz2
hercules-2df7202ba89332afb00372a0b95926078059e968.tar.xz
hercules-2df7202ba89332afb00372a0b95926078059e968.zip
Update packet ZC_ADD_QUEST_EX.
-rw-r--r--src/map/clif.c6
-rw-r--r--src/map/packets_struct.h10
2 files changed, 13 insertions, 3 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index dca381897..00ac4ea81 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -16965,7 +16965,11 @@ static void clif_quest_add(struct map_session_data *sd, struct quest *qd)
monster = mob->db(qi->objectives[i].mob);
-#if PACKETVER >= 20150513
+#if PACKETVER_ZERO_NUM >= 20181010 || PACKETVER >= 20181017
+ packet->objectives[i].huntIdent = qd->quest_id;
+ packet->objectives[i].huntIdent2 = i;
+ packet->objectives[i].mobType = 0; // Info Needed
+#elif PACKETVER >= 20150513
packet->objectives[i].huntIdent = (qd->quest_id * 1000) + i;
packet->objectives[i].mobType = 0; // Info Needed
#endif
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