Results 1 to 11 of 11
  1. #1
    zachery's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    My Mood
    Tired

    how come my hack wont work

    when ever i inject my hack it crashes

    here is my whole 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 *LTClient = ( DWORD* )( 0x007D9200 );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    }	
    void main()
    {
    while(true)
    {
    PushToConsole("SkelModelStencil 1");
    PushToConsole("Prediction 0" );
    PushToConsole("ShowFps 1");
    PushToConsole("ModelDebug_DrawBoxes 1" );
    PushToConsole("WeaponSway 0.000000" );
    PushToConsole("KnockBack 0" );
    PushToConsole("SpectatorMode 1" );
    PushToConsole("PerturbRotationEffect  0.000000" );
    PushToConsole("PerturbIncreaseSpeed 0.000000" );
    PushToConsole("PerturbWalkPercent 0.000000" );
    PushToConsole("PerturbFiringIncreaseSpeed 0.000000" );
    PushToConsole("PerturbRecoil 0.000000" );
    PushToConsole("FireMovePerturb 0.000000" );
    PushToConsole("ZoomedFireMoveDuckPerturb 0.000000" );
    PushToConsole("ZoomedFireMovePerturb 0.000000" );
    PushToConsole("ZoomedFireDuckPerturb 0.000000" );
    PushToConsole("Heal 0");
    PushToConsole("HealHP 0");
    }
    }
    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;
    }
    can you please help me this is my first hack
    Last edited by zachery; 07-27-2010 at 08:05 AM.

  2. #2
    kotentopf's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    602
    Reputation
    26
    Thanks
    251
    the base is detected u must pack it to make undetected

  3. #3
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    It doesn't work because Nexon has little spies that hide inside your computer and look for code that you copied and pasted. They easily detected it ingame and D/Ced you.

    HS is getting pretty smart about these C+Pers.

  4. The Following 2 Users Say Thank You to Crash For This Useful Post:

    Solify (07-27-2010),whatup777 (07-27-2010)

  5. #4
    zachery's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    My Mood
    Tired
    So what do i do
    Last edited by zachery; 07-27-2010 at 08:00 AM.

  6. #5
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Quote Originally Posted by zachery View Post
    how do i pack it??
    Stop C+Ping. And try changing the LT addy to 0x007D9200


    If you cant do that learn C++./yea
    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

  7. #6
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by zachery View Post
    how do i pack it??
    This method may be familiar to you, copying and pasting :

    ht tp://www.google.com/#hl=en&source=hp&q=how+do+you+pack+files+%3F&aq=f& aqi=g10&aql=&oq=&gs_rfai=CzQ_mBklPTLqUIozEiQOP4fjF CQAAAKoEBU_Q5Fbn&pbx=1&fp=6fb550a2476ba2a

    Then remove the space between ht and tp then hit enter and you'll find your answer!

  8. #7
    zachery's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    My Mood
    Tired
    it didn't work

  9. #8
    EDWINSEE's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Arkansas
    Posts
    125
    Reputation
    10
    Thanks
    127
    My Mood
    Angelic
    all the hacks are going to be patch tonight so this hack source is patch after tonight. try to make u own hacks and learn c++ because u used CoderNever base.

  10. #9
    zachery's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    My Mood
    Tired
    how do i change it or do i have to make a new one

  11. #10
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Wow look at you code. You DONT add 208 offset to the new address I gave you. Heres how you do it.
    Code:
    void PushToConsole(const char* Command) {
    DWORD CNADDIE = 0x007d9200;
    void* Send = ( void* )*( DWORD* )(CNADDIE);
    __asm
    {
    /* CREDITS TO CN */
    push Command;
    call Send; 
    add esp, 4;
    }
    }

    xD you fail noob. You have no Sleep its gonna lag a hell load.
    Last edited by whatup777; 07-27-2010 at 08:33 AM.
    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

  12. #11
    Fabolous's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    192.168.1.01
    Posts
    2,704
    Reputation
    261
    Thanks
    682
    My Mood
    Paranoid
    /fpalm ....

    It is because you didnt write it yourself..

Similar Threads

  1. HELP, plz the crozfire hack wont work
    By booyah990 in forum CrossFire Hacks & Cheats
    Replies: 9
    Last Post: 06-02-2009, 07:51 PM
  2. guys come in hacks still works!
    By EliteSlayer in forum Combat Arms Europe Hacks
    Replies: 9
    Last Post: 03-19-2009, 02:00 PM
  3. hacks wont work
    By redstryker in forum General Hacking
    Replies: 1
    Last Post: 03-03-2009, 10:13 PM
  4. free hack wont work
    By realzzz in forum Combat Arms Hacks & Cheats
    Replies: 8
    Last Post: 12-25-2008, 07:48 PM
  5. hacks wont work..!!
    By kaki2007 in forum Combat Arms Hacks & Cheats
    Replies: 1
    Last Post: 12-21-2008, 04:50 AM