View previous topic :: View next topic |
Author |
Message |
kitesan Expert Cheater
Reputation: 0
Joined: 01 May 2014 Posts: 124
|
Posted: Sun Feb 01, 2015 5:12 am Post subject: HELP asm question |
|
|
Hello, I'm trying to do this:
cmp rcx,1455BF407
but when i make this, the debugger cuts one digit:
cmp rcx,455BF407
why? how do i fix that?
I'm trying to compare the address inside rcx with mine
Last edited by kitesan on Mon Feb 02, 2015 2:13 pm; edited 1 time in total |
|
Back to top |
|
 |
kitesan Expert Cheater
Reputation: 0
Joined: 01 May 2014 Posts: 124
|
Posted: Mon Feb 02, 2015 2:13 pm Post subject: |
|
|
help please!
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Mon Feb 02, 2015 2:18 pm Post subject: |
|
|
Code: |
push rax
mov rax,1455BF407
cmp rcx, rax
pop rax
|
or cmp rcx, [addressthatholdsthevalue1455bf407]
and make sure addressthatholdsthevalue1455bf407 is nearby the cmp instruction
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
kitesan Expert Cheater
Reputation: 0
Joined: 01 May 2014 Posts: 124
|
Posted: Tue Feb 03, 2015 2:54 pm Post subject: |
|
|
thanks alot
|
|
Back to top |
|
 |
|