Results 1 to 9 of 9
  1. #1
    bartjr's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    768
    Reputation
    13
    Thanks
    259
    My Mood
    Tired

    [Need Help] Multi-Pointers

    Well I guess alot of you know about my new trainer and that im workin to fix it i got some of them working through single pointers but the others i can't get to work cause i need to make it with multi pointers i was wondering if anyone can tell me how to make it through the multi pointers and ill give +rep and thanks!

    I already know how to make level 1 pointers

  2. #2
    king.joker.9's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    In the ground >.<
    Posts
    510
    Reputation
    10
    Thanks
    25
    My Mood
    Amused
    isnt there a patch tonight >.>

  3. #3
    bartjr's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    768
    Reputation
    13
    Thanks
    259
    My Mood
    Tired
    Quote Originally Posted by king.joker.9 View Post
    isnt there a patch tonight >.>
    nope i just checked the site

  4. #4
    Marsicano's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Brazil
    Posts
    371
    Reputation
    16
    Thanks
    67
    My Mood
    Lonely
    Quote Originally Posted by bartjr View Post
    Well I guess alot of you know about my new trainer and that im workin to fix it i got some of them working through single pointers but the others i can't get to work cause i need to make it with multi pointers i was wondering if anyone can tell me how to make it through the multi pointers and ill give +rep and thanks!

    I already know how to make level 1 pointers
    Step 8: Multilevel pointers:
    This step will explain how to use multi-level pointers.
    In step 6 you had a simple level-1 pointer, with the first address found already being the real base address.
    This step however is a level-4 pointer. It has a pointer to a pointer to a pointer to a pointer to a pointer to the health.

    You basicly do the same as in step 6. Find out what accesses the value, look at the instruction and what probably is
    the base pointer value, and what is the offset, and already fill that in or write it down. But in this case the address
    you'll find will also be a pointer. You just have to find out the pointer to that pointer exactly the same way as you did
    with the value. Find out what accesses that address you found, look at the assembler instruction, note the probable
    instruction and offset, and use that.
    and continue till you can't get any further (usually when the base address is a static address, shown up as green)

    Click Change Value to let the tutorial access the health.
    If you think you've found the pointer path click Change Register. The pointers and value will then change and you'll
    have 3 seconds to freeze the address to 5000

    Extra: This problem can also be solved using a auto assembler script, or using the pointer scanner
    Extra2: In some situations (like this) it is recommended to change ce's codefinder settings to Access violations when
    encountering instructions like mov eax,[eax] since debugregisters show it AFTER it was changed, making it hard to
    find out the the value of the pointer





    Extra3: If you're still reading. You might notice that when looking at the assembler instructions that the pointer is
    being read and filled out in the same codeblock. This doesn't always happen, but can be really usefull in finding a
    pointer when debuggng is troublesome

  5. #5
    king.joker.9's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    In the ground >.<
    Posts
    510
    Reputation
    10
    Thanks
    25
    My Mood
    Amused
    bull sh** i use too go on the site everynight too check on updates never said a thing.. there too lazy dude they tel you when they patch when they have the patch going on.

  6. #6
    bartjr's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    768
    Reputation
    13
    Thanks
    259
    My Mood
    Tired
    Quote Originally Posted by Marsicano View Post
    Step 8: Multilevel pointers:
    This step will explain how to use multi-level pointers.
    In step 6 you had a simple level-1 pointer, with the first address found already being the real base address.
    This step however is a level-4 pointer. It has a pointer to a pointer to a pointer to a pointer to a pointer to the health.

    You basicly do the same as in step 6. Find out what accesses the value, look at the instruction and what probably is
    the base pointer value, and what is the offset, and already fill that in or write it down. But in this case the address
    you'll find will also be a pointer. You just have to find out the pointer to that pointer exactly the same way as you did
    with the value. Find out what accesses that address you found, look at the assembler instruction, note the probable
    instruction and offset, and use that.
    and continue till you can't get any further (usually when the base address is a static address, shown up as green)

    Click Change Value to let the tutorial access the health.
    If you think you've found the pointer path click Change Register. The pointers and value will then change and you'll
    have 3 seconds to freeze the address to 5000

    Extra: This problem can also be solved using a auto assembler script, or using the pointer scanner
    Extra2: In some situations (like this) it is recommended to change ce's codefinder settings to Access violations when
    encountering instructions like mov eax,[eax] since debugregisters show it AFTER it was changed, making it hard to
    find out the the value of the pointer





    Extra3: If you're still reading. You might notice that when looking at the assembler instructions that the pointer is
    being read and filled out in the same codeblock. This doesn't always happen, but can be really usefull in finding a
    pointer when debuggng is troublesome

    yeah i already read that tut on cheat engine tutorial but its kinda confusing

  7. #7
    jerry0's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    286
    Reputation
    10
    Thanks
    31
    if you are using CE, add a pointer twice, that means press the button twice. So it will look like this:
    First row, address of second row, offset
    Second row, address, offset.

    [greyed out] [Offset2]
    [pointer ] [Offset1]

  8. #8
    Marsicano's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Brazil
    Posts
    371
    Reputation
    16
    Thanks
    67
    My Mood
    Lonely
    Quote Originally Posted by bartjr View Post
    yeah i already read that tut on cheat engine tutorial but its kinda confusing
    Posted this to ppl know what we are talking about =X

    Quote Originally Posted by jerry0 View Post
    if you are using CE, add a pointer twice, that means press the button twice. So it will look like this:
    First row, address of second row, offset
    Second row, address, offset.

    [greyed out] [Offset2]
    [pointer ] [Offset1]
    I don't get it =X

  9. #9
    bartjr's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    768
    Reputation
    13
    Thanks
    259
    My Mood
    Tired
    Quote Originally Posted by jerry0 View Post
    if you are using CE, add a pointer twice, that means press the button twice. So it will look like this:
    First row, address of second row, offset
    Second row, address, offset.

    [greyed out] [Offset2]
    [pointer ] [Offset1]
    nope doesnt work cause with the multi-pointers u gotta find the offsets a different way

Similar Threads

  1. need help with multi-client+bunnyglitch NA
    By fishy8158 in forum Dragon Nest Help
    Replies: 8
    Last Post: 09-04-2011, 05:27 AM
  2. [Help Request] Need help with multi client
    By anhhao2185 in forum Vindictus Help
    Replies: 13
    Last Post: 06-12-2011, 05:55 AM
  3. [Help Request] need help with modding
    By BayBee Alyn in forum Combat Arms Help
    Replies: 0
    Last Post: 04-27-2011, 09:06 PM
  4. [Need Help] Enemy Pointer
    By jd96 in forum Combat Arms EU Hack Coding/Source Code
    Replies: 6
    Last Post: 09-25-2010, 10:29 AM
  5. Playing Warrock In Multi Windows Need Help
    By Shadowguild in forum WarRock - International Hacks
    Replies: 27
    Last Post: 01-04-2006, 10:32 PM

Tags for this Thread