View previous topic :: View next topic |
Author |
Message |
kitesan Expert Cheater
Reputation: 0
Joined: 01 May 2014 Posts: 124
|
Posted: Thu Feb 26, 2015 10:24 am Post subject: [HELP] Address and Symbol |
|
|
Hello. How to move an address inside a register in a CE symbol and use that symbol as pointer of that address? example: mov MyName,rax
|
|
Back to top |
|
 |
aikoncwd Grandmaster Cheater
Reputation: 23
Joined: 21 Dec 2012 Posts: 591 Location: Spain (Barcelona)
|
Posted: Thu Feb 26, 2015 11:08 am Post subject: Re: [HELP] Address and Symbol |
|
|
kitesan wrote: | Hello. How to move an address inside a register in a CE symbol and use that symbol as pointer of that address? example: mov MyName,rax |
Code: |
label(bla)
registersymbol(bla)
code:
mov [bla],eax
bla:
dd 0
|
In you table, add a manual address like this:
Or use globalalloc():
Code: |
globalalloc(blabla,4)
mov [blabla],eax
|
Then add a "pointer":
See any of my tables (like binding of isaac rebirth), I always use globalalloc() method
_________________
Hey Hitler
Test here your skill with CheatEngine, I coded a challenge for you. Try to beat it!
HERE |
|
Back to top |
|
 |
kitesan Expert Cheater
Reputation: 0
Joined: 01 May 2014 Posts: 124
|
Posted: Thu Feb 26, 2015 11:25 am Post subject: |
|
|
thanks alot.
|
|
Back to top |
|
 |
|