2015-10-16 21:30:49 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace FFXIVClassic_Map_Server.packets.send.script
|
|
|
|
|
{
|
|
|
|
|
class CommandStartRequestPacket
|
|
|
|
|
{
|
2015-11-27 00:42:35 -05:00
|
|
|
|
public const ushort OPCODE = 0x012E;
|
|
|
|
|
public const uint PACKET_SIZE = 0x78;
|
|
|
|
|
|
|
|
|
|
public bool invalidPacket = false;
|
2015-10-16 21:30:49 -04:00
|
|
|
|
|
|
|
|
|
public uint actorID;
|
|
|
|
|
public uint scriptOwnerActorID;
|
|
|
|
|
public uint val1;
|
|
|
|
|
public uint val2;
|
2015-11-27 00:42:35 -05:00
|
|
|
|
public ScriptParamReader reader;
|
2015-10-16 21:30:49 -04:00
|
|
|
|
|
|
|
|
|
public CommandStartRequestPacket(byte[] data)
|
|
|
|
|
{
|
|
|
|
|
using (MemoryStream mem = new MemoryStream(data))
|
|
|
|
|
{
|
|
|
|
|
using (BinaryReader binReader = new BinaryReader(mem))
|
|
|
|
|
{
|
|
|
|
|
try{
|
|
|
|
|
actorID = binReader.ReadUInt32();
|
|
|
|
|
scriptOwnerActorID = binReader.ReadUInt32();
|
|
|
|
|
val1 = binReader.ReadUInt32();
|
|
|
|
|
val2 = binReader.ReadUInt32();
|
|
|
|
|
binReader.ReadByte();
|
|
|
|
|
|
2015-11-27 00:42:35 -05:00
|
|
|
|
binReader.BaseStream.Seek(0x31, SeekOrigin.Begin);
|
|
|
|
|
reader = new ScriptParamReader(binReader);
|
2015-10-16 21:30:49 -04:00
|
|
|
|
}
|
|
|
|
|
catch (Exception){
|
|
|
|
|
invalidPacket = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|