this is an issue that might not take longer than a few seconds for a trained pair of eyes to find, but here's what I am currently stuck with:
I want to change my character's name, and I want to re-find my address with an array of bytes. I found a unique signature that returns only one result after each game restart.
The problem is writing a script and dropping the appropriate address into a label that I can re-use if I add it manually to CE.
I followed a video tutorial that showed a working script for the exact thing I'm trying to accomplish, but in my case, Cheat Engine freezes and shuts down. When I manually scan for the aob signature, then I get one result succesfully, after about 2 seconds of total scan time.
Code: Select all
[ENABLE]
aobscan(INJECT,7A 01 00 00 00 00 00 A4 17 00 00 ?? ?? ?? ?? 01 00 00 00 00 00 00 00 00 00 00 00 ?? FB 2B 03 00 00 00 00 00 13 4A 4D 00 13 4A 4D 00 2D 00 00 00) // should be unique
label(name)
registersymbol(name)
INJECT:
name:
//I'm unsure about this part, but it seemed to work in the video.
registersymbol(INJECT) //tutorial did not register his AOB Symbol, but I tried both with and without, no success.
[DISABLE]
unregistersymbol(name)
unregistersymbol(INJECT)