Random work.

This commit is contained in:
Filip Maj
2016-12-13 15:02:28 -05:00
parent fd2df829de
commit 6c409e93a9
13 changed files with 284 additions and 115 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.IO;
namespace FFXIVClassic_World_Server.Packets.WorldPackets.Receive.Group
{
class GetGroupPacket
{
public bool invalidPacket = false;
public ulong groupId;
public GetGroupPacket(byte[] data)
{
using (MemoryStream mem = new MemoryStream(data))
{
using (BinaryReader binReader = new BinaryReader(mem))
{
try
{
groupId = binReader.ReadUInt64();
}
catch (Exception)
{
invalidPacket = true;
}
}
}
}
}
}