View previous topic :: View next topic |
Author |
Message |
btd5 Cheater
Reputation: 0
Joined: 05 Feb 2016 Posts: 40
|
Posted: Tue Dec 08, 2020 6:36 pm Post subject: Brake and Trace |
|
|
Ok i have a problem. I found shared instruction which contains hp,xp,money and other stuff im not interested in. Problem is that when i brake, trace always take me to money. I tried with breakpoint list but it does same as without. Money is stored as double in xmm register. I tooked hp adress did readDouble(0x?????????)==????? also with RBX==(0x???????) and nothing worked. Any ideas?
Btw money script work well so idk why i cant find other stuff. Game is writen in unity.
thanks.
edit- ok i notice when i brake and press run whole registers and xmm register change on same adress if that helps. I have no idea why if someone can explain.
|
|
Back to top |
|
 |
Csimbi I post too much
Reputation: 97
Joined: 14 Jul 2007 Posts: 3305
|
Posted: Wed Dec 09, 2020 10:46 am Post subject: |
|
|
Set a break condition so it breaks only on the address you want.
|
|
Back to top |
|
 |
btd5 Cheater
Reputation: 0
Joined: 05 Feb 2016 Posts: 40
|
Posted: Wed Dec 09, 2020 12:28 pm Post subject: |
|
|
If u mean that breakpoint condition i already try it. But i already described up. I use different adresses (hp,money,xp), it does not matter which one, result always lead to same brake and this is money instruction so im not sure how to find others.
so i already tried with breakpoint readDouble(0x????????)==?? and RBX==(0x????????),RAX==(0x????????) and also with readInteger(RBX+28)==0x???????? but nothing seem to work. Meaby i break at wrong adress
Description: |
those 2 instructions pop up when i effect my hp |
|
Filesize: |
2.05 KB |
Viewed: |
2831 Time(s) |

|
Description: |
|
Filesize: |
12.07 KB |
Viewed: |
2834 Time(s) |

|
|
|
Back to top |
|
 |
Csimbi I post too much
Reputation: 97
Joined: 14 Jul 2007 Posts: 3305
|
Posted: Wed Dec 09, 2020 1:10 pm Post subject: |
|
|
To break there, you need RBX==0x1234.
If the same instruction reads hp, money, xp, RBX must be different.
|
|
Back to top |
|
 |
btd5 Cheater
Reputation: 0
Joined: 05 Feb 2016 Posts: 40
|
Posted: Thu Dec 10, 2020 4:06 pm Post subject: |
|
|
Hey i tried with RBX==0x2A1C07D34D8 and also readDouble(0x2A1C07D34D8) again but still doesnt want to break no matter if i take hit or just idling in game. A also checked game structure of rbx and hp isnt there.
I will still try with trace. Thanks.
Description: |
|
Filesize: |
22.93 KB |
Viewed: |
2789 Time(s) |

|
Description: |
|
Filesize: |
10.96 KB |
Viewed: |
2789 Time(s) |

|
|
|
Back to top |
|
 |
Csimbi I post too much
Reputation: 97
Joined: 14 Jul 2007 Posts: 3305
|
Posted: Fri Dec 11, 2020 4:18 am Post subject: |
|
|
btd5 wrote: | Hey i tried with RBX==0x2A1C07D34D8 |
Your RBX is different on the pic, so I guess your break condition is wrong.
|
|
Back to top |
|
 |
btd5 Cheater
Reputation: 0
Joined: 05 Feb 2016 Posts: 40
|
Posted: Fri Dec 11, 2020 5:26 pm Post subject: |
|
|
[quote="Csimbi"][quote="btd5"]Hey i tried with RBX==0x2A1C07D34D8 [/quote]
Your RBX is different on the pic, so I guess your break condition is wrong.[/quote]
Like u said, wrong break condition. Thx
|
|
Back to top |
|
 |
|