Thread: HELP ME PLZ

Results 1 to 15 of 15
  1. #1
    COOLGUY1O1's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    7

    HELP ME PLZ

    ok so i have the code:#include <windows.h>
    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll" ) != NULL
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL
    && GetModuleHandleA( "Cshell(9-22).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(100);
    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;
    }
    and evertime i use it is closes down like threee minutes later i need help! plz help me!!!

  2. #2
    AVGN's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Kekistan
    Posts
    15,566
    Reputation
    1817
    Thanks
    6,678
    so you want to understand a hack

    but you dont understand how to post in the right section

    moved to discussion




  3. #3
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    I'm in a bad mood so what I'm going to say may hurt but...

    GTFO LEECHER

  4. #4
    COOLGUY1O1's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    7
    lol ur mean

    what does gtfo mean?

  5. #5
    Dewerong's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Inside a Packet
    Posts
    59
    Reputation
    10
    Thanks
    2
    You already posted about this AND this is in the wrong section. Noob. I understand though cause I was once like you. Here copy and paste this in your hack. I fixed it and it works.

    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll" ) != NULL
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL
    && GetModuleHandleA( "Cshell(9-22).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(100);
    main();
    ExitProcess(0);
    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);
    ExitProcess(0);
    }
    return TRUE;
    }

  6. #6
    COOLGUY1O1's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    7
    hey when i build the slotion is said it failed to build

  7. #7
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    CShell loaded is spelled wrong.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  8. #8
    COOLGUY1O1's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    7
    can you spell it right plz fix it plz help me!!

    SOMEBODY PLZ HELP ME~S

  9. #9
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    No... If you cant spell then its a matter of your IQ being 12.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  10. The Following User Says Thank You to whatup777 For This Useful Post:

    flashlight95 (10-07-2010)

  11. #10
    COOLGUY1O1's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    7
    SPELLING WHAT?

    I BEG YOU SO BADLY PLZ TELL ME WHAT TO FIX PLZZ!!! HELLP ME!//

  12. #11
    flashlight95's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    12-34 Poopie Street Posts: Over 9000!
    Posts
    127
    Reputation
    10
    Thanks
    15
    Quote Originally Posted by COOLGUY1O1 View Post
    lol ur mean

    what does gtfo mean?

    Get The Fuck Out

  13. #12
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Quote Originally Posted by flashlight95 View Post
    Get The Fuck Out
    That's what she said. Or

    Get The Fuck Off
    No I do not make game hacks anymore, please stop asking.

  14. #13
    UltimateX1's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    114
    Reputation
    10
    Thanks
    10
    My Mood
    Yeehaw
    why do you all be so cocky

    change your Push Funtion

  15. #14
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Code:
    if( GetModuleHandleA( "d3d9.dll" ) != NULL 
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL 
    && GetModuleHandleA( "Cshell(9-22).dll" ) != NULL )
    return true;
    return false;
    }
    Remove the red.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  16. #15
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    SeaShell.dll

Similar Threads

  1. [Help Request] help man plz!!!
    By propimp in forum CrossFire Help
    Replies: 20
    Last Post: 07-14-2011, 04:25 PM
  2. [Help Request] Help Me Plz!
    By adu.12 in forum Alliance of Valiant Arms (AVA) Help
    Replies: 0
    Last Post: 06-23-2011, 04:18 AM
  3. [Help Request] Help Fast Plz
    By [F]ire [D]emo in forum CrossFire Help
    Replies: 13
    Last Post: 05-29-2011, 02:44 AM
  4. Help ME, Plz
    By Steven990 in forum WarRock - International Hacks
    Replies: 0
    Last Post: 04-24-2007, 04:59 AM
  5. i need hack on warrock!!!help me plz
    By ikji in forum WarRock - International Hacks
    Replies: 1
    Last Post: 02-04-2006, 02:15 PM