diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-17 15:38:07 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-25 18:03:59 +0530 |
commit | eb0d0dc677e1d3e584de9202d3140fe6fb6db722 (patch) | |
tree | c8786013d81d15649fe0ab5f531bf5a559535d21 /src/map/packets_struct.h | |
parent | 8e77c3459e87df92309afe25d25539e6684e2dda (diff) | |
download | hercules-eb0d0dc677e1d3e584de9202d3140fe6fb6db722.tar.gz hercules-eb0d0dc677e1d3e584de9202d3140fe6fb6db722.tar.bz2 hercules-eb0d0dc677e1d3e584de9202d3140fe6fb6db722.tar.xz hercules-eb0d0dc677e1d3e584de9202d3140fe6fb6db722.zip |
New Entity Packets Implemented (Thanks to Rytech)
Diffstat (limited to 'src/map/packets_struct.h')
-rw-r--r-- | src/map/packets_struct.h | 55 |
1 files changed, 45 insertions, 10 deletions
diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h index a9ccc019d..6a0013c6c 100644 --- a/src/map/packets_struct.h +++ b/src/map/packets_struct.h @@ -84,10 +84,14 @@ enum packet_headers { idle_unitType = 0x2ee, #elif PACKETVER < 20101124 idle_unitType = 0x7f9, -#elif PACKETVER < 20150000 //actual 20120221 +#elif PACKETVER < 20120221 idle_unitType = 0x857, -#else +#elif PACKETVER < 20131223 idle_unitType = 0x915, +#elif PACKETVER < 20150513 + idle_unitType = 0x9dd, +#else + idle_unitType = 0x9ff, #endif #if PACKETVER >= 20120618 status_changeType = 0x983, @@ -104,8 +108,10 @@ enum packet_headers { #endif #if PACKETVER < 20071113 damageType = 0x8a, -#else +#elif PACKETVER < 20131223 damageType = 0x2e1, +#else + damageType = 0x8c8, #endif #if PACKETVER < 4 spawn_unitType = 0x79, @@ -117,10 +123,14 @@ enum packet_headers { spawn_unitType = 0x2ed, #elif PACKETVER < 20101124 spawn_unitType = 0x7f8, -#elif PACKETVER < 20150000 //actual 20120221 +#elif PACKETVER < 20120221 spawn_unitType = 0x858, -#else +#elif PACKETVER < 20131223 spawn_unitType = 0x90f, +#elif PACKETVER < 20150513 + spawn_unitType = 0x9dc, +#else + spawn_unitType = 0x9fe, #endif #if PACKETVER < 20080102 authokType = 0x73, @@ -142,10 +152,14 @@ enum packet_headers { unit_walkingType = 0x2ec, #elif PACKETVER < 20101124 unit_walkingType = 0x7f7, -#elif PACKETVER < 20150000 //actual 20120221 +#elif PACKETVER < 20120221 unit_walkingType = 0x856, -#else +#elif PACKETVER < 20131223 unit_walkingType = 0x914, +#elif PACKETVER < 20150513 + unit_walkingType = 0x9db, +#else + unit_walkingType = 0x9fd, #endif bgqueue_ackType = 0x8d8, bgqueue_notice_deleteType = 0x8db, @@ -513,6 +527,9 @@ struct packet_spawn_unit { short PacketLength; unsigned char objecttype; #endif +#if PACKETVER >= 20131223 + unsigned int AID; +#endif unsigned int GID; short speed; short bodyState; @@ -558,11 +575,14 @@ struct packet_spawn_unit { #if PACKETVER >= 20080102 short font; #endif -#if PACKETVER >= 20150000 //actual 20120221 +#if PACKETVER >= 20120221 int maxHP; int HP; unsigned char isBoss; #endif +#if PACKETVER >= 20150513 + short body; +#endif } __attribute__((packed)); struct packet_unit_walking { @@ -573,6 +593,9 @@ struct packet_unit_walking { #if PACKETVER > 20071106 unsigned char objecttype; #endif +#if PACKETVER >= 20131223 + unsigned int AID; +#endif unsigned int GID; short speed; short bodyState; @@ -619,11 +642,14 @@ struct packet_unit_walking { #if PACKETVER >= 20080102 short font; #endif -#if PACKETVER >= 20150000 //actual 20120221 +#if PACKETVER >= 20120221 int maxHP; int HP; unsigned char isBoss; #endif +#if PACKETVER >= 20150513 + short body; +#endif } __attribute__((packed)); struct packet_idle_unit { @@ -632,6 +658,9 @@ struct packet_idle_unit { short PacketLength; unsigned char objecttype; #endif +#if PACKETVER >= 20131223 + unsigned int AID; +#endif unsigned int GID; short speed; short bodyState; @@ -678,11 +707,14 @@ struct packet_idle_unit { #if PACKETVER >= 20080102 short font; #endif -#if PACKETVER >= 20150000 //actual 20120221 +#if PACKETVER >= 20120221 int maxHP; int HP; unsigned char isBoss; #endif +#if PACKETVER >= 20150513 + short body; +#endif } __attribute__((packed)); struct packet_status_change { @@ -1044,6 +1076,9 @@ struct packet_damage { #else int damage; #endif +#if PACKETVER >= 20131223 + unsigned char is_sp_damaged; +#endif short count; unsigned char action; #if PACKETVER < 20071113 |