Getting Base Address

Posts 12 of 2 · Page 1 of 1
Getting Base Address
So i have a multi level pointer for a game, and i need to get the base address but have no idea how.
How do i get this:
Code:
"DunDefGame.exe"+00E06FE4
To my base address so i can find the address of the value i need to edit?
Here is your answer
Quote Originally Posted by xRemy View Post
So i have a multi level pointer for a game, and i need to get the base address but have no idea how.
How do i get this:
Code:
"DunDefGame.exe"+00E06FE4
To my base address so i can find the address of the value i need to edit?

Simply do like this :


Code:
Dim yourgamebaseaddress as integer
Dim DunDefGame as process = process.getprocessesbyname("DunDefGame.exe")(0)

for each  PP as system.Diagnostics.ProcessModule in DunDefGame.Modules

if PP.Filename.contains("DunDefGame.exe") then

yourgamebaseaddress  = PP.Baseaddress ' or you can call it like this Hex(PP.Baseaddress)

Next
if you are facing any other problem , just ask me on skype ^^
Posts 12 of 2 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?