mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-09 05:54:50 +02:00
Fixed music packet, no longer hard coded. Added setTarget, lockOn, and startScript packets. Console window has quieted down woo!
This commit is contained in:
parent
a4d050b3be
commit
29f030eddb
8 changed files with 161 additions and 11 deletions
36
FFXIVClassic Map Server/packets/receive/StartScriptPacket.cs
Normal file
36
FFXIVClassic Map Server/packets/receive/StartScriptPacket.cs
Normal file
|
@ -0,0 +1,36 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue