Results 1 to 2 of 2
  1. #1
    elimabiru's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    Behind YOU...
    Posts
    126
    Reputation
    10
    Thanks
    688
    My Mood
    Worried

    What should i do ??

    hi guys i have little problems here i have address and Offset ..
    where should i added the offset and want to make it on and off
    Please someone give me the example or full done
    here the code (CE)
    THE ADDRESS = 0012F5C4
    offset = 74
    ON HACK = 297633
    OFF HACK = 197633
    if you done make it please give the code im using VB 2010
    Give me a Thanks if i HELP !

    Making a Hack ! :
    Injector : Done
    Chams : In Progress
    Wallhack : Done
    Wireframe : Not Done
    D3D Menu : Done
    Loader : Done
    Trainer : Done


    Need Help on someone that good at C++ !
    Sorry if i make Mistake !!


    200 Thanks :
    500 Thanks : /me
    800 Thanks :
    1000 Thanks :

  2. #2
    abuckau907's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    other side of the wire
    Posts
    1,342
    Reputation
    162
    Thanks
    239
    My Mood
    Cold
    You need a "memory" class so you can Read/Write to the memory of the target process. Most importantly. Do you know about memory and how to access the memory of another process? The Windows APIs required?

    Once you have that, the code will look something like

    Dim addrPtr As UInt32 = ReadUInt32(0x0012F5C4) '' Read 4 bytes from target process --> 4 bytes are an address : ptr
    Dim finalAddr as UInt32 = addrPtr + 74 '' is that supposed to be &H74 ? The offset

    Sub HackOn()
    WriteInt32(finalAddr, 297633)
    End Sub

    Sub HackOff()
    WriteInt32(finalAddr, 197633)
    End Sub

    ?
    Last edited by abuckau907; 08-11-2013 at 01:05 AM.
    'Some things that can be counted, don't matter. And some things that matter, can't be counted' - A.E.
    --
     

    My posts have some inaccuracies/are wrong/wrong keyword(s) used.
    They're (maybe) pretty close, and I hope they helped you, not created confusion. Take with grain of salt.

    -if you give rep, please leave a comment, else it means less.

Similar Threads

  1. What should I do??
    By Obey in forum General
    Replies: 34
    Last Post: 09-08-2008, 01:05 PM
  2. What should i use?
    By Tryptamine. in forum Art & Graphic Design
    Replies: 1
    Last Post: 08-28-2008, 12:28 PM
  3. What Should I Level.
    By Gwenold in forum Runescape Help
    Replies: 8
    Last Post: 06-26-2008, 01:13 PM
  4. what should i get?
    By mpghhackersrock123 in forum General
    Replies: 71
    Last Post: 12-13-2007, 03:39 PM
  5. What should MPGH be known for?
    By Dave84311 in forum General
    Replies: 34
    Last Post: 09-04-2007, 11:31 PM