I found some mistakes in the Entity header file.
- Line 69 isn't autosend. It is a EntityUniqueID as of 00A11AEA. The function that calls the EntityUniqueID asks for a long long; this can't be possible as of its size (see https://msdn.microsoft.com/en-us/library/s3f49ktz.aspx). A long long's size is 8, while the struct member's size is 4. In conclusion, it is a
long entityUniqueId;.
- Line 98 is a
bool changed; as of 00A118A8 (Entity::setChanged).
- Line 100 isn't
bool global;. bool global; is at 369 as of 00A13B0C (Entity::setGlobal)
I found some mistakes in the Entity header file.
long entityUniqueId;.bool changed;as of 00A118A8 (Entity::setChanged).bool global;.bool global;is at 369 as of 00A13B0C (Entity::setGlobal)