Results 1 to 15 of 15
  1. #1
    ŽJack's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Australia
    Posts
    75
    Reputation
    10
    Thanks
    37

    Smile Need a little Help/Solution

    Hey peoples, I've studied a few tutorials such as CoderNever.

    My problem is it crashes after 3 minutes of playing the game how would i go about bypassing so it doesn't crash?

    Here is what i have so far and i compile it and inject with Perx


    #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");
    PushToConsole("ModelDebug_DrawBoxes 1" );
    PushToConsole("ReloadSpeed 0.000000" );
    PushToConsole("MaxAccel 6000.000000");
    PushToConsole("ShowPerformanceStatistics 1");
    PushToConsole("KillCam_On 0");
    PushToConsole("KillCam_Off 0");
    PushToConsole("CrossHairB 255");
    }
    }


    DWORD WINAPI HackThread(LPVOID)
    {
    while( !IsGameReadyForHook() )
    Sleep(500);
    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;
    }


    thanks again to CoderNever for giving me the interest to start coding combat arms hacks.

  2. #2
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    Dude your just copy and pasting stuff! Do you even know how to code? Also codenever did give you everything you need to make a hack)
    Last edited by NOOBJr; 07-25-2010 at 09:12 AM.

  3. #3
    carterv's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    3
    My Mood
    Devilish
    Update you LTClient addie. I think this one works: 0x377EFBD8.

    EDIT: Plus, why are you turning kill cam on and off?

  4. #4
    tempta43's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    980
    Reputation
    23
    Thanks
    295
    My Mood
    Bored
    void __cdecl PushToConsole( const char* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( 0x3778BFB0 );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    }

    is incorrect.
    look up CoderNever's threads and you'll know how to fix it..

  5. The Following User Says Thank You to tempta43 For This Useful Post:

    ŽJack (07-25-2010)

  6. #5
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    Ok kid here is what you need! updated version. Its in my nature to help people

    #include <windows.h>
    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll" ) != NULL
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL
    && GetModuleHandleA( "CShell.dll" ) != NULL )
    return true;
    return false;
    }
    void PushToConsole(const char* Command) {
    DWORD CNADDIE = 0x007d9200;
    void* Send = ( void* )*( DWORD* )(CNADDIE);
    __asm
    {
    push Command;
    call Send;
    add esp, -3-1+2+6;
    }
    }

  7. #6
    remusrowle34's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    A coke Machine
    Posts
    37
    Reputation
    10
    Thanks
    13
    My Mood
    Inspired
    Quote Originally Posted by Zane Slayman View Post
    Ok kid here is what you need! updated version. Its in my nature to help people

    #include <windows.h>
    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll" ) != NULL
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL
    && GetModuleHandleA( "CShell.dll" ) != NULL )
    return true;
    return false;
    }
    void PushToConsole(const char* Command) {
    DWORD CNADDIE = 0x007d9200;
    void* Send = ( void* )*( DWORD* )(CNADDIE);
    __asm
    {
    push Command;
    call Send;
    add esp, -3-1+2+6;
    }
    }
    Wtf? Get off your high horse man, i just saw you asking for help about the same bullshit.

    Thinking because you know how to C+P a hotkey, and then add/del hacks ur good? and think u can make a menu....pff fk off man....

  8. The Following User Says Thank You to remusrowle34 For This Useful Post:

    ŽJack (07-25-2010)

  9. #7
    killerld's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    345
    Reputation
    11
    Thanks
    193
    My Mood
    Twisted
    LoL the guy above me is ... Not really about the answer of the other above him x)

    But for the threadstarter it's the Addy ! Go in the Hack Source section you can find some possibilities for the PTC Addy :P


    Sorry for my bad English ! I'm French Canadian !

    - When you use my hack, Please Thank Me

    Release some Hacks []
    Able to code in PhP / Mysql []
    Able to code in VB []
    Able to code in C# []
    Able to do VB Injector []
    Release an Injector []
    Active Member in the Community []
    Member who help small Hacker []

  10. #8
    ŽJack's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Australia
    Posts
    75
    Reputation
    10
    Thanks
    37
    HAHA so true oh well! when it comes to video editing mate i'm pro at it! can't say to much more bout that lets just put it this way 2000 views in 1 week you dont know who i work for . But this coding is new to my eyes there is a stickie on address's wtf? also this "was" a good start point.

  11. #9
    killerld's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    345
    Reputation
    11
    Thanks
    193
    My Mood
    Twisted
    Quote Originally Posted by ŽJack View Post
    HAHA so true oh well! when it comes to video editing mate i'm pro at it! can't say to much more bout that lets just put it this way 2000 views in 1 week you dont know who i work for . But this coding is new to my eyes there is a stickie on address's wtf? also this "was" a good start point.
    Euh... what your Video Editing Skill is suppose to do here ..?

    All ppl have talent but ... We can't be good in all and Coding is not your domain so ... Go edit your Video :P

    And I don't that you consider my post just above your !
    Go in the Hack Source Section all you need to do a fonctional hack is there !


    Sorry for my bad English ! I'm French Canadian !

    - When you use my hack, Please Thank Me

    Release some Hacks []
    Able to code in PhP / Mysql []
    Able to code in VB []
    Able to code in C# []
    Able to do VB Injector []
    Release an Injector []
    Active Member in the Community []
    Member who help small Hacker []

  12. #10
    ŽJack's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Australia
    Posts
    75
    Reputation
    10
    Thanks
    37
    Quote Originally Posted by killerld View Post
    Euh... what your Video Editing Skill is suppose to do here ..?

    All ppl have talent but ... We can't be good in all and Coding is not your domain so ... Go edit your Video :P

    And I don't that you consider my post just above your !
    Go in the Hack Source Section all you need to do a fonctional hack is there !
    Well i guess i'll take a look around a bit more it's quite interesting
    thanks for the tips/solutions

  13. #11
    EDWINSEE's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Arkansas
    Posts
    125
    Reputation
    10
    Thanks
    127
    My Mood
    Angelic
    Here i fix it the next patch is this week. so u will need to update it after next patch and give credit to CoderNever.

    #include <windows.h>
    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll" ) != NULL
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL
    && GetModuleHandleA( "CShell.dll" ) != NULL )
    return true;
    return false;
    }
    void PushToConsole(const char* Command) {
    DWORD CNADDIE = 0x007d9200;
    void* Send = ( void* )*( DWORD* )(CNADDIE);
    __asm
    {
    push Command;
    call Send;
    add esp, -3-1+2+6
    }
    }
    void main()
    {
    while(true)
    {
    PushToConsole("ShowFps 1");
    PushToConsole("ModelDebug_DrawBoxes 1" );
    PushToConsole("ReloadSpeed 0.000000" );
    PushToConsole("MaxAccel 6000.000000");
    PushToConsole("ShowPerformanceStatistics 1");
    PushToConsole("KillCam_On 0");
    PushToConsole("KillCam_Off 0");
    PushToConsole("CrossHairB 255");
    }
    }}


    DWORD WINAPI HackThread(LPVOID)
    {
    while( !IsGameReadyForHook() )
    Sleep(500);
    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;
    }

  14. #12
    ŽJack's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Australia
    Posts
    75
    Reputation
    10
    Thanks
    37
    Great thanks it doesn't disconnect me anymore. So i need to find the new LT Client every update/patch they do? I think im going to start from the beginning.
    1 thing that is stopping me is my 64-bit OS doesnt open Kernel Detective so's that i can
    Unpack the CShell.dll , Engine.exe to find my own pointers-Adresses & codes ect any ideas on that one?
    Also will i be able to find and add the code of color chams once the CShell.dll is unpacked?
    If you know the answers and would like to give advice i would appreciate your time in posting.

    Thanks

  15. #13
    whit+'s Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    264
    Reputation
    10
    Thanks
    37
    My Mood
    Breezy
    Dont Say he cant code when yall cant either...

  16. #14
    ŽJack's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Australia
    Posts
    75
    Reputation
    10
    Thanks
    37
    yeah dude i cant even find some addies cause of my 64-bit operating system :\

  17. #15
    EDWINSEE's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Arkansas
    Posts
    125
    Reputation
    10
    Thanks
    127
    My Mood
    Angelic
    Quote Originally Posted by whit+ View Post
    Dont Say he cant code when yall cant either...
    I know I cannot code I been learning. BloodSkin did help me fix the errors.
    but I did the work. I still learning c++ and I want to make mine own base
    so can u pm a old patch or dectected base before this base. i know how to change this part of CoderNever base.

    void PushToConsole(const char* Command) {
    DWORD CNADDIE = 0x007d9200;
    void* Send = ( void* )*( DWORD* )(CNADDIE);
    __asm
    {
    push Command;
    call Send;
    add esp, -3-1+2+6;

Similar Threads

  1. need a little help with coding
    By jmonking in forum C++/C Programming
    Replies: 13
    Last Post: 09-14-2009, 08:55 AM
  2. Need a little help :)
    By Bobby123456 in forum General Hacking
    Replies: 1
    Last Post: 08-20-2009, 12:41 AM
  3. Ok, I need a little help with my sig.
    By Manetric in forum General
    Replies: 2
    Last Post: 03-03-2009, 03:13 PM
  4. Just need a little help.
    By kingnoobe in forum Combat Arms Hacks & Cheats
    Replies: 9
    Last Post: 08-02-2008, 06:31 PM
  5. I need a little help.
    By neto7 in forum C++/C Programming
    Replies: 1
    Last Post: 06-25-2008, 04:02 AM