Page 3 of 3 FirstFirst 123
Results 31 to 45 of 45
  1. #31
    CoderNever's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    https://mpgh.net MPGHCash: $700,458,011
    Posts
    1,198
    Reputation
    131
    Thanks
    2,236
    My Mood
    Buzzed
    if you do, don't forget to credit him.

  2. #32
    Fabolous's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    192.168.1.01
    Posts
    2,704
    Reputation
    261
    Thanks
    682
    My Mood
    Paranoid
    Deadlinez = Stupid Fuck. 'Nuff Said

  3. #33
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    If I may, a quote from Deadlinez about 15 days ago on a different site.

    Quote Originally Posted by DeadLinez View Post
    here is my full source for my combat arms hack, and i wanted to know how to add a menu to this, i tryed everything. can someone help me? if you help me your name will be on the menu, and in the credits.

    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(char* sVal)
    {
        DWORD zAddress = 0x007D9200;
        void* szConsole = (void*)*(DWORD*)(zAddress);
        _asm
        {
            push sVal
                call szConsole
                add esp, 4
        }
    }
    //*****************************************************************************
    
    //*****************************************************************************
    bool Memoria( void * pDest, char * szPatch, size_t sSize )//NOP Function
    { 
        DWORD dwOrgProtect = NULL; 
        if ( !VirtualProtect ( pDest, sSize, PAGE_EXECUTE_READWRITE, &dwOrgProtect ))
            return FALSE;
    
        Memoria( pDest, szPatch, sSize ); 
        VirtualProtect( pDest, sSize, dwOrgProtect, NULL ); 
        return TRUE; 
    }
    //*****************************************************************************
    void main()
    {
    
        while (!IsGameReadyForHook()){
            Sleep(20);
        }
        bool espbox = false;
        bool nofog = false;
        bool nxcham = false;
        bool fps = false;
        bool stat = false;
        bool freeeze = false;
    
        while(true){
    
            PushToConsole("ShowFps 1");
    
    
            if(GetAsyncKeyState(VK_NUMPAD1)<0){
                if(espbox){
                    PushToConsole("ModelDebug_DrawBoxes 0");
    
                    espbox = false;
                } else {
                    PushToConsole("ModelDebug_DrawBoxes 1");
                    espbox = true;
                }
            }
            Sleep(20);
            if(GetAsyncKeyState(VK_NUMPAD2)<0){
                if(nxcham){
                    PushToConsole("SkelModelStencil 0" );
    
                    nxcham = false;
                } else {
                    PushToConsole("SkelModelStencil 1" );
                    nxcham = true;
                }
            }
            Sleep(20);
            if(GetAsyncKeyState(VK_NUMPAD3)<0){
                if(nofog){
                    PushToConsole("FogEnable 0" );
                    nofog = false;
                } else {
                    PushToConsole("FogEnable 1" );
                    nofog = true;
                }
            }
            Sleep(20);
            if(GetAsyncKeyState(VK_NUMPAD4)<0){
                if(nofog){
                    PushToConsole("ShowPerformanceStatistics 0");
                    nofog = false;
                } else {
                    PushToConsole("ShowPerformanceStatistics 1");
                    nofog = true;
                }
            }
            Sleep(20);
            if(GetAsyncKeyState(VK_NUMPAD3)<0){
                if(freeeze){
                    PushToConsole("FreezeTime 0");
    
                    freeeze = false;
                } else {
                    PushToConsole("FreezeTime 1");
    
                    freeeze = true;
                }
            }
            Sleep(20);
    
        }
    }
    
    //*****************************************************************************
    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;
    }
    Good luck with your fail.
    Probably has PushToConsole("UnlimAmmo 1");

  4. The Following User Says Thank You to Crash For This Useful Post:

    markoj (08-05-2010)

  5. #34
    markoj's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    s
    Posts
    1,064
    Reputation
    60
    Thanks
    407
    My Mood
    Bored
    Quote Originally Posted by Crash View Post
    Probably has PushToConsole("UnlimAmmo 1");
    Actually I think its
    PushToConsole("InfAmmo 1");
    Dont ban me

  6. #35
    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 Crash View Post
    If I may, a quote from Deadlinez about 15 days ago on a different site.



    Good luck with your fail.
    Probably has PushToConsole("UnlimAmmo 1");
    Lol I remember that.
    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. #36
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic
    lol wow guys, crash wtf is that? and its not a ptc..

  8. #37
    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 DeadLinez View Post
    lol wow guys, crash wtf is that? and its not a ptc..
    What do you think it is ? From the looks of it I'd say you're begging there and bullshitting here.

  9. #38
    Sh3hw4z's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    30
    Quote Originally Posted by Crash View Post
    If I may, a quote from Deadlinez about 15 days ago on a different site.



    Good luck with your fail.
    Probably has PushToConsole("UnlimAmmo 1");
    Lol i remember when super bullets was a ptc.

  10. #39
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic
    well super bullets work for me with 3 addresses, and its not a ptc, and its easy to find. and crash i did not post that, trying to make me look like i cant code?

  11. #40
    Sh3hw4z's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    30
    Quote Originally Posted by DeadLinez View Post
    well super bullets work for me with 3 addresses, and its not a ptc, and its easy to find. and crash i did not post that, trying to make me look like i cant code?
    i know that super bullet isnt a ptc anymore.i was talking about the good ol' days.

  12. #41
    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 DeadLinez View Post
    well super bullets work for me with 3 addresses, and its not a ptc, and its easy to find. and crash i did not post that, trying to make me look like i cant code?
    Who did post it then because it appears that is your username.

  13. #42
    Fabolous's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    192.168.1.01
    Posts
    2,704
    Reputation
    261
    Thanks
    682
    My Mood
    Paranoid
    Quote Originally Posted by Crash View Post
    Who did post it then because it appears that is your username.
    Troof. Troof /yea

  14. #43
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    I Did see you on uc asking for help with menu i believe?

  15. #44
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Yeah he's just trolling.
    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. #45
    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
    Box with crosshair -.-
    /FP
    -Rest in peace leechers-

    Your PM box is 100% full.

Page 3 of 3 FirstFirst 123

Similar Threads

  1. [RELEASE] Useful Functions
    By ac1d_buRn in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 188
    Last Post: 10-26-2010, 05:12 PM
  2. [Release] DrawCheckBox Function
    By DeadLinez in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 17
    Last Post: 09-10-2010, 04:49 AM
  3. [RELEASE] Time & Date Function
    By Fabolous in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 26
    Last Post: 07-13-2010, 02:55 AM
  4. [Release] Sals 1njector 4.0 with functions [Release]
    By Sals in forum CrossFire Hacks & Cheats
    Replies: 245
    Last Post: 06-20-2010, 08:33 AM
  5. [Discussion] Ideas for my next launcher release, look, functions & more
    By teun95 in forum CrossFire Hacks & Cheats
    Replies: 17
    Last Post: 03-02-2010, 04:38 PM