File tree Expand file tree Collapse file tree
WowPacketParserModule.V3_4_0_45166/Parsers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1334,6 +1334,25 @@ public static void HandleResumeCast(Packet packet)
13341334 packet . ReadInt32 < SpellId > ( "SpellID" ) ;
13351335 }
13361336
1337+ [ Parser ( Opcode . SMSG_RESUME_CAST_BAR ) ]
1338+ public static void HandleResumeCastBar ( Packet packet )
1339+ {
1340+ packet . ReadPackedGuid128 ( "Guid" ) ;
1341+ packet . ReadPackedGuid128 ( "Target" ) ;
1342+
1343+ packet . ReadUInt32 < SpellId > ( "SpellID" ) ;
1344+ packet . ReadInt32 ( "SpellXSpellVisualID" ) ;
1345+ packet . ReadUInt32 ( "TimeRemaining" ) ;
1346+ packet . ReadUInt32 ( "TotalTime" ) ;
1347+
1348+ var result = packet . ReadBit ( "HasInterruptImmunities" ) ;
1349+ if ( result )
1350+ {
1351+ packet . ReadUInt32 ( "SchoolImmunities" ) ;
1352+ packet . ReadUInt32 ( "Immunities" ) ;
1353+ }
1354+ }
1355+
13371356 [ Parser ( Opcode . SMSG_ON_CANCEL_EXPECTED_RIDE_VEHICLE_AURA , ClientVersionBuild . V3_4_4_59817 ) ]
13381357 [ Parser ( Opcode . CMSG_CANCEL_AUTO_REPEAT_SPELL , ClientVersionBuild . V3_4_4_59817 ) ]
13391358 [ Parser ( Opcode . CMSG_CANCEL_GROWTH_AURA , ClientVersionBuild . V3_4_4_59817 ) ]
You can’t perform that action at this time.
0 commit comments