| View previous topic :: View next topic |
| Author |
Message |
z13swee Newbie cheater
Reputation: 0
Joined: 12 Mar 2017 Posts: 12
|
Posted: Wed Oct 25, 2017 1:51 pm Post subject: find what access a function with argument? |
|
|
I have found this function that removes health from player. But how can i found what code that access this function with argument?
I have tried adding the address for the first instruction ( push ecx ), and doing pointer search and "what access this address", but nothing comes up  |
|
| Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Wed Oct 25, 2017 5:32 pm Post subject: |
|
|
Right-click and break and trace.
You can see where the function returns.
Scroll up one and there's the call. |
|
| Back to top |
|
 |
OldCheatEngineUser Whateven rank
Reputation: 20
Joined: 01 Feb 2016 Posts: 1586
|
Posted: Wed Oct 25, 2017 6:23 pm Post subject: Re: find what access a function with argument? |
|
|
| z13swee wrote: | I have found this function that removes health from player. But how can i found what code that access this function with argument?
I have tried adding the address for the first instruction ( push ecx ), and doing pointer search and "what access this address", but nothing comes up  |
- you won't find many instructions accessing other instructions so much, its not something commonly happen.
- usually games that have anti cheats have this type of accessing (instruction accessing instruction)
- of course you will find nothing on push ecx, assuming xmm0 is writing to your address esp+08 then you want to see what's accessing this instruction.
- just take the address and go to hex dump, from there select the bytes then right-click and choose what you want. _________________
About Me;
I Use CE Since Version 1.X, And Still Learning How To Use It Well!
Jul 26, 2020
| STN wrote: | | i am a sweetheart. |
|
|
| Back to top |
|
 |
|