diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-07-06 20:44:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-07-15 20:36:20 +0300 |
commit | 8b6b2eb2c762af0c965538ff077e70d0a4953d66 (patch) | |
tree | 7eda34ba74fa6077bd9dde4c98b4456460f2b936 /src/map/packets_struct.h | |
parent | 33637291b910b99b1c753a0b0ae4ccefc792a8a9 (diff) | |
download | hercules-8b6b2eb2c762af0c965538ff077e70d0a4953d66.tar.gz hercules-8b6b2eb2c762af0c965538ff077e70d0a4953d66.tar.bz2 hercules-8b6b2eb2c762af0c965538ff077e70d0a4953d66.tar.xz hercules-8b6b2eb2c762af0c965538ff077e70d0a4953d66.zip |
Update packet ZC_ADD_EXCHANGE_ITEM.
Diffstat (limited to 'src/map/packets_struct.h')
-rw-r--r-- | src/map/packets_struct.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h index 573215530..e0010e530 100644 --- a/src/map/packets_struct.h +++ b/src/map/packets_struct.h @@ -1988,6 +1988,29 @@ struct PACKET_ZC_SPRITE_CHANGE { #endif } __attribute__((packed)); +struct PACKET_ZC_ADD_EXCHANGE_ITEM { + int16 packetType; +#if PACKETVER_RE_NUM >= 20180704 + uint32 itemId; + uint8 itemType; + int32 amount; +#elif PACKETVER >= 20100223 + uint16 itemId; + uint8 itemType; + int32 amount; +#else + int32 amount; + uint16 itemId; +#endif + uint8 identified; + uint8 damaged; + uint8 refine; + struct EQUIPSLOTINFO slot; +#if PACKETVER >= 20150226 + struct ItemOptions option_data[MAX_ITEM_OPTIONS]; +#endif +} __attribute__((packed)); + #if !defined(sun) && (!defined(__NETBSD__) || __NetBSD_Version__ >= 600000000) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute #pragma pack(pop) #endif // not NetBSD < 6 / Solaris |