Results 1 to 5 of 5
  1. #1
    noammn's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1

    Question [HELP] How to make hacks?

    How to make hacks?
    Please help me

  2. #2
    Kuro Tenshi's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Where arth thou be
    Posts
    3,635
    Reputation
    70
    Thanks
    746
    My Mood
    Blah
    Read Coder Never's tutorial:
    https://www.mpgh.net/forum/207-combat...arms-hack.html

    Press the thanks button after your done reading it...after this just learn from some C++ books/C++ section can help you out too.

    Request /Close
    DigiDrawing|+ ( (Elfen Archer) )
    Link:
    https://www.mpgh.net/forum/148-showro...en-archer.html


    @ Anime Section,Otaku/weeabo (orz.) @Graphics Section, Novice DigiArtist


    neuest gift from Yura~Chan:
    https://bakyurayuu.deviantar*****m/#/d372taw
    2nd Place MOTM#9 Theme: CharMods - Combat Arms [No - Thanks] button
    come on you know that don't want to push that ordinary button

  3. #3
    noammn's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1
    what is what i wrote:
    [php]
    #include <windows.h>
    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll" ) != NULL
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL
    && GetModuleHandleA( "CShell.dll" ) != NULL )
    return true;
    return false;
    }
    void __cdecl PushToConsole( const char* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( 0x3778BFB0 );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    }
    void main()
    {
    while(true)
    {
    PushToConsole("ShowFps 1");
    }
    }
    DWORD WINAPI HackThread(LPVOID)
    {
    while( !IsGameReadyForHook() )
    Sleep(100);
    main();
    return 0;
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    CreateThread(NULL, NULL, HackThread, NULL, NULL, NULL);
    }
    return TRUE;
    }
    [/php]
    But, when I entered the game after the loading screen the game closes.

  4. #4
    Kuro Tenshi's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Where arth thou be
    Posts
    3,635
    Reputation
    70
    Thanks
    746
    My Mood
    Blah
    yeah its found... you need to patch it, some say only the ltc, i say add a bypass. i need one from gellins base, so yeah.
    DigiDrawing|+ ( (Elfen Archer) )
    Link:
    https://www.mpgh.net/forum/148-showro...en-archer.html


    @ Anime Section,Otaku/weeabo (orz.) @Graphics Section, Novice DigiArtist


    neuest gift from Yura~Chan:
    https://bakyurayuu.deviantar*****m/#/d372taw
    2nd Place MOTM#9 Theme: CharMods - Combat Arms [No - Thanks] button
    come on you know that don't want to push that ordinary button

  5. #5
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Well CNs hack tutorial is detected.

    If you manage to bypass your hack and update the LTC you might get it to work

    Good luck.
    /Closed
    -Rest in peace leechers-

    Your PM box is 100% full.

Similar Threads

  1. Need help how to make hacks
    By DHANte24 in forum General Game Hacking
    Replies: 3
    Last Post: 09-06-2010, 08:05 PM
  2. [HELP]How to make a dll hack
    By fadee in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 12
    Last Post: 05-09-2010, 01:31 AM
  3. Help Me Learn How to Make Hacks!
    By reviver555 in forum Alliance of Valiant Arms (AVA) Hacks & Cheats
    Replies: 4
    Last Post: 10-30-2009, 11:43 PM
  4. how to make hacks? please help
    By apenknul in forum C++/C Programming
    Replies: 2
    Last Post: 07-04-2009, 02:09 AM
  5. [Help] How to make a hack
    By bjorn1213 in forum Combat Arms Europe Hacks
    Replies: 10
    Last Post: 03-04-2009, 05:40 AM