| View previous topic :: View next topic |
| Author |
Message |
johnsnow How do I cheat?
Reputation: 0
Joined: 24 Aug 2017 Posts: 1
|
Posted: Thu Aug 24, 2017 8:17 am Post subject: Issues while creating a script |
|
|
Hi there,
i'm trying to hack a game, and the code i need to modify is this:
| Code: | originalcode:
mov [rbx+r9*4],r11d
ret
|
this is the code used for subtract the money when i buy new stuff.
I've tryied to use
| Code: |
mov r11d,[rbx+r9*4] |
But the game crashes
Why?
|
|
| Back to top |
|
 |
OldCheatEngineUser Whateven rank
Reputation: 20
Joined: 01 Feb 2016 Posts: 1586
|
Posted: Thu Aug 24, 2017 8:35 am Post subject: |
|
|
try this: (part of my script for some game)
| Code: | movsx r11d,dword ptr [rbx+r9*4] // you can use "word ptr"
mov [rbx+r9*4],r11d
ret |
_________________
About Me;
I Use CE Since Version 1.X, And Still Learning How To Use It Well!
Jul 26, 2020
| STN wrote: | | i am a sweetheart. |
|
|
| Back to top |
|
 |
|