mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-07-13 15:34:42 +00:00
random values :(
This commit is contained in:
parent
868439bb21
commit
f2001dbc5f
1 changed files with 18 additions and 10 deletions
|
|
@ -14,11 +14,15 @@ final case class OutfitMemberEvent(
|
||||||
unk5: Int,
|
unk5: Int,
|
||||||
unk6: Int,
|
unk6: Int,
|
||||||
member_name: String,
|
member_name: String,
|
||||||
unk7: Int,
|
|
||||||
unk8: Int,
|
unk8: Int,
|
||||||
unk9: Int,
|
unk9: Int,
|
||||||
unk10: Int,
|
unk10: Int,
|
||||||
unk11: Int,
|
unk11: Int,
|
||||||
|
unk12: Int,
|
||||||
|
unk13: Int,
|
||||||
|
unk14: Int,
|
||||||
|
unk15: Int,
|
||||||
|
unk16: Int,
|
||||||
) extends PlanetSideGamePacket {
|
) extends PlanetSideGamePacket {
|
||||||
type Packet = OutfitMemberEvent
|
type Packet = OutfitMemberEvent
|
||||||
def opcode = GamePacketOpcode.OutfitMemberEvent
|
def opcode = GamePacketOpcode.OutfitMemberEvent
|
||||||
|
|
@ -34,19 +38,23 @@ object OutfitMemberEvent extends Marshallable[OutfitMemberEvent] {
|
||||||
("unk5" | uint8L) ::
|
("unk5" | uint8L) ::
|
||||||
("unk6" | uint8L) ::
|
("unk6" | uint8L) ::
|
||||||
("member_name" | PacketHelpers.encodedWideStringAligned(6)) ::
|
("member_name" | PacketHelpers.encodedWideStringAligned(6)) ::
|
||||||
("unk7" | uint16L) ::
|
("unk8" | uint8L) ::
|
||||||
("unk8" | uint16L) ::
|
("unk9" | uint8L) ::
|
||||||
("unk9" | uint16L) ::
|
("unk10" | uint8L) ::
|
||||||
("unk10" | uint16L) ::
|
("unk11" | uint8L) ::
|
||||||
("unk11" | uint8L)
|
("unk12" | uint8L) ::
|
||||||
|
("unk13" | uint8L) ::
|
||||||
|
("unk14" | uint8L) ::
|
||||||
|
("unk15" | uint8L) ::
|
||||||
|
("unk16" | uint8L)
|
||||||
).xmap[OutfitMemberEvent](
|
).xmap[OutfitMemberEvent](
|
||||||
{
|
{
|
||||||
case unk00 :: outfit_id :: u3 :: u4 :: u5 :: u6 :: member_name :: u7 :: u8 :: u9 :: u10 :: u11 :: HNil =>
|
case unk00 :: outfit_id :: u3 :: u4 :: u5 :: u6 :: member_name :: u8 :: u9 :: u10 :: u11 :: u12 :: u13 :: u14 :: u15 :: u16 :: HNil =>
|
||||||
OutfitMemberEvent(unk00, outfit_id, u3, u4, u5, u6, member_name, u7, u8, u9, u10, u11)
|
OutfitMemberEvent(unk00, outfit_id, u3, u4, u5, u6, member_name, u8, u9, u10, u11, u12, u13, u14, u15, u16)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
case OutfitMemberEvent(unk00, outfit_id, u3, u4, u5, u6, member_name, u7, u8, u9, u10, u11) =>
|
case OutfitMemberEvent(unk00, outfit_id, u3, u4, u5, u6, member_name, u8, u9, u10, u11, u12, u13, u14, u15, u16) =>
|
||||||
unk00 :: outfit_id :: u3 :: u4 :: u5 :: u6 :: member_name :: u7 :: u8 :: u9 :: u10 :: u11 :: HNil
|
unk00 :: outfit_id :: u3 :: u4 :: u5 :: u6 :: member_name :: u8 :: u9 :: u10 :: u11 :: u12 :: u13 :: u14 :: u15 :: u16 :: HNil
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue