[DiscordArchive] You are aware that unk3 is a bit????
[DiscordArchive] You are aware that unk3 is a bit????
Archived author: MaxtorCoder • Posted: 2023-03-25T09:23:59.503000+00:00
Original source
You are aware that unk3 is a bit????
Archived author: ModoX • Posted: 2023-03-25T09:26:12.883000+00:00
Original source
i kinda remember that that packet has some string fields
Archived author: MaxtorCoder • Posted: 2023-03-25T09:26:25.609000+00:00
Original source
```
[Parser(Opcode.SMSG_REQUEST_SCHEDULED_PVP_INFO_RESPONSE)]
public static void HandleRequestScheduledPvpInfoResponse(Packet packet)
{
var hasBrawlInfo = packet.ReadBit("HasBrawlInfo");
var hasSpecialEventInfo = packet.ReadBit("HasSpecialEventInfo");
if (hasBrawlInfo)
{
packet.ReadInt32E<BrawlType>("BrawlType", "BrawlInfo");
packet.ReadInt32("Time", "BrawlInfo");
packet.ResetBitReader();
packet.ReadBit("Started", "BrawlInfo");
}
if (hasSpecialEventInfo)
{
packet.ReadInt32("PvpBrawlID", "SpecialEventInfo");
packet.ReadInt32<AchievementId>("AchievementId", "SpecialEventInfo”);
packet.ResetBitReader();
packet.ReadBit("CanQueue", "SpecialEventInfo");
}
}
```
Archived author: MaxtorCoder • Posted: 2023-03-25T09:26:36.049000+00:00
Original source
Actually it does not <@216234897390436353>
Archived author: ModoX • Posted: 2023-03-25T09:26:46.916000+00:00
Original source
last time i checked that packet was early legion
Archived author: ModoX • Posted: 2023-03-25T09:26:47.339000+00:00
Original source
xD
Archived author: MaxtorCoder • Posted: 2023-03-25T09:27:00.732000+00:00
Original source
<@1067184103335665704>
Archived author: Spence • Posted: 2023-03-25T09:28:47.079000+00:00
Original source
I'm checking there are some errors in the
Archived author: MaxtorCoder • Posted: 2023-03-25T09:28:56.644000+00:00
Original source
Well yeah
Archived author: MaxtorCoder • Posted: 2023-03-25T09:29:05.521000+00:00
Original source
You don’t have BrawlType enum in wpp