diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-07-27 07:23:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-07-27 07:23:36 +0300 |
commit | 03d1705dfafccdcd5ed613a2cca699e80978f747 (patch) | |
tree | 5484e6f63b50c5a6d1a3a4f7a9865b89ec46dc8c /src/net/eathena/packetsout.inc | |
parent | ae865d08a0d913e5a5a8e843f4f3be042fca15af (diff) | |
download | plus-03d1705dfafccdcd5ed613a2cca699e80978f747.tar.gz plus-03d1705dfafccdcd5ed613a2cca699e80978f747.tar.bz2 plus-03d1705dfafccdcd5ed613a2cca699e80978f747.tar.xz plus-03d1705dfafccdcd5ed613a2cca699e80978f747.zip |
Add new chanaged packet where item id with size int32 was introduced.
Also fix some other packets for support int32 ints.
Diffstat (limited to 'src/net/eathena/packetsout.inc')
-rw-r--r-- | src/net/eathena/packetsout.inc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index 6b3e3dd34..59926bbdb 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -1403,4 +1403,14 @@ if (packetVersionZero >= 20180411) packet(CMSG_ATTENDANCE_REWARD, 0x0aef, 2, clif->pAttendanceRewardRequest); } +// 20180704 re +if (packetVersionRe >= 20180704) +{ + packet(CMSG_NPC_PRODUCE_MIX, 0x018e, 18, clif->pProduceMix); + packet(CMSG_NPC_SELECT_ARROW, 0x01ae, 6, clif->pSelectArrow); + packet(CMSG_NPC_REPAIR, 0x01fd, 25, clif->pRepairItem); + packet(CMSG_NPC_COOKING, 0x025b, 8, clif->pCooking); + packet(CMSG_PRIVATE_AIRSHIP_REQUEST, 0x0a49, 22, clif->pPrivateAirshipRequest); +} + #endif |