Page 2 of 2 FirstFirst 12
Results 16 to 18 of 18
  1. #16
    derh.acker's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    localhost
    Posts
    826
    Reputation
    14
    Thanks
    616
    My Mood
    Angelic
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    //optional
    MessageBoxA(0, Msg,Title, 0);
    system("start https://www.mpgh.net");

    CreateThread(0,0,(LPTHREAD_START_ROUTINE)Wait,0,0, 0);
    }

    Yes, it is Swiftdudes base -.-

  2. #17
    jpjb5138's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    109
    Reputation
    10
    Thanks
    6
    My Mood
    Blah
    MessageBoxA(0, Msg,Title, 0);
    system("start https://www.mpgh.net");

    ?????

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

    it's get a dll from the site ???

    and base roong

    MY TEAM :



    To Do list :

    done : [] , not done : [], working one : []

    win kriss super v []
    win thommy gun []
    win ak knife []
    win 6 per guns from bl []
    get a galaxy s phone []
    make a private cf hack [ ]
    make a pub cf hack []
    get a new pc []

  3. #18
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Bulgaria
    Posts
    2,400
    Reputation
    97
    Thanks
    2,537
    My Mood
    Cool
    Quote Originally Posted by Skaterforeva1 View Post
    ok so i have put in the latest addies. i do know c++. dont start no fuckin leacher bull shit. if you look at the bottom there are credits. please help me. im new to cf hacking. this is my base
    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 WeaponMgr       0xA2A7E8
    #define NoReload        0x2424
    #define WeaponDamage    0x0754
    
    float Hithard = 999.0f;
    float FragDmg = 0.0f;
    
    //prevent noob leecher from hex editing
    char Msg[] = {'M','a','d','e',' ','b','y',' ','S','k','a','t','e','r','f','o','r','e','v','a',0 };
    char Title[] = {'N','A',' ','C','F',' ','H','A','C','K',0 };
    
    DWORD WINAPI Hacks(LPVOID)
    {
        bool onehit = false,
             reload = false,
             fragdmg = false;
    
        while(1)
        {
            DWORD CShell     = (DWORD)GetModuleHandleA("CShell.dll");
    	DWORD pWeaponMgr = *(DWORD*)(CShell + WeaponMgr);
    
    	//hotkeys toggle + beep sounds
    	if(GetAsyncKeyState(VK_F9)  || GetAsyncKeyState(VK_NUMPAD0) &1) { onehit = true; Beep(512, 100); }
    	if(GetAsyncKeyState(VK_F10) || GetAsyncKeyState(VK_NUMPAD1) &1) { reload = true; Beep(512, 100); }
    	if(GetAsyncKeyState(VK_F11) || GetAsyncKeyState(VK_NUMPAD2) &1) { fragdmg = true; Beep(512, 100); }
    
    	//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 https://www.mpgh.net");
    
    	CreateThread(0,0,(LPTHREAD_START_ROUTINE)Wait,0,0,0);
        }
        return 1;
    }
    THE FUCKING CREDITS
    @FC4EVER
    LOL waht a leecher OMG
    Last edited by kmanev073; 07-30-2011 at 01:49 AM.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Release] BadBlood CrossFire Hack Boxes+NoSmoke (My First Hack)
    By BadBlood in forum CrossFire Hacks & Cheats
    Replies: 56
    Last Post: 09-08-2010, 06:55 AM
  2. My First Stamina Hack
    By TheBlueMax in forum WarRock - International Hacks
    Replies: 10
    Last Post: 10-01-2007, 03:52 PM
  3. How's this for a first time hack?
    By nukeist_ in forum WarRock - International Hacks
    Replies: 12
    Last Post: 08-23-2007, 09:25 PM
  4. [Release] My first C++ hack
    By Elliwood in forum WarRock - International Hacks
    Replies: 28
    Last Post: 07-27-2007, 10:58 PM
  5. my first public hack :) 30 minutes
    By ZeaS in forum WarRock - International Hacks
    Replies: 31
    Last Post: 07-07-2007, 10:31 AM