|
|
|
@ -216,6 +216,7 @@ void PacketRecordDynamic::Packet(RakNet::BitStream *bs, bool send)
|
|
|
|
|
RW(recordData.mData.mMana, send);
|
|
|
|
|
RW(recordData.mData.mFatigue, send);
|
|
|
|
|
RW(recordData.mAiData.mFight, send);
|
|
|
|
|
RW(recordData.mAiData.mServices, send);
|
|
|
|
|
RW(recordData.mFlags, send);
|
|
|
|
|
RW(recordData.mScript, send, true);
|
|
|
|
|
ProcessInventoryList(record.inventory, recordData.mInventory, send);
|
|
|
|
@ -231,6 +232,7 @@ void PacketRecordDynamic::Packet(RakNet::BitStream *bs, bool send)
|
|
|
|
|
RW(overrides.hasMagicka, send);
|
|
|
|
|
RW(overrides.hasFatigue, send);
|
|
|
|
|
RW(overrides.hasAiFight, send);
|
|
|
|
|
RW(overrides.hasAiServices, send);
|
|
|
|
|
RW(overrides.hasFlags, send);
|
|
|
|
|
RW(overrides.hasScript, send);
|
|
|
|
|
RW(overrides.hasInventory, send);
|
|
|
|
@ -260,6 +262,8 @@ void PacketRecordDynamic::Packet(RakNet::BitStream *bs, bool send)
|
|
|
|
|
RW(recordData.mNpdt.mMana, send);
|
|
|
|
|
RW(recordData.mNpdt.mFatigue, send);
|
|
|
|
|
RW(recordData.mAiData.mFight, send);
|
|
|
|
|
RW(recordData.mAiData.mServices, send);
|
|
|
|
|
|
|
|
|
|
RW(recordData.mNpdtType, send);
|
|
|
|
|
ProcessInventoryList(record.inventory, recordData.mInventory, send);
|
|
|
|
|
|
|
|
|
@ -279,6 +283,7 @@ void PacketRecordDynamic::Packet(RakNet::BitStream *bs, bool send)
|
|
|
|
|
RW(overrides.hasMagicka, send);
|
|
|
|
|
RW(overrides.hasFatigue, send);
|
|
|
|
|
RW(overrides.hasAiFight, send);
|
|
|
|
|
RW(overrides.hasAiServices, send);
|
|
|
|
|
RW(overrides.hasAutoCalc, send);
|
|
|
|
|
RW(overrides.hasInventory, send);
|
|
|
|
|
}
|
|
|
|
|