Results 1 to 6 of 6
  1. #1
    258456's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    ghjghj
    Posts
    1,222
    Reputation
    18
    Thanks
    300
    My Mood
    Relaxed

    SO we don't have to learn winapi

    So to make hacks we don't have to know winapi? Just d3d? I mean cuz i kind of get winapi, so i was just wondering if i need to continue.

  2. #2
    inmate's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Bottrop, NRW, Germany
    Posts
    131
    Reputation
    10
    Thanks
    194
    My Mood
    Amazed
    Of course you need WinAPI´s in (i think) all Projects, WinAPI´s are very usefull. f.E:
    when you code a Memory Cheat, you need 4 or 5 different WinAPI´s.

    Or the MessageBox Api is used in all Programm´s, api´s make your "coding life" easier

    Regards

  3. #3
    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
    The only few you'll need:

    External:
    ReadProcessMemory
    WriteProcessMemory

    Injected:
    memcpy
    VirtualProtect
    Ah we-a blaze the fyah, make it bun dem!

  4. #4
    inmate's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Bottrop, NRW, Germany
    Posts
    131
    Reputation
    10
    Thanks
    194
    My Mood
    Amazed
    But he must get a handle of the process =) because if he has no handle, he can´t open the process

    f.E:

    Code:
    #include <windows.h>
    
    int main(){
    
    DWORD pID;
    HWND hwnd;
    
    hwnd = FindWindowA(NULL, "Window Titel");
    
    GetWindowThreadProcessId(hwnd, &pID);
    
    
    if ( pID != 0){
    
    //Read & Writeprocessmemory ....
    
    }
    }
    
    
    Maybe there are errors, i write the code only here not in an compiler.

  5. #5
    Melodia's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Posts
    2,608
    Reputation
    276
    Thanks
    1,662
    My Mood
    Dead
    Quote Originally Posted by Hell_Demon View Post
    The only few you'll need:

    External:
    ReadProcessMemory
    WriteProcessMemory

    Injected:
    memcpy
    VirtualProtect
    =).
    And you will need to code the other ones =D.

    Hmz.. Through sometimes I use other ones, But mostly for Loaders and stuff., Hacks themselves doesn't needs that much calls from FailAPI if they are attached to the Process.
    Quote Originally Posted by inmate View Post
    But he must get a handle of the process =) because if he has no handle, he can´t open the process

    f.E:

    Code:
    #include <windows.h>
    
    int main(){
    
    DWORD pID;
    HWND hwnd;
    
    hwnd = FindWindowA(NULL, "Window Titel");
    
    GetWindowThreadProcessId(hwnd, &pID);
    
    
    if ( pID != 0){
    
    //Read & Writeprocessmemory ....
    
    }
    }
    
    
    Maybe there are errors, i write the code only here not in an compiler.
    Getting Process Handle/pID from Window name is Pretty Failish/Not always Reliable.
    Love You All~

  6. The Following User Says Thank You to Melodia For This Useful Post:

    Void (08-01-2010)

  7. #6
    Kallisti's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,019
    Reputation
    52
    Thanks
    376
    My Mood
    In Love
    If youre a copy pasta, no

    未来が見えなくて怖いから
    未来が見えてしまって悲しいから
    目を閉じて優しい思い出に浸ってしまう




Similar Threads

  1. Replies: 12
    Last Post: 09-10-2009, 09:33 PM
  2. Don't have permission to view file?
    By Heroblind in forum Suggestions, Requests & General Help
    Replies: 5
    Last Post: 09-08-2009, 02:14 PM
  3. Don't have permission
    By bageshri15 in forum Combat Arms Help
    Replies: 7
    Last Post: 08-24-2009, 06:53 PM
  4. [TUT] How to set ddd555 Aimbot if you don't have chams!
    By joi121 in forum Combat Arms Europe Hacks
    Replies: 30
    Last Post: 07-10-2009, 06:00 AM
  5. How do you fix: "You don't have permission to open this file" error?
    By soupppo in forum CrossFire Hacks & Cheats
    Replies: 8
    Last Post: 05-08-2009, 08:18 PM