Implement the actor initial position packet and set state packet.

This commit is contained in:
Filip Maj 2015-10-06 23:08:40 -04:00
parent af2262c4b1
commit 327dfc656b
5 changed files with 40 additions and 10 deletions

View file

@ -92,5 +92,15 @@ namespace FFXIVClassic_Map_Server.dataobjects
return setappearance.buildPacket(playerActorID, actorID);
}
public SubPacket createStatePacket(uint playerActorID)
{
return SetActorStatePacket.buildPacket(playerActorID, actorID, SetActorStatePacket.STATE_PASSIVE);
}
public SubPacket createSpeedPacket(uint playerActorID)
{
return SetActorSpeedPacket.buildPacket(playerActorID, actorID);
}
}
}