Results 1 to 12 of 12
  1. #1
    nicklus's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    v
    Posts
    21
    Reputation
    10
    Thanks
    0

    Smile LOVE MPGH..BUT FOR NOW I NEED HLPE

    HI GUYS I WAS NOT ON MPGH FOR A WHILE AND IM BACK NOW BUT I NEED SOM HELP PLZ...
    IM TRYIN 2 OUT UP AN AUTO HACK BUT I GET D-C IN GAME

    CAN ANYONE HELP ME OUT PLZ


    #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* )( 0x377ED910 );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    }
    void main()
    {
    while(true)
    {
    PushToConsole("SkelModelStencil 1");
    }
    }
    DWORD WINAPI dwHackThread(LPVOID)
    {
    while( !IsGameReadyForHook() )
    Sleep(200);
    main();
    return 0;
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL);
    }
    return TRUE;
    }

  2. #2
    ForrestGump's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Los Angeles
    Posts
    1,555
    Reputation
    22
    Thanks
    82
    My Mood
    Cool
    I don't know coding. Its too hard to learn lol

  3. #3
    nicklus's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    v
    Posts
    21
    Reputation
    10
    Thanks
    0
    if you dont know why did you even say it... if not u sure got time on ya hands 2 try make a fool outa me ^.^

  4. #4
    skiiiz's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    119
    Reputation
    10
    Thanks
    11
    copy and paste much?
    CN's auto-on hack.

    here i'll stop being a jerk and give you a hint:
    LTClient

    Anyways go figure for yourself

  5. #5
    nicklus's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    v
    Posts
    21
    Reputation
    10
    Thanks
    0
    DWORD *LTClient = ( DWORD* )( 0x377ED910 );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );


    dude listen som1 use the hack it jus d-c 4 me andi didnt c+p nun dont be fooled

  6. #6
    L3G3ND_KILL3R's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    4,828
    Reputation
    207
    Thanks
    651
    My Mood
    Bored
    lool i agree coding is too hard D:


    Need help with CALL OF DUTY RELATED or anything just private message me and im willing to help ^____^ Have a nice day!
    Quote Originally Posted by HelpIsWanted View Post
    so i have a camp next month, and i am 12, now all boys in my class have a large dick with hari and i dont have that. who can help me please?
    i see in films people can grow hair and grow dicks.

    i know its weird question, but i need !

  7. #7
    skiiiz's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    119
    Reputation
    10
    Thanks
    11
    well obviously u c&pied codernevers tutorial. anyways i cbb trollinz anymore.
    go find the updated ltclient if you didn't c&p
    blarghh

  8. #8
    neononxxx's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    why do you wanna know?? so you can kill me?
    Posts
    1,226
    Reputation
    36
    Thanks
    342
    My Mood
    Drunk
    Code:
    void __cdecl PushToConsole( const char* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( 0x377ED910 );////////keep it but update the LTC
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );//////////////keep it as is
    __asm
    {
    push szCommand;//fix 
    call CONoff;//fix
    add esp, 4; ///fix
    ///also you might want to learn to c++
    update the asm line and your DC problem is fixed.
    [IMG]https://www.find-heavyequipmen*****m/images/small-loading.gif [/IMG]Loading content... Please wait while the rest of this post loads.

  9. #9
    matypatty_backup's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    20
    My Mood
    Paranoid
    Code:
    #include <windows.h>
    #define LTC 0x3785435C
    
    void __cdecl PushToConsole( const char* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( LTC );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    }	
    void main()
    {
    while(1)
    {
    PushToConsole("SkelModelStencil 1");
    }
    }
    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll" ) != NULL 
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL 
    && GetModuleHandleA( "CShell.dll" ) != NULL )
    return true;
    return false;
    }
    DWORD WINAPI dwHackThread(LPVOID)
    {
    while( !IsGameReadyForHook() )
    Sleep(200);
    main();
    return 0;
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL);
    }
    return TRUE;
    }
    EDIT: @neononxxx, the asm is fine
    Last edited by matypatty_backup; 10-09-2010 at 03:13 AM.

  10. #10
    Spookerzz's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    4,647
    Reputation
    26
    Thanks
    572
    Do other hacks work?
    I'm back.

  11. #11
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    Guyz Your spoon feeding a baby. Baby's need to learn English before another language. Why waste your time i don't think he even knows what any of his hack means!

  12. #12
    nicklus's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    v
    Posts
    21
    Reputation
    10
    Thanks
    0
    #define LTClient 0x377C8538
    #define LTClient 0x377C8550

    thc 4 nun XD

Similar Threads

  1. I love MPGH but.....
    By ~Shadow in forum General
    Replies: 27
    Last Post: 07-01-2011, 02:42 PM
  2. CHANGING THE "GO TO MPGH.NET FOR HACKS NOW TO SOMETHIG DIFF.
    By ihackscross in forum CrossFire Hacks & Cheats
    Replies: 11
    Last Post: 07-15-2009, 09:33 PM
  3. Good bye for now mpgh.
    By epshreeman5 in forum General
    Replies: 16
    Last Post: 07-15-2009, 03:44 AM
  4. A crappy but will have to do for now sig
    By kabilin in forum Showroom
    Replies: 6
    Last Post: 07-09-2009, 10:03 AM
  5. All what we need simple hack for now.
    By sieko in forum WarRock - International Hacks
    Replies: 10
    Last Post: 05-24-2007, 11:08 AM