Anyone able to get running speed hack working? I found these code
and speed1 (in the picture) writes to X,Y,Z velocity memory location (confirmed by locking it and not able to move toward certain direction). was able to make a crappy speedhack that can only be activated by jumping/being in the air, and it is janky as hell.
It seems like 1.05 multiplier is really fast. I did not increase the speed of the Z axis (the 2nd float):
dd (float)X (float)Z (float)Y (float)not sure what this is
Also did the same for 0F 11 80 B0 00 00 00 80
Code: Select all
aobscanmodule(INJECT,afop.exe,44 0F 11 9F B0 00 00 00 75) // should be unique
alloc(newmem,$1000,INJECT)
alloc(speedmulti,16,INJECT)
speedmulti:
dd (float)1.05 (float)1 (float)1.05 (float)1
label(code)
label(return)
newmem:
mulps xmm11, [speedmulti]
code:
movups [rdi+000000B0],xmm11
jmp return
INJECT:
jmp newmem
nop 3
return:
registersymbol(INJECT)