mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-14 07:55:33 +01:00
correctly parse UpdateBeatLevel
This commit is contained in:
@@ -13,12 +13,8 @@ type MsgMhfUpdateBeatLevel struct {
|
|||||||
AckHandle uint32
|
AckHandle uint32
|
||||||
Unk1 uint32
|
Unk1 uint32
|
||||||
Unk2 uint32
|
Unk2 uint32
|
||||||
MonsterData []byte
|
Data1 []int32
|
||||||
Unk3 uint8
|
Data2 []int32
|
||||||
Unk4 uint32
|
|
||||||
Unk5 uint16
|
|
||||||
Unk6 uint8
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Opcode returns the ID associated with this packet type.
|
// Opcode returns the ID associated with this packet type.
|
||||||
@@ -31,11 +27,12 @@ func (m *MsgMhfUpdateBeatLevel) Parse(bf *byteframe.ByteFrame, ctx *clientctx.Cl
|
|||||||
m.AckHandle = bf.ReadUint32()
|
m.AckHandle = bf.ReadUint32()
|
||||||
m.Unk1 = bf.ReadUint32()
|
m.Unk1 = bf.ReadUint32()
|
||||||
m.Unk2 = bf.ReadUint32()
|
m.Unk2 = bf.ReadUint32()
|
||||||
m.MonsterData = bf.ReadBytes(uint(120))
|
for i := 0; i < 16; i++ {
|
||||||
m.Unk3 = bf.ReadUint8()
|
m.Data1 = append(m.Data1, bf.ReadInt32())
|
||||||
m.Unk4 = bf.ReadUint32()
|
}
|
||||||
m.Unk5 = bf.ReadUint16()
|
for i := 0; i < 16; i++ {
|
||||||
m.Unk6 = bf.ReadUint8()
|
m.Data2 = append(m.Data2, bf.ReadInt32())
|
||||||
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user