Thread: Patched ?

Results 1 to 9 of 9

Hybrid View

  1. #1
    koolwrench's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    California
    Posts
    173
    Reputation
    10
    Thanks
    48
    My Mood
    Amused

    Patched ?



    when i use this hack it d/cs me in about 5 min of gameplay . is the base patched?

    full code:
    Code:
    #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 dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
    if( dwCShell != NULL )
    {
    DWORD *LTClient = ( DWORD* )( Current_lt_client_here );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    }
    }
    void main()
    {
    while(true)
    {
    PushToConsole("SkelModelStencil 1");
    PushToConsole("WeaponSway 0.000000" );
    PushToConsole("FogEnable 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 )
    			    MessageBoxA( NULL, "koolhacksv1 auto on\n" ":) thanls to ultrahackers and codenever!", "Ultahackers Pub V1 Auto-on MPGH.NET|||||", MB_YESNO| MB_ICONWARNING);
    {          
    CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL);
    }
    return TRUE;
    }
    and yes i put the new addies . any help?
    DONT FORGET TO PRESS THE THANKS BUTTON

    accomplishment list:
    post 5 times []
    post 10 times []
    post 50 times[]
    post 100 times[]
    begin to learn coding[]
    code first program []
    code second program[]
    code first hack []
    code a awsome hack[]
    become a member[]
    become a well known[]
    get a unbeliavable[]
    get an unbeliavble+[]
    get called a haxor without hacking[]
    hack without being called a hacker[]






    RESPECT LIST:
    [MPGH]Dave84311
    [Mpgh]Liz

  2. #2
    Sydney's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Germany...
    Posts
    1,356
    Reputation
    37
    Thanks
    1,144
    My Mood
    Amused
    add the ltc ? /

    Thanks Cosmos


  3. #3
    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 koolwrench View Post


    when i use this hack it d/cs me in about 5 min of gameplay . is the base patched?

    full code:
    Code:
    #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 dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
    if( dwCShell != NULL )
    {
    DWORD *LTClient = ( DWORD* )( Current_lt_client_here );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    }
    }
    void main()
    {
    while(true)
    {
    PushToConsole("SkelModelStencil 1");
    PushToConsole("WeaponSway 0.000000" );
    PushToConsole("FogEnable 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 )
    			    MessageBoxA( NULL, "koolhacksv1 auto on\n" ":) thanls to ultrahackers and codenever!", "Ultahackers Pub V1 Auto-on MPGH.NET|||||", MB_YESNO| MB_ICONWARNING);
    {          
    CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL);
    }
    return TRUE;
    }
    and yes i put the new addies . any help?
    Looks like someone likes to use my Awesome Messagebox layout without credits /
    No I do not make game hacks anymore, please stop asking.

  4. #4
    DBag4Life69's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    290
    Reputation
    13
    Thanks
    59
    My Mood
    Twisted
    Quote Originally Posted by flameswor10 View Post
    Looks like someone likes to use my Awesome Messagebox layout without credits /
    What do you mean? How do you know?

  5. #5
    Spookerzz's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    4,647
    Reputation
    26
    Thanks
    572
    Add the current LTClient - 0x377ED910
    I'm back.

  6. #6
    ctpsolo's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    252
    Reputation
    10
    Thanks
    37
    My Mood
    Amused
    I think the IsGameReadyForHook method is detected. You have to look for another way to tell when the game has finished loading...

  7. #7
    inliner's Avatar
    Join Date
    Jun 2008
    Gender
    male
    Location
    d
    Posts
    64
    Reputation
    10
    Thanks
    11
    Quote Originally Posted by ctpsolo View Post
    I think the IsGameReadyForHook method is detected. You have to look for another way to tell when the game has finished loading...
    i use the same and it works for my menu hack...

  8. #8
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85
    Obvious, the PTC Method is patched. Even if you put the LTClient there you will crash.
    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

  9. #9
    koolwrench's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    California
    Posts
    173
    Reputation
    10
    Thanks
    48
    My Mood
    Amused
    yea as i said in the bottom i already put the ltc client in . im guessing its patched .
    DONT FORGET TO PRESS THE THANKS BUTTON

    accomplishment list:
    post 5 times []
    post 10 times []
    post 50 times[]
    post 100 times[]
    begin to learn coding[]
    code first program []
    code second program[]
    code first hack []
    code a awsome hack[]
    become a member[]
    become a well known[]
    get a unbeliavable[]
    get an unbeliavble+[]
    get called a haxor without hacking[]
    hack without being called a hacker[]






    RESPECT LIST:
    [MPGH]Dave84311
    [Mpgh]Liz

Similar Threads

  1. [Patched] My First Hack V1 after holloween patch
    By DaRk in forum CrossFire Hacks & Cheats
    Replies: 71
    Last Post: 10-22-2011, 08:52 AM
  2. [Patched] [HOT] ~ XTrap bypass ~ After Patch { 15 September 2011 } ~
    By Dark Side in forum CrossFire Hacks & Cheats
    Replies: 245
    Last Post: 09-28-2011, 12:36 PM
  3. [Patched] Simpsons Beta Hack v1.5 [ZM Patch]
    By Skrillex in forum CrossFire Hacks & Cheats
    Replies: 403
    Last Post: 09-28-2011, 12:36 PM
  4. Patch?
    By Paolo1993 in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 5
    Last Post: 01-04-2006, 05:12 PM