diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-02 19:34:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-02 19:34:51 +0300 |
commit | 9a3120e7c3d89c3d35d5032114b387e49d462154 (patch) | |
tree | d5e516b5f5b3e23071e10c957ee228d470d890a2 /src/net/eathena/beingrecv.cpp | |
parent | 568c267f26da3e4b183c0190dd048102f4d933c9 (diff) | |
download | plus-9a3120e7c3d89c3d35d5032114b387e49d462154.tar.gz plus-9a3120e7c3d89c3d35d5032114b387e49d462154.tar.bz2 plus-9a3120e7c3d89c3d35d5032114b387e49d462154.tar.xz plus-9a3120e7c3d89c3d35d5032114b387e49d462154.zip |
Sort more packets. Add version checks inside packets.
Diffstat (limited to 'src/net/eathena/beingrecv.cpp')
-rw-r--r-- | src/net/eathena/beingrecv.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/net/eathena/beingrecv.cpp b/src/net/eathena/beingrecv.cpp index 7eaf601e3..057617a1c 100644 --- a/src/net/eathena/beingrecv.cpp +++ b/src/net/eathena/beingrecv.cpp @@ -1761,6 +1761,38 @@ void BeingRecv::processGraffiti(Net::MessageIn &msg) dstBeing->setCreatorId(creatorId); } +void BeingRecv::processSkillDamage(Net::MessageIn &msg) +{ + BLOCK_START("BeingRecv::processSkillDamage") + if (!actorManager) + { + BLOCK_END("BeingRecv::processSkillDamage") + return; + } + + const int id = msg.readInt16("skill id"); + Being *const srcBeing = actorManager->findBeing( + msg.readBeingId("src being id")); + Being *const dstBeing = actorManager->findBeing( + msg.readBeingId("dst being id")); + msg.readInt32("tick"); + msg.readInt32("src speed"); + msg.readInt32("dst speed"); + int param1; + if (msg.getVersion() >= 3) + param1 = msg.readInt32("damage"); + else + param1 = msg.readInt16("damage"); + const int level = msg.readInt16("skill level"); + msg.readInt16("div"); + msg.readUInt8("skill hit/type?"); + if (srcBeing) + srcBeing->handleSkill(dstBeing, param1, id, level); + if (dstBeing) + dstBeing->takeDamage(srcBeing, param1, AttackType::SKILL, id, level); + BLOCK_END("BeingRecv::processSkillDamage") +} + void BeingRecv::applyPlayerAction(Net::MessageIn &msg, Being *const being, const uint8_t type) |