| View previous topic :: View next topic |
| Author |
Message |
xela1103 How do I cheat?
Reputation: 0
Joined: 21 Oct 2022 Posts: 2
|
Posted: Fri Oct 21, 2022 3:21 am Post subject: script that modifies the value of the money of your choice |
|
|
hi, i would like to create a script that modifies the value of the money of my choice,after changing the value I want it to remain locked, can someone help me? .thanks
I place everything you need
the address is dynamic:
03CAA1D4
what is written in this address:
05C38F6A - 89 41 10 - mov [ecx + 10], eax
|
|
| Back to top |
|
 |
LeFiXER Grandmaster Cheater Supreme
Reputation: 20
Joined: 02 Sep 2011 Posts: 1069 Location: 0x90
|
Posted: Fri Oct 21, 2022 5:02 am Post subject: |
|
|
You can use the AOB injection template and do something like this:
| Code: |
...
alloc(my_money,4)
registersymbol(my_money)
my_money:
dd (int)99999
newmem:
mov eax,[my_money]
originalcode:
mov [ecx+10],eax
...
[DISABLE]
...
unregistersymbol(my_money)
...
|
... represents omitted code from the generated template/game code
You can change the value under the label my_money
|
|
| Back to top |
|
 |
xela1103 How do I cheat?
Reputation: 0
Joined: 21 Oct 2022 Posts: 2
|
Posted: Fri Oct 21, 2022 6:57 pm Post subject: |
|
|
hello, first of all thanks for the reply.
i am not familiar with cheat engine, how should i enter this code?
I'm sorry but I've been using it for a short time. I await an answer
|
|
| Back to top |
|
 |
cooleko Grandmaster Cheater
Reputation: 11
Joined: 04 May 2016 Posts: 717
|
Posted: Sat Oct 22, 2022 3:58 am Post subject: |
|
|
Select that line of code in the memory viewer, select auto assemble, and then select AOB template (from memory so not all words will be exact).
Then change the code as directed in the original reply by LeFIXER. When you get the chance, do the cheat engine tutorial by attaching cheat engine to itself.
|
|
| Back to top |
|
 |
|