Added 0x6c to the actorIdChanger. Mount appearance is now broadcast to show Goobbue. Equipment packets implemented as well as Equipment object.

This commit is contained in:
Filip Maj
2016-02-20 16:51:35 -05:00
parent a47d5f96a5
commit b7fd3e442c
9 changed files with 194 additions and 290 deletions

View File

@@ -581,12 +581,12 @@ namespace FFXIVClassic_Map_Server.Actors
public void sendChocoboAppearance()
{
queuePacket(SetCurrentMountChocoboPacket.buildPacket(actorId, chocoboAppearance));
broadcastPacket(SetCurrentMountChocoboPacket.buildPacket(actorId, chocoboAppearance), true);
}
public void sendGoobbueAppearance()
{
queuePacket(SetCurrentMountGoobbuePacket.buildPacket(actorId, 1));
broadcastPacket(SetCurrentMountGoobbuePacket.buildPacket(actorId, 1), true);
}
public void setMountState(byte mountState)