| View previous topic :: View next topic |
| Author |
Message |
skillno How do I cheat?
Reputation: 0
Joined: 09 Dec 2015 Posts: 7
|
Posted: Tue Sep 01, 2020 9:18 am Post subject: Get and change the value of RAX automatically? |
|
|
Hello, i'v got this instruction (picture attachment)
Rax changes almost every frame, i want every address at Rax + 1D8 + 4 to be 0.
I tried doing mov [rax+000001D8+4],#0 in a AOB full inject script but it keeps making my game crash. It's probably not the correct way i do it x).
Anyways thanks if anyone can help.
| Description: |
|
| Filesize: |
49.5 KB |
| Viewed: |
2144 Time(s) |

|
|
|
| Back to top |
|
 |
Csimbi I post too much
Reputation: 97
Joined: 14 Jul 2007 Posts: 3329
|
Posted: Wed Sep 02, 2020 1:53 am Post subject: |
|
|
That instruction stores a double (8 bytes), not a dword (4 bytes).
So, with +4, you write half of the double.
|
|
| Back to top |
|
 |
ZeiD. Newbie cheater
Reputation: 0
Joined: 20 Jan 2019 Posts: 14 Location: Earth
|
Posted: Thu Sep 03, 2020 8:38 am Post subject: |
|
|
Try mov [rax+1DC], (double) 0
Otherwise try modifying the xmm register first and then make the necessary changes.
Here's a post that I found. "Moving Value into xmm Register" search for that title in the forums. I would have sent a link but i cannot do that yet :X
Btw, 1DC=1D8+4
_________________
I find pleasure in cheating  |
|
| Back to top |
|
 |
|