View previous topic :: View next topic |
Author |
Message |
KevinD Cheater
Reputation: 0
Joined: 15 Apr 2020 Posts: 39
|
Posted: Thu Nov 21, 2024 7:14 am Post subject: Alternative to mov for a memory address? |
|
|
Example : mov teste.exe.exe+1FC9DFE,[rdx] (Does not work )
I have the following message : I don't understand what you mean with mov mov teste.exe.exe+1FC9DFE,[rdx] (Does not work )
On the other hand, the reverse works : mov ecx,teste.exe.exe+1FC9DFE
Hello, I looked at the documentation and it says that a memory address can take MOV into account. And on Cheat engine it doesn't work. How can I make a MOV on an address? |
|
Back to top |
|
 |
Game Hacking Dojo Master Cheater
Reputation: 1
Joined: 17 Sep 2023 Posts: 250
|
Posted: Thu Nov 21, 2024 7:27 am Post subject: |
|
|
That's not how computers work.
I suppose you have an address in your cheat table and you want to write something to its value.
the code should look like this
Code: | push rax
mov rax,[rdx]
mov [teste.exe.exe+1FC9DFE],rax
pop rax |
Last edited by Game Hacking Dojo on Thu Nov 21, 2024 8:54 am; edited 1 time in total |
|
Back to top |
|
 |
KevinD Cheater
Reputation: 0
Joined: 15 Apr 2020 Posts: 39
|
Posted: Thu Nov 21, 2024 7:35 am Post subject: |
|
|
Thank you very much Game Hacking Dojo. In fact it was necessary to remove the hooks on rbx. And put the square brackets on the memory address  |
|
Back to top |
|
 |
|