diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-01-25 20:32:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-01-25 20:32:49 +0300 |
commit | 3e25eaf71f76daaf846b640e691209a5f26e1cce (patch) | |
tree | 2b191d5c63956c7497c19e8d38269dc1f99ba5d9 /src/net/eathena/packetsout.inc | |
parent | 5d0e738a90341dff367c49e4dfefe8e6c565882f (diff) | |
download | manaverse-3e25eaf71f76daaf846b640e691209a5f26e1cce.tar.gz manaverse-3e25eaf71f76daaf846b640e691209a5f26e1cce.tar.bz2 manaverse-3e25eaf71f76daaf846b640e691209a5f26e1cce.tar.xz manaverse-3e25eaf71f76daaf846b640e691209a5f26e1cce.zip |
Add packet CMSG_SKILL_USE_BEING_START 0x0b10
Diffstat (limited to 'src/net/eathena/packetsout.inc')
-rw-r--r-- | src/net/eathena/packetsout.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index ec05f490f..1f98f2c86 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -349,6 +349,7 @@ packet(CMSG_LOGIN_OTP_CODE, 0x0000, 0, nullptr); packet(CMSG_INVENTORY_EXPAND, 0x0000, 0, nullptr); packet(CMSG_INVENTORY_EXPAND_CONFIRM, 0x0000, 0, nullptr); packet(CMSG_INVENTORY_EXPAND_REJECT, 0x0000, 0, nullptr); +packet(CMSG_SKILL_USE_BEING_START, 0x0000, 0, nullptr); #else // 20040713 if (packetVersion >= 20040713) @@ -1469,6 +1470,24 @@ if (packetVersionRe >= 20180718) packet(CMSG_PLAYER_SELECT_STYLE, 0x0afc, 16, clif->pReqStyleChange); } +// 20181002 main +if (packetVersionMain >= 20181002) +{ + packet(CMSG_SKILL_USE_BEING_START, 0x0b10, 10, clif->pStartUseSkillToId); +} + +// 20181002 re +if (packetVersionRe >= 20181002) +{ + packet(CMSG_SKILL_USE_BEING_START, 0x0b10, 10, clif->pStartUseSkillToId); +} + +// 20181010 zero +if (packetVersionZero >= 20181010) +{ + packet(CMSG_SKILL_USE_BEING_START, 0x0b10, 10, clif->pStartUseSkillToId); +} + // 20181031 main if (packetVersionMain >= 20181031) { |