 |
Cheat Engine The Official Site of Cheat Engine
|
| View previous topic :: View next topic |
| Author |
Message |
KalasDev Master Cheater
Reputation: 1
Joined: 29 May 2016 Posts: 311
|
Posted: Thu Aug 24, 2017 12:29 pm Post subject: Set Desired Value |
|
|
Hello, I wanted to know since I forgot how can I manually choose my value for example in this code:
| Code: | { Game : RememberMe.exe
Version:
Date : 2017-08-24
Author : Kalas
This script does blah blah blah
}
[ENABLE]
aobscanmodule(AddEMPAOB,RememberMe.exe,01 8E E0 00 00 00)
alloc(newmem,$100,AddEMPAOB)
label(code)
label(return)
newmem:
code:
add [esi+000000E0],ecx
jmp return
AddEMPAOB:
jmp newmem
nop
return:
registersymbol(AddEMPAOB)
[DISABLE]
AddEMPAOB:
db 01 8E E0 00 00 00
unregistersymbol(AddEMPAOB)
dealloc(newmem) |
Basically I want to make a Script where I can assign it outside of the script and let's say add 5,000, but so I can change the value through an address. I assume dq?
|
|
| Back to top |
|
 |
OldCheatEngineUser Whateven rank
Reputation: 20
Joined: 01 Feb 2016 Posts: 1586
|
Posted: Thu Aug 24, 2017 12:56 pm Post subject: |
|
|
| Code: | [ENABLE]
aobscanmodule(AddEMPAOB,RememberMe.exe,01 8E E0 00 00 00)
alloc(newmem,$100,AddEMPAOB)
alloc(newaddress,04)
registersymbol(newaddress)
label(code)
label(return)
newmem:
push eax
lea eax,[esi+000000E0]
mov [newaddress],eax
pop eax
code:
add [esi+000000E0],ecx
jmp return
newaddress:
dd 00
AddEMPAOB:
jmp newmem
nop
return:
registersymbol(AddEMPAOB)
[DISABLE]
AddEMPAOB:
db 01 8E E0 00 00 00
unregistersymbol(newaddress)
unregistersymbol(AddEMPAOB)
dealloc(newaddress)
dealloc(newmem) |
add newaddress to address-list as 4 byte.
_________________
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 |
|
 |
KalasDev Master Cheater
Reputation: 1
Joined: 29 May 2016 Posts: 311
|
Posted: Thu Aug 24, 2017 1:09 pm Post subject: |
|
|
Hey, thank you for the reply
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
|