Dim XP As IntPtr
Memory.Process_Handle("game")
XP = CInt(Process.GetProcessesByName("game")(0).MainModule.BaseAddress)
XP = Memory.ReadInteger(XP + &H811768)
XP = Memory.ReadInteger(XP + &H28)
XP = Memory.ReadInteger(XP + &H2C)
convert2dec
Originally Posted by Ucozol
Hello, I use Jorndel's memory class.
But I get another Value as in CE.
CE: 1215752191
MyProgramm: 22232208
My Code:
Code:
Dim XP As IntPtr
Memory.Process_Handle("game")
XP = CInt(Process.GetProcessesByName("game")(0).MainModule.BaseAddress)
XP = Memory.ReadInteger(XP + &H811768)
XP = Memory.ReadInteger(XP + &H28)
XP = Memory.ReadInteger(XP + &H2C)
Make sure you are putting your offsets in correctly
Other than that, we're going to need some code to view what is wrong.