Results 1 to 12 of 12
  1. #1
    jimcools's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Canada
    Posts
    245
    Reputation
    10
    Thanks
    18
    My Mood
    Amused

    Hack source code

    so i know its old and out of date but its still a good base you can edit it and all just don't forget the credit..talking about credit...i didn't do this but i edited it couple of day ago and credit goes to hahaz on another forum so here it is
    Code:
    #include<windows.h>
    
    #define grenades ((i==6)||(i==7)||(i==8)||(i==64)||(i==100)||(i==126)||(i==135)||(i==209)||(i==210)||(i==240)||(i==263)||(i==272)||(i==338)||(i==382)||(i==383)||(i==384))
    //#define Knifes    ((i==5)||(i==35)||(i==74)||(i==132)||(i==239)||(i==372)||(i==381))
    //#define Mutant    ((i==120)||(i==176)||(i==177)||(i==178)||(i==182)||(i==195)||(i==196)||(i==197)||(i==198)||(i==199)||(i==223)||(i==224)||(i==225)||(i==226)||(i==227)||(i==228)||(i==270)||(i==271)||(i==302)||(i==303)||(i==304)||(i==305)||(i==306)||(i==307))
    
    //addies 01/05/2011
    #define WeaponMgr       0xA0F338
    #define NoReload        0x2420
    #define WeaponDamage    0x07F8
    
    float Hithard = 999.0f;
    float FragDmg = 0.0f;
    
    //prevent noob leecher from hex editing
    char Msg[] = {'w','w','w','.','m','p','g','h','.','n','e','t',0 };
    char Title[] = {'N','A',' ','C','F',' ','H','A','C','K',0 };
    
    DWORD WINAPI Hacks(LPVOID)
    {
        //in case u need it, dont forget use "else"
        bool onehit = false,
             reload = false,
             fragdmg = false;
    
        while(1)
        {
            DWORD CShell     = (DWORD)GetModuleHandleA("CShell.dll");
    	DWORD pWeaponMgr = *(DWORD*)(CShell + WeaponMgr);
    
    	//hotkeys toggle
    	if(GetAsyncKeyState(VK_F9)  || GetAsyncKeyState(VK_NUMPAD0) &1) { onehit = true; }
    	if(GetAsyncKeyState(VK_F10) || GetAsyncKeyState(VK_NUMPAD1) &1) { reload = true; }
    	if(GetAsyncKeyState(VK_F11) || GetAsyncKeyState(VK_NUMPAD2) &1) { fragdmg = true; }
    
    	//one hit kill
    	if(onehit)
    	{
    	    if (pWeaponMgr)
    	    {
    	        for(int i=0; i<445; i++)
    		{
    		    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i))) != NULL)
    		        *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i))) + WeaponDamage) = Hithard;
    		}
    	    }
    	}
    
    	//no reload
    	if(reload)
    	{
    	    if (pWeaponMgr)
    	    {
    	        for(int i=0; i<445; i++)
    		{
    		    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i))) != NULL)
    		        *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i))) + NoReload) = 100;
    		}
    	    }
    	}
    
    	//no grenade damage
    	if(fragdmg)
    	{
    	    if (pWeaponMgr)
    	    {
    	        for(int i=0; i<445; i++)
    		{
    		    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i))) != NULL && (grenades))
    		        *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i))) + WeaponDamage) = FragDmg;
    		}
    	    }
    	}
    	Sleep(100);
        }
    }
    
    bool Ready2Hook()
    {
        if(GetModuleHandleA("CShell.dll")   != NULL
        && GetModuleHandleA("ClientFx.fxd") != NULL)
            return 1;
        return 0;
    }
    
    DWORD WINAPI Wait(LPVOID)
    {
        while(!Ready2Hook()) Sleep(200);
    	CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hacks, NULL, NULL, NULL);
        return 0;
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
        DisableThreadLibraryCalls(hDll);
        
        if ( dwReason == DLL_PROCESS_ATTACH )
        {
    	//optional
            MessageBoxA(0, Msg,Title, 0);
    	system("start www.mpgh.net");
    
    	CreateThread(0,0,(LPTHREAD_START_ROUTINE)Wait,0,0,0);
        }
        return 1;
    }



    Credits to:
    -Hahaz (other forum)
    -Me for postiing here
    Sorry for my bad english i'm french

    Done[] Not done[] In progress[]
    Get banned on 5 accs[](crossfire)
    Get banned on 10 accs[](crossfire)
    Use hacks[]
    Use VIP hacks[]
    Get 50 posts[]
    Get 100 posts[]
    Get 150 posts[]
    Get 200 posts[]
    Get 500 posts[]
    Get kicked while hacking[]
    Get kicked without hack[]
    Own a hacker without hack[]
    Own a hacker with hack[]
    Get 3 kill with one awm bullet[]
    Learn Programming[]

  2. The Following User Says Thank You to jimcools For This Useful Post:

    Sniper7even (10-27-2011)

  3. #2
    owh's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    On ur sista's bed
    Posts
    205
    Reputation
    7
    Thanks
    38
    My Mood
    Busy
    its swiftdude's base

  4. #3
    jimcools's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Canada
    Posts
    245
    Reputation
    10
    Thanks
    18
    My Mood
    Amused
    then sorry i took it from other forum so credit to swiftdude
    Sorry for my bad english i'm french

    Done[] Not done[] In progress[]
    Get banned on 5 accs[](crossfire)
    Get banned on 10 accs[](crossfire)
    Use hacks[]
    Use VIP hacks[]
    Get 50 posts[]
    Get 100 posts[]
    Get 150 posts[]
    Get 200 posts[]
    Get 500 posts[]
    Get kicked while hacking[]
    Get kicked without hack[]
    Own a hacker without hack[]
    Own a hacker with hack[]
    Get 3 kill with one awm bullet[]
    Learn Programming[]

  5. #4
    Royku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    G-Force.dll
    Posts
    3,015
    Reputation
    381
    Thanks
    3,308
    My Mood
    Devilish
    Older Than my Mom

  6. #5
    antihacking1's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    90
    Reputation
    10
    Thanks
    21
    My Mood
    Aggressive
    Quote Originally Posted by royku View Post
    Older Than my Mom
    That means you are like 2 or something ? /

  7. #6
    GunBoy120's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    In my house lol
    Posts
    102
    Reputation
    10
    Thanks
    5
    My Mood
    Cheerful
    wow old base...
    look for addys.

    this source is detected?

    EDIT:
    OMG X-TRAP DETECT
    Last edited by GunBoy120; 10-25-2011 at 01:11 PM.

  8. #7
    Fly3r's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Not telling.
    Posts
    720
    Reputation
    18
    Thanks
    265
    My Mood
    Paranoid
    @GunBoy120 what did u expect? an undetected base?
    Joined MPGH: 07/08/09


    i used to tell arrow to the knee jokes then i died due to blood loss from takeing tomany arrows to the knee at once
    A network problem caused by you? What did you do? Trip over the cable?




  9. #8
    GunBoy120's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    In my house lol
    Posts
    102
    Reputation
    10
    Thanks
    5
    My Mood
    Cheerful
    @Fly3r im learning C++

  10. #9
    jimcools's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Canada
    Posts
    245
    Reputation
    10
    Thanks
    18
    My Mood
    Amused
    i tell you in the thread that this is old so plz don't spam saying this is old i said it.
    Sorry for my bad english i'm french

    Done[] Not done[] In progress[]
    Get banned on 5 accs[](crossfire)
    Get banned on 10 accs[](crossfire)
    Use hacks[]
    Use VIP hacks[]
    Get 50 posts[]
    Get 100 posts[]
    Get 150 posts[]
    Get 200 posts[]
    Get 500 posts[]
    Get kicked while hacking[]
    Get kicked without hack[]
    Own a hacker without hack[]
    Own a hacker with hack[]
    Get 3 kill with one awm bullet[]
    Learn Programming[]

  11. #10
    NoRulezGaming's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    That is a old detected base from i believe Swiftdude. YOu would mess around with the coding and maybe get it working? Good luck in your c++ adventures.

  12. #11
    MightySaa0d's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    MPGH
    Posts
    602
    Reputation
    14
    Thanks
    208
    My Mood
    Innocent
    dude this is outdated long time ago

    it's release if 5/12

    don't post useless things please, there are noob spammers.
    Quote Originally Posted by Jacket View Post
    I'm sexy as fuck.

    Tired of being like him?
    Then be his master and step on him just like you step of crickets! (cockroaches)


    Thanks to the GalacticGods tutorial (By me). You will become an expert in coding just like him!

    Joke


    Just take my advice seriously and read here!!!!!!!!!!
    AND become like SwiftDude and G-Force!
    https://www.mpgh.net/forum/242-crossf...ml#post5248338

  13. #12
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Bulgaria
    Posts
    2,400
    Reputation
    97
    Thanks
    2,537
    My Mood
    Cool
    3 words: SWIFTDUDE, OLD, PATCHED !

Similar Threads

  1. CF Hack Source Code Rules
    By KING in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 27
    Last Post: 11-12-2010, 08:26 AM
  2. Speed Hack Source Code
    By jeevin in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 8
    Last Post: 04-20-2010, 05:01 PM
  3. Hack source code cpp
    By carlosmamoura in forum C++/C Programming
    Replies: 16
    Last Post: 01-14-2010, 08:27 PM
  4. <releasing 2 morrow> new opk hack ~source code~ C++
    By pikamew4 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 21
    Last Post: 12-02-2009, 02:59 PM
  5. 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