Finished code to send character skill (class) info. Added parameterdata request packet that requests this info.

This commit is contained in:
Filip Maj 2016-03-19 18:43:02 -04:00
parent d2a5eaa2c8
commit 1f60bcf4fc
7 changed files with 197 additions and 6 deletions

View file

@ -12,11 +12,11 @@ namespace FFXIVClassic_Map_Server.utils
{
class ActorPropertyPacketUtil
{
Actor forActor;
uint playerActorId;
List<SubPacket> subPackets = new List<SubPacket>();
SetActorPropetyPacket currentActorPropertyPacket;
string currentTarget;
private Actor forActor;
private uint playerActorId;
private List<SubPacket> subPackets = new List<SubPacket>();
private SetActorPropetyPacket currentActorPropertyPacket;
private string currentTarget;
public ActorPropertyPacketUtil(string firstTarget, Actor forActor, uint playerActorId)
{