mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-21 20:27:47 +00:00
36 lines
926 B
C#
36 lines
926 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FFXIVClassic_Map_Server.packets.receive
|
|
{
|
|
class StartScriptPacket
|
|
{
|
|
public uint sourceActor;
|
|
public uint targetActor;
|
|
|
|
public string scriptName;
|
|
|
|
public bool invalidPacket = false;
|
|
|
|
public StartScriptPacket(byte[] data)
|
|
{
|
|
using (MemoryStream mem = new MemoryStream(data))
|
|
{
|
|
using (BinaryReader binReader = new BinaryReader(mem))
|
|
{
|
|
try{
|
|
sourceActor = binReader.ReadUInt32();
|
|
targetActor = binReader.ReadUInt32();
|
|
}
|
|
catch (Exception){
|
|
invalidPacket = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|