View previous topic :: View next topic |
Author |
Message |
zakusa Cheater
Reputation: 0
Joined: 09 Sep 2015 Posts: 48
|
Posted: Wed Oct 07, 2015 12:14 am Post subject: Help with pointer address |
|
|
Hi, I need help I have been stuck on pointer address for like a week and I can't find any c++ script on Google ya so I have 6 offsets(NOT 2) I has a static offset I think it's called its liek game+01B741A. How would I use that in c++ plz create a script for me so I can learn from it and so I can stop wasting time searching it up on google because it's not helping I see many scripts but editing it doesn't work for me it gives me wrong value always
|
|
Back to top |
|
 |
ulysse31 Master Cheater
Reputation: 2
Joined: 19 Mar 2015 Posts: 324 Location: Paris
|
Posted: Wed Oct 07, 2015 5:58 am Post subject: |
|
|
Noone helps people that expect a simple please to make others do their bidding.
By now you should start to get your threads deleted
|
|
Back to top |
|
 |
STN I post too much
Reputation: 43
Joined: 09 Nov 2005 Posts: 2676
|
Posted: Wed Oct 07, 2015 12:03 pm Post subject: |
|
|
huh had a feeling it was something simpler than kernel virtualization (wonder where did you even learn that word ? )
Its simple
Fetch the base address or the static offset (according to your wording) game+01B741A. You do that by finding the base address of the game module "game.exe" or whatever CE is showing you then simply add offsets to it until you reach your pointer address exactly how CE does.
Example, my game name is denuvo.dll, CE shows my static offset is denuvo.dll+092ACE
I find the base address of denuvo.dll first in my c++ code ( using CreateToolHelpSnapshot32 APIs, search this forum for examples) which gives me the DLLBase.
I then start adding my offsets to DLLBase until i reach the final offset to my health address e.g
DLLBase = DLLBase + 092ACE
DLLBase = DLLBase + OFFSET1
DLLBase = DLLBase OFFSETLAST
and there i have my health address in DLLBase variable or whatever other variable i choose.
If this is not making sense, read Code Shifting tutorials (preferably by spookie). It shows how to grab base address of a module and use offsets.
_________________
|
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Wed Oct 07, 2015 12:41 pm Post subject: |
|
|
Given that you have shown you are making no attempt to search the forums here or really actually Google, I am just going to lock your topics. You are doing nothing but begging for code / having someone do it for you. This exact question is asked nearly twice a week and is answered in tons of other topics. There are so many different code examples that show how to do this on this forum alone.
Take the time to actually look and learn what you are doing rather then beg for code in every topic you post.
Locked.
_________________
- Retired. |
|
Back to top |
|
 |
|