diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-09-25 09:13:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-09-25 09:13:32 +0300 |
commit | 4325c90ab0845d3c98f09917ff51bdb0a139c2d7 (patch) | |
tree | e791b1597a661ab03822bd7ee56996b535fb7d91 /src/net/eathena/packetsin.inc | |
parent | 84ec06e6d2814ec0cbef904fb352baf1f43bf7c7 (diff) | |
download | manaverse-4325c90ab0845d3c98f09917ff51bdb0a139c2d7.tar.gz manaverse-4325c90ab0845d3c98f09917ff51bdb0a139c2d7.tar.bz2 manaverse-4325c90ab0845d3c98f09917ff51bdb0a139c2d7.tar.xz manaverse-4325c90ab0845d3c98f09917ff51bdb0a139c2d7.zip |
Add packet SMSG_SKILL_WARP_POINT 0x0abe.
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r-- | src/net/eathena/packetsin.inc | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index 263ca4a1e..928d6eeab 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -1036,11 +1036,23 @@ if (packetVersion >= 20170502) } // 20170315 -if (packetVersion == 20170315) +if (packetVersion >= 20170315) { packet(SMSG_CHANGE_MAP_SERVER, 0x0ac7, 156, &CharServerRecv::processChangeMapServer, 20170315); } +// 20170419 re +if (packetVersionRe >= 20170419) +{ + packet(SMSG_SKILL_WARP_POINT, 0x0abe, -1, &SkillRecv::processSkillWarpPoint2, 20170419); +} + +// 20170502 main +if (packetVersionMain >= 20170502) +{ + packet(SMSG_SKILL_WARP_POINT, 0x0abe, -1, &SkillRecv::processSkillWarpPoint2, 20170502); +} + // 20170830 packet(SMSG_PLAYER_STAT_UPDATE_7, 0x0acb, 12, &PlayerRecv::processPlayerStatUpdate7, 20170830); packet(SMSG_PLAYER_GET_EXP2, 0x0acc, 18, &PlayerRecv::processPlayerGetExp2, 20170830); @@ -1050,6 +1062,7 @@ if (packets_zero == true) { packet(SMSG_ITEM_DROPPED, 0x0add, 22, &ItemRecv::processItemDropped, 20171018); packet(SMSG_ITEM_MOVE_FAILED, 0x0aa7, 6, &InventoryRecv::processItemMoveFailed, 20171018); + packet(SMSG_SKILL_WARP_POINT, 0x0abe, -1, &SkillRecv::processSkillWarpPoint2, 20171018); } // 20171207 |