Hondacrx
2024-08-24 00:13:35 -04:00
parent ce99a1f7f6
commit 1ca497b79f
27 changed files with 3020 additions and 2701 deletions
@@ -1286,13 +1286,19 @@ namespace Game.Networking.Packets
public override void Write()
{
_worldPacket.WriteInt64(TotalTime);
_worldPacket.WriteInt64(TimeLeft);
_worldPacket.WriteInt32((int)Type);
_worldPacket.WriteInt64(TimeLeft);
_worldPacket.WriteBit(PlayerGuid.HasValue);
_worldPacket.FlushBits();
if (PlayerGuid.HasValue)
_worldPacket.WritePackedGuid(PlayerGuid.Value);
}
public long TotalTime;
public long TimeLeft;
public CountdownTimerType Type;
public ObjectGuid? PlayerGuid;
}
class QueryCountdownTimer : ClientPacket