Results 1 to 7 of 7
  1. #1
    Watru's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Mellow

    A litel help to the new guy?

    OK so hello everyone first time poster here.

    So I`am trying to get on the scene here and was hoping for a friendly nudge in the back. I need to know what is a must to have of Tools, and the basics for making "hacks" for games. I understand I use TSearch to find memory addresses that I can change the value of and get full HP ore Ammo.

    Also there is something called DLL injections ore hocks any can give me the 411 on this? I know C++ so I just need to be stared in the right direction.

    WHen it comes to reverse engineering I`am blank.

    My optimal goal is to make a Auto Combo System for AoC, a MMORPG game.

    Thanks to all that takes the time to help a newbie out.

  2. #2
    Cal's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    MPGH faggots.
    Posts
    5,553
    Reputation
    394
    Thanks
    825
    there was a tut on youtube for this
    (in VB)

  3. #3
    Watru's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Mellow
    Quote Originally Posted by Johnny Knoxville View Post
    there was a tut on youtube for this
    (in VB)
    Oho I can't write that mutche VB almost == NULL.
    But is it usable for getting the basics in the procedure if I can call it that?
    I who'd love a link mate.
    And thanks for reply btw.

  4. #4
    FBIRyan's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Watru View Post
    My optimal goal is to make a Auto Combo System for AoC, a MMORPG game.
    PostMessage() some WM_KEYDOWN messages to it?
    MSDN and Google are the most important tools.
    (Don't ever underestimate them.)
    OllyDbg + Cheat Engine + Visual Studio C++.
    Those will do for now. Learn ASM and OllyDbg.


    Edit:
    Quote Originally Posted by Watru View Post
    I who'd love a link mate.
    I know exactly which tutorial he's talking about, just click here.
    The YouTube link is somewhere on that webpage.
    Last edited by FBIRyan; 08-06-2011 at 09:32 AM.

  5. #5
    ctpsolo's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    252
    Reputation
    10
    Thanks
    37
    My Mood
    Amused
    The basics for most hacks are like you said yourself, making memory modifications.

    If you already know how to find addresses I suggest that you read up on how OpenProcess/WriteProcessMemory functions works. Then you create a basic memory hack for some game (or program) that lacks any antihacking protection. It's merely a task of opening the process and making the proper memory modifications.

    DLL injections are used because when you inject your dll into the process you intend to hack, you share memory with it. You don't need to use WriteProcessMemory/NtWriteVirtualMemory to modify the memory and that's a good thing because antihack shields will usually hook them (meaning that they will monitor them and refuse access to the game process if you try to use those functions to modify the memory).

    Your dll runs in a separate thread inside the target process once injected. A dll doesn't need to look much different than the code for binaries does but you do have to follow a certain standard in order to execute code once the dll has been injected, your IDE can probably supply you with a template for that.

    Code:
      case DLL_PROCESS_ATTACH:
      //Basically you need to create a thread here for what you wanna do because DLL_PROCESS_ATTACH gets called upon injecting your dll.
            break;
    And use google, there are tons of useful info there. Hope this was helpful anyway.

  6. #6
    ғᴜᴋᴏᴊʀ's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    1,557
    Reputation
    87
    Thanks
    141
    My Mood
    Inspired
    Plus, alot of games will have a console you can write to that will make your hacks hella easier


    [IMG]https://i186.photobucke*****m/albums/x253/Rypleys/MNC/biohazard2.jpg[/IMG]

    MPGH in 5 words:

    Quote Originally Posted by ZEROProJect View Post
    1 in a million community

  7. #7
    Watru's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Mellow
    Thanks for those great reply`s really noob friendly I will read up on what all you guys mentioned and I`am no stranger to Google . Thanks again everyone I will be back when I get the hang of it to some extent.
    Last edited by Watru; 08-06-2011 at 08:43 PM.

Similar Threads

  1. Help with the new chams hack.
    By -ZaZzY- in forum Combat Arms Europe Hacks
    Replies: 7
    Last Post: 02-18-2009, 07:14 AM
  2. Help with the new hack, please.
    By SoaringPunch in forum Combat Arms Hacks & Cheats
    Replies: 3
    Last Post: 12-28-2008, 10:11 PM
  3. OMG MODS WAT U DO WITH THE NEW GUY
    By xtcevolution in forum Combat Arms Hacks & Cheats
    Replies: 5
    Last Post: 10-27-2008, 07:58 PM
  4. The New Guy recon2nl Scammer!!
    By xth0rx in forum Trade Accounts/Keys/Items
    Replies: 9
    Last Post: 07-25-2007, 06:51 AM
  5. im the new guy
    By Zmaster in forum General
    Replies: 9
    Last Post: 07-06-2007, 03:03 AM

Tags for this Thread