mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Random work.
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
|
||||
namespace FFXIVClassic_World_Server.Packets.WorldPackets.Receive.Group
|
||||
{
|
||||
class ModifyLinkshellPacket
|
||||
{
|
||||
public bool invalidPacket = false;
|
||||
|
||||
public ushort argCode;
|
||||
public string name;
|
||||
public ushort crestid;
|
||||
public uint master;
|
||||
|
||||
public ModifyLinkshellPacket(byte[] data)
|
||||
{
|
||||
using (MemoryStream mem = new MemoryStream(data))
|
||||
{
|
||||
using (BinaryReader binReader = new BinaryReader(mem))
|
||||
{
|
||||
try
|
||||
{
|
||||
argCode = binReader.ReadUInt16();
|
||||
|
||||
switch (argCode)
|
||||
{
|
||||
case 0:
|
||||
name = Encoding.ASCII.GetString(binReader.ReadBytes(0x20)).Trim(new[] { '\0' });
|
||||
break;
|
||||
case 1:
|
||||
crestid = binReader.ReadUInt16();
|
||||
break;
|
||||
case 2:
|
||||
master = binReader.ReadUInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
invalidPacket = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user