Help [HELP] Rotation Forward

AHKprofi

New member
Joined
Aug 14, 2014
Messages
2
Reaction score
0
HEEY :)

i try to make a teleport hack with autohotkey..

when i will teleport forward, it teleports me to north side. -> backward

mycode:

Code:
SetPos(x, y, z){

     If(!checkHandles())
        return false

    dwCPedPtr := readDWORD(hGTA, ADDR_CPED_PTR) // player pointer CPED
    dwMatrix := readDWORD(hGTA, dwCPedPtr + 0x14)  // matrix
    writeMem(hGTA, dwMatrix + 0x30, X, 4, "float") // X
    writeMem(hGTA, dwMatrix + 0x34, Y, 4, "float") // Y
    writeMem(hGTA, dwMatrix + 0x38, Z, 4, "float") // Z
}


i know there are not many people works with  autohotkey.

how to fix this shit?

i hope i find help :) // im german..

:bawww:
 
Top