Results 1 to 10 of 10
  1. #1
    EDWINSEE's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Arkansas
    Posts
    125
    Reputation
    10
    Thanks
    127
    My Mood
    Angelic

    Here is mine Hot key Hack source: Credit to CodeNever & BloodSkin.

    here is the source i been working on it is detected for me it has no errors copy & paste but u got to update it next week after the patch.
    __________________________________________________ ______________
    GIVE CREDIT TO CODENEVER FOR THE BASE AND BLOODSKIN FOR THE HELP ME FIXING THE ERRORS.
    __________________________________________________ ______________

    #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()
    {
    bool HackStatus = false;
    while(true)
    {
    if(GetAsyncKeyState(VK_NUMPAD0)<0 && HackStatus == true ){
    PushToConsole("SkelModelStencil 0");
    PushToConsole("ModelDebug_DrawBoxes 0");
    HackStatus = false;
    }
    if(GetAsyncKeyState(VK_NUMPAD0)<0 && HackStatus == false){
    PushToConsole("SkelModelStencil 1");
    PushToConsole("ModelDebug_DrawBoxes 1");
    HackStatus = true;
    }
    if(GetAsyncKeyState(VK_NUMPAD1)<0 && HackStatus == true){
    PushToConsole("WeaponSway 1");
    HackStatus = false;
    }
    if(GetAsyncKeyState(VK_NUMPAD1)<0 && HackStatus == false){
    PushToConsole("WeaponSway 0");
    HackStatus = true;
    }
    if(GetAsyncKeyState(VK_NUMPAD2)<0 && HackStatus == true){
    PushToConsole("PerturbRotationEffect 3.000000");
    PushToConsole("PerturbIncreaseSpeed 3.000000");
    PushToConsole("PerturbWalkPercent 9.000000");
    PushToConsole("PerturbFiringIncreaseSpeed 0.500000");
    HackStatus = false;
    }
    if(GetAsyncKeyState(VK_NUMPAD2)<0 && HackStatus == false){
    PushToConsole("PerturbRotationEffect 0.000000");
    PushToConsole("PerturbIncreaseSpeed 0.000000");
    PushToConsole("PerturbWalkPercent 0.000000");
    PushToConsole("PerturbFiringIncreaseSpeed 0.000000");
    HackStatus = true;
    }
    if(GetAsyncKeyState(VK_NUMPAD3)<0 && HackStatus == true){
    memcpy((LPVOID)0x3741A550, "\xD8\x66\x54", 3);
    memcpy((LPVOID)0x3740AA99, "\xD9\x46\x54", 3);
    memcpy((LPVOID)0x3741A564, "\xD9\x5E\x54", 3);
    memcpy((LPVOID)0x3741A567, "\xD9\x46\x48", 3);
    memcpy((LPVOID)0x3741A570, "\xD9\x5E\x48", 3);
    HackStatus = false;
    }
    if(GetAsyncKeyState(VK_NUMPAD3)<0 && HackStatus == false){
    memcpy((LPVOID)0x3741A550, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3740AA99, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3741A564, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3741A567, "\x90\x90\x90", 3);
    memcpy((LPVOID)0x3741A570, "\x90\x90\x90", 3);
    HackStatus = true;
    }
    if(GetAsyncKeyState(VK_NUMPAD4)<0 && HackStatus == true){
    memcpy((LPVOID)0x37466264, "\x0F\x84\xB1\x01\x00\x00", 6);
    HackStatus = false;
    }
    if(GetAsyncKeyState(VK_NUMPAD4)<0 && HackStatus == false){
    memcpy((LPVOID)0x37466264, "\x90\x90\x90\x90\x90\x90", 6);
    HackStatus = true;
    }
    }}
    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;
    }

  2. #2
    wizzerkin's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    in a toke circle
    Posts
    527
    Reputation
    10
    Thanks
    73
    My Mood
    Relaxed
    and wat hacks are in there i see boxes and weapon sway but wat else
    And continue on my mission fishin for the yum yum but im movin slow

  3. #3
    DethBlaze's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    93
    Reputation
    30
    Thanks
    96
    Quote Originally Posted by wizzerkin View Post
    and wat hacks are in there i see boxes and weapon sway but wat else
    Nx Chams, Boxes, Weapon sway, Speed hack, No Recoil, No Reload

  4. #4
    EDWINSEE's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Arkansas
    Posts
    125
    Reputation
    10
    Thanks
    127
    My Mood
    Angelic
    the hacks got nx charms, boxes, no sway, no spread, no recoil, and no reload. i add more hacks on mine next release but all hacks are detected for me.

  5. #5
    AVGN's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Kekistan
    Posts
    15,566
    Reputation
    1817
    Thanks
    6,678
    you forgot this...

    system("start https://www.mpgh.net/");




  6. #6
    EDWINSEE's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Arkansas
    Posts
    125
    Reputation
    10
    Thanks
    127
    My Mood
    Angelic
    Quote Originally Posted by AVGN View Post
    you forgot this...

    system("start https://www.mpgh.net/");
    I know this is mine first hack I will add it on mine next released i cannot test it out because all hacks are detected for me.

  7. #7
    carterv's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    3
    My Mood
    Devilish
    You should try commenting your code to make it easier to read.

  8. #8
    fondelz's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    USA
    Posts
    68
    Reputation
    10
    Thanks
    6
    i'll test it

    edit: worked flawlessly for first hack congratulations
    Last edited by fondelz; 07-25-2010 at 03:54 PM.

    Combat Arms
    IGN=xIpoolkingIx

  9. #9
    BloodSkin's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Columbus, OH
    Posts
    353
    Reputation
    11
    Thanks
    63
    glad i could be of assistance.

  10. #10
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Maybe you should start learning c++?
    /Closed
    -Rest in peace leechers-

    Your PM box is 100% full.

Similar Threads

  1. [Help] Creating Hot-Keys For My Hack [Solved]
    By Phizo in forum C++/C Programming
    Replies: 7
    Last Post: 09-25-2011, 11:20 AM
  2. [Release] [Hot-key] I've made sausage from CA's new anti-hack
    By .::SCHiM::. in forum Combat Arms Europe Hacks
    Replies: 1
    Last Post: 11-03-2010, 10:43 AM
  3. TOPBLAST FULL HACK SOURCE... FULL THING!! IT IS HERE!!!!!!!!!!!!!!!!!!!!!!
    By topblast in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 122
    Last Post: 10-08-2010, 11:43 PM
  4. hey all you noobs free hack source codes here!!
    By cnttuchme in forum C++/C Programming
    Replies: 6
    Last Post: 10-22-2009, 05:52 PM
  5. VB6 hacking tut credits to - unseen -
    By obsedianpk in forum WarRock - International Hacks
    Replies: 4
    Last Post: 10-21-2007, 03:01 PM