I want to change my virtual position using "SendCharacterStatePacket" , example range wait / pickup
but something is going wrong.
I see this when I look at the source code and I prepared a suitable asm block for it.
Code:
PythonNetworkStream::SendCharacterStatePacket(const TPixelPosition& c_rkPPosDst, float fDstRot, UINT eFunc, UINT uArg)
Code:
float mobPos[2] = { mobx, abs(moby) };
float rot = 10.f;
DWORD Adres = *(DWORD*)0x159D384; // Network Pointer
DWORD Calls = 0x04903E0; // SendCharacterStatePacket Call Address
__asm
{
mov ecx,Adres
push mobPos
push rot
push 15
push 0
call Calls
}
I am sure that netpointer is correct because I use it in many functions.






