Results 1 to 4 of 4
  1. #1
    Ucozol's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Germany
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Cool

    Using CE Pointers with Jorndel's class

    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)

  2. #2
    infidel_'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    blah
    Posts
    184
    Reputation
    10
    Thanks
    138
    My Mood
    Twisted
    convert2dec

  3. #3
    rileyjstrickland's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Florida
    Posts
    649
    Reputation
    90
    Thanks
    4,008
    My Mood
    Relaxed
    Quote Originally Posted by Ucozol View Post
    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.

    If You Like My Releases, Hit The Thanks button!
    Follow the rules.

    Successful Purchases: 2
    @The403
    @sundy42
    Successful Sales: 1
    @wZ. Gali
    Scammed: 1

    Favorite Quotes:
    Quote Originally Posted by Doc View Post
    Who cares about simplified mandarin. The only problem here is that Cantonese (and Hokkien) is no longer being taught, but guess what, times change. There have been thousands of languages that have been lost to the ages, you'd be pissing in the wind to try and stop that.

  4. #4
    pterry005's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    0
    thank you