View previous topic :: View next topic |
Author |
Message |
nospamforme9 How do I cheat?
Reputation: 0
Joined: 26 Jun 2011 Posts: 4
|
Posted: Sat Jul 16, 2011 12:16 pm Post subject: Breakpoint Condition |
|
|
Hello,
I can use an easy breakpoint condition perfectly fine. For example "EAX == 0x00000000".
Now I'd like to break on 2 conditions. For example "EAX == 0x00000000" and "CL = 0x01".
I tried to put both lines in the complex breakpoint condition box, but it doesn't work.
How can I make this work?
Thanks
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Sat Jul 16, 2011 2:35 pm Post subject: |
|
|
it doesn't know CL, but it does know ECX , ECX % 256 should return the CL value
_________________
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 |
|
 |
nospamforme9 How do I cheat?
Reputation: 0
Joined: 26 Jun 2011 Posts: 4
|
Posted: Sat Jul 16, 2011 6:56 pm Post subject: |
|
|
Thanks Dark Byte. That helped, but it didn't fully solve my problem.
When I use for example "ECX % 256 == 0x06" or any other simple condition in the simple condition box it works fine.
When I put thesame condition in the complex condition box it doesn't work.
What I'm trying to do is break on 2 conditions. Seperately they work in the easy condition box. But I'd like to put them together.
if (condition1 AND condition2) break
Thx again
PS: If documentation about this exists, please refer me to it.
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Sat Jul 16, 2011 7:19 pm Post subject: |
|
|
braces can help
try : ((condition1) and ((ECX % 256) == 0x06))
in math the and operator is always evaluated before most other things, which can cause confusion if the brackets are set at the wrong spot
_________________
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 |
|
 |
|