Results 21 comments of Reece Watson

~~This ends up sending a MsgNetComplaint, so does the receiver remove the complaints after they parse it? If so, where does this happen, as I only see it adding to...

`E8 ? ? ? ? E9 ? ? ? ? 41 81 3F 07 A0 CC BF` + 1 and rip seems to be the new send_invite_accepted_presence_event signature, although the...

I agree, just decided to update the signatures in case anyone still used the old method.

All figurine pickups have a check for the areas that they’re picked up in, if they’re not in the right area you get kicked, so you can check for any...

You can call the function at the 6th index of every `CEventNetworkWithData`, which copies 8 QWORDs of extra data to a pointer you specify, for this specific event, it copies...

This is the struct I was talking about: ``` struct sAmbientPickupCollectedData { _QWORD pickup_model; _QWORD value; _QWORD sender_id; _QWORD model; _QWORD unk_0x20; _QWORD unk_0x28; _QWORD unk_0x30; _QWORD unk_0x38; }; ```...

> Hooking `read_bitbuffer_into_sync_tree` and filtering from there might be better as it isn't being called twice (one by the sync hook and one by the original) and also blocks crashes...

Here's my personal netSyncTree classes, this one can be inherited by other netSyncTree variants and can be used to easily loop through data nodes. ```c++ class netSyncNodeBase { public: virtual...

I've heard of it, but I haven't experienced it myself, sorry.

Just wondering, how were you able to figure out the purpose of the offsets, as I don't see any public documentation of that node?