Function meaning

06/14/2021 20:49 mildegusti#1
Hi guys , so i found this code:
Code:
PythonNetworkStream::SendCharacterStatePacket(const TPixelPosition& c_rkPPosDst, float fDstRot, UINT eFunc, UINT uArg)
and i dont understand how to get or what is referencing the code in the brackets could someone please PLEASE explain it ?
06/14/2021 22:05 HelloBrightness#2
Quote:
Originally Posted by mildegusti View Post
Hi guys , so i found this code:
Code:
PythonNetworkStream::SendCharacterStatePacket(const TPixelPosition& c_rkPPosDst, float fDstRot, UINT eFunc, UINT uArg)
and i dont understand how to get or what is referencing the code in the brackets could someone please PLEASE explain it ?
What is the Question?
06/14/2021 23:29 Aeryas#3
If you ask what the TPixelPosition is, it's a simple struct reference of a 3d vector. You can simply pass a 3d vector as the arg there and that's it. The rest of the args are self explanatory.

Tip: sniff packets and you'll see what is what.
06/15/2021 18:10 mildegusti#4
(const TPixelPosition& c_rkPPosDst, float fDstRot, UINT eFunc, UINT uArg) WHAT ARE THOOOOOOOOOOOSE