Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,8 @@ public static void HandleFeatureSystemStatus(Packet packet)
packet.ReadInt64("RedeemForBalanceAmount");
packet.ReadUInt32("BpayStorePurchaseTimeout");
packet.ReadUInt32("ClubsPresenceDelay");
packet.ReadUInt32("ClubPresenceUnsubscribeDelay");
if (ClientVersion.RemovedInVersion(ClientVersionBuild.V5_5_1_63311))
packet.ReadUInt32("ClubPresenceUnsubscribeDelay");
packet.ReadInt32("ContentSetID");

var gameRuleValuesCount = packet.ReadUInt32("GameRuleValuesCount");
Expand Down Expand Up @@ -437,7 +438,8 @@ public static void HandleFeatureSystemStatus(Packet packet)
[Parser(Opcode.SMSG_FEATURE_SYSTEM_STATUS_GLUE_SCREEN)]
public static void HandleFeatureSystemStatusGlueScreen(Packet packet)
{
packet.ReadBit("BpayStoreEnabled");
if (ClientVersion.RemovedInVersion(ClientVersionBuild.V5_5_1_63311))
packet.ReadBit("BpayStoreEnabled");
packet.ReadBit("BpayStoreAvailable");
packet.ReadBit("BpayStoreDisabledByParentalControls");
packet.ReadBit("CharUndeleteEnabled");
Expand Down Expand Up @@ -494,7 +496,8 @@ public static void HandleFeatureSystemStatusGlueScreen(Packet packet)
packet.ReadInt64("TokenBalanceAmount");
packet.ReadInt32("MaxCharactersPerRealm");
var liveRegionCharacterCopySourceRegionsCount = packet.ReadUInt32("LiveRegionCharacterCopySourceRegionsCount");
packet.ReadUInt32("BpayStoreProductDeliveryDelay");
if (ClientVersion.RemovedInVersion(ClientVersionBuild.V5_5_1_63311))
packet.ReadUInt32("BpayStoreProductDeliveryDelay");
packet.ReadInt32("ActiveCharacterUpgradeBoostType");
packet.ReadInt32("ActiveClassTrialBoostType");
packet.ReadInt32("MinimumExpansionLevel");
Expand Down
18 changes: 14 additions & 4 deletions WowPacketParserModule.V5_5_0_61735/Parser/MovementHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,20 @@ public static void ReadMovementSpline(Packet packet, Vector3 pos, params object[

if (hasAnimTier)
{
packet.ReadInt32("TierTransitionID", indexes);
packet.ReadUInt32("StartTime", indexes);
packet.ReadUInt32("EndTime", indexes);
packet.ReadByte("AnimTier", indexes);
if (ClientVersion.AddedInVersion(ClientVersionBuild.V5_5_1_63311))
{
packet.ReadInt32("TierTransitionID", indexes);
packet.ReadByte("AnimTier", indexes);
packet.ReadUInt32("StartTime", indexes);
packet.ReadUInt32("EndTime", indexes);
}
else
{
packet.ReadInt32("TierTransitionID", indexes);
packet.ReadUInt32("StartTime", indexes);
packet.ReadUInt32("EndTime", indexes);
packet.ReadByte("AnimTier", indexes);
}
}

if (endpos.X != 0 && endpos.Y != 0 && endpos.Z != 0)
Expand Down