Results 1 to 2 of 2
  1. #1
    kevinsel's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    9

    Taking 4 miniguns 900 shots - code to do the hack

    Here's code to get 4 miniguns 900 shots, good for maps armed team.
    To turn the weapons, press the number 9 key numpad.
    To login to your account, use the numbers above your keyboard, because they use the number 9 numpad, the game will close.



    Code:
    #include <windows.h>
    
    #define ADDR_WEAPONSET 0x37A3B200
    
    VOID WINAPIV THREAD (LPVOID)
    {
    	while (! GetModuleHandleA ("ClientFX.fxd"))
    		Sleep (100);
    
    	while (1)
    	{
    		if (GetAsyncKeyState (VK_NUMPAD9) & 1) // key to activate before entering the game
    		{
    			DWORD dwWeaponSet = * (DWORD *) (+ ADDR_WEAPONSET 0x1EC);
    			* (DWORD *) (* (DWORD *) (* (* DWORD) (dwWeaponSet + 0x48) + 0x0) + 0x14) = 291; // Replaces your standard primary weapon
    			* (DWORD *) (* (DWORD *) (* (* DWORD) (dwWeaponSet + 0x48) + 0x4) + 0x14) = 291; // Replaces your standard secondary weapon
    			* (DWORD *) (* (DWORD *) (* (* DWORD) (dwWeaponSet + 0x48) + 0x8) + 0x14) = 291; // Replaces your standard knife
    			* (DWORD *) (* (DWORD *) (* (* DWORD) (dwWeaponSet + 0x48) 0xC +) + 0x14) = 291; // Replaces your standard grenade
    		}
    
    		Sleep (100);
    	}
    }
    
    BOOL APIENTRY DllMain (HINSTANCE hinstDLL, fdwReason DWORD, LPVOID lpvReserved)
    {
    	if (fdwReason == DLL_PROCESS_ATTACH)
    	{
    		DisableThreadLibraryCalls (hinstDLL);
    		CreateThread (0, 0, (LPTHREAD_START_ROUTINE) THREAD, 0, 0, 0);
    	}
    
    	return TRUE;
    }

  2. #2
    Katrunda's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Location
    Looking for a computer screen right now...
    Posts
    34
    Reputation
    10
    Thanks
    22
    My Mood
    Angelic
    Web Cheats.A gente vê por aqui !

Similar Threads

  1. [Request] WF D3D released the source code available in the AVA WF OP7
    By Peter pan i in forum WolfTeam General
    Replies: 3
    Last Post: 10-22-2010, 08:23 AM
  2. [Preview]My D3D menu (If i have already get the codes, i will put hack functions)
    By ovenran in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 8
    Last Post: 09-09-2010, 08:48 AM
  3. First screen shot in game of the new patch !
    By Gael Monfils in forum CrossFire Discussions
    Replies: 4
    Last Post: 06-23-2010, 09:29 PM
  4. [Help] how can i take a screen shot in crossfire
    By Fazifaizrock in forum CrossFire Hacks & Cheats
    Replies: 11
    Last Post: 03-13-2010, 08:00 AM
  5. [Help] how can i take a screen shot in crossfire
    By Fazifaizrock in forum CrossFire Hacks & Cheats
    Replies: 3
    Last Post: 03-13-2010, 05:03 AM