mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-03 16:03:52 +00:00
Update opcode data and movement integration docs/code
This commit is contained in:
parent
69b23f4edd
commit
73e7c86621
11 changed files with 41 additions and 15 deletions
|
|
@ -1450,7 +1450,11 @@ struct MonsterMoveData {
|
|||
|
||||
class MonsterMoveParser {
|
||||
public:
|
||||
// WotLK 3.3.5a format: PackedGUID + uint8 unk + float[3] + uint32 splineId + uint8 moveType + ...
|
||||
static bool parse(network::Packet& packet, MonsterMoveData& data);
|
||||
// Vanilla 1.12 format: PackedGUID + float[3] + uint32 timeInMs + uint8 moveType + ...
|
||||
// Used for Classic/TBC/Turtle WoW servers (no splineId, timeInMs before moveType)
|
||||
static bool parseVanilla(network::Packet& packet, MonsterMoveData& data);
|
||||
};
|
||||
|
||||
/** SMSG_ATTACKSTART data */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue