ascrounch How do I cheat?
Reputation: 0
Joined: 14 Dec 2013 Posts: 2
|
Posted: Sun Dec 15, 2013 9:48 am Post subject: help for memory view scripting |
|
|
hello
i'm a beginner in CE . i want to modify an adresse hexa for infinite life
when i search in memory view, the real hexa numbers for this adress are this : 8b 7e 10 89 7b 10
i need to replace it with : 89 5e 10 89 7b 10
so, manually i can do it, it works, but i want do it with a script to have a simple check box, it's easier.
so i tryed to write this :
Code: | [ENABLE]
Aobscan(_vies,8b 7e 10 89 7b 10)
label(vies)
registersymbol(vies)
_vies:
vies:
db 89 5e 10 89 7b 10
[DISABLE]
Aobscan(_vies,89 5e 10 89 7b 10)
label(vies)
registersymbol(vies)
_vies:
vies:
db 8b 7e 10 89 7b 10 |
in MEMORY VIEW, then TOOLS, and click on AUTO ASSEMBLE
but when i try to save this in "test.CT", i can only save it in "test.CEA"
how should i do the save it in the right way ? |
|