Results 1 to 4 of 4
  1. #1
    Hahaz's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Location
    Matrix World
    Posts
    1,170
    Reputation
    64
    Thanks
    4,091
    My Mood
    Bored

    [Question] Pointers & AA in C++

    //Pointers

    DWORD address = 0x006AA00C; //no offset
    DWORD address = 0x006AA00C + 0x41; //with an offset

    How about multi pointers?




    //Auto assemble in c++

    Example:
    [ENABLE]
    alloc(newmem,1024)
    label(returnhere)
    label(exit)

    004875DC:
    jmp newmem
    nop
    nop
    returnhere:

    newmem:
    add dword ptr [edi+24],10000000
    mov eax,[edi+24]

    exit:
    jmp returnhere

    [DISABLE]
    dealloc(newmem)
    004875DC:
    add dword ptr [edi+24],01
    mov eax,[edi+24]
    How can i write this & make it works in c++?

  2. #2
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    Too hot to help o__O

    Figure it out:
    Code:
    DWORD value = *((*(DWORD**)0x123123)+0x14)
    Ah we-a blaze the fyah, make it bun dem!

  3. #3
    Unkn0wn_h4cker's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    17
    Too cold to help :L

    WHY WHY WHY do I have to be on the other side of the worldddddd

  4. #4
    Bryci's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    In your pants. /fmm
    Posts
    503
    Reputation
    -24
    Thanks
    19
    My Mood
    Amused
    Quote Originally Posted by Unkn0wn_h4cker View Post
    Too cold to help :L

    WHY WHY WHY do I have to be on the other side of the worldddddd
    If you're too "cold" to help, don't post and stop spamming.

Similar Threads

  1. [Question]Team Pointer?
    By mastermods in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 20
    Last Post: 09-06-2010, 05:51 AM
  2. Question on intro to pointers
    By ilovecookies in forum C++/C Programming
    Replies: 5
    Last Post: 12-11-2009, 05:19 AM
  3. pointer question
    By lowdownskin in forum Combat Arms Hacks & Cheats
    Replies: 2
    Last Post: 08-09-2008, 09:05 PM
  4. Question on Pointers
    By mains3rv3r in forum WarRock - International Hacks
    Replies: 8
    Last Post: 06-05-2007, 12:14 AM
  5. [QUESTION] Pointer in Dev-C++
    By yogilek in forum WarRock - International Hacks
    Replies: 0
    Last Post: 05-31-2007, 01:56 PM