Implemented countdowns.

This commit is contained in:
Filip Maj 2017-10-01 12:39:46 -04:00
parent 58334a0e5f
commit 441c1a6383
5 changed files with 42 additions and 5 deletions

View file

@ -0,0 +1,30 @@
using System;
using System.IO;
namespace FFXIVClassic_Map_Server.packets.receive
{
class CountdownRequestPacket
{
public bool invalidPacket = false;
public byte countdownLength;
public ulong syncTime;
public CountdownRequestPacket(byte[] data)
{
using (MemoryStream mem = new MemoryStream(data))
{
using (BinaryReader binReader = new BinaryReader(mem))
{
try{
countdownLength = binReader.ReadByte();
binReader.BaseStream.Seek(8, SeekOrigin.Begin);
syncTime = binReader.ReadUInt64();
}
catch (Exception){
invalidPacket = true;
}
}
}
}
}
}