Results 1 to 2 of 2
  1. #1
    yge3d's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0

    Unhappy CoD4 NoRecoil help

    Yo guys... im new to game hacking, so i need help with a norecoil code....

    Code:
    #include <string>
    #include <ctime>
    
    using namespace std;
    
    int main()
    {
    	HWND hWnd = FindWindow(0, "Call of Duty 4");
    		if(hWnd == 0)
    		{
    			cout << "Could Not Find CoD4";
    			system("CLS");
    		}
    			else
    			{
    				cout << "CoD4 Found!";
    				cin.get();
    				DWORD proccess_ID;
    				GetWindowThreadProcessId(hWnd, &proccess_ID);
    				HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, proccess_ID);
    				if(!hProcess)
    				{
    					cout << "Could not open the process!";
    				}
    				else
    				{
    					BYTE newdata[] = {0x90};
    					DWORD newdatasize = sizeof(newdata);
    					if(WriteProcessMemory(hProcess, (LPVOID)0x00457C79, &newdata, newdatasize, NULL))
    					{
    						MessageBox(NULL, "Worked", "Success", MB_OK);
    					}
    					else
    					{
    						MessageBox(NULL, "Error cannot WriteProcessMemory!", "Error", MB_OK);
    					}
    					CloseHandle(hProcess);
    				}
    		}
    		return 0;
    }
    Okay, so im pretty much sure D that the code works... but when i open the hack, IW3MP NOT RESPONDING... it worked perfect in ollydbg.. so whats the problem? can someone more experienced coder help me? I know that this way is 100% PB Detected... but just wanted to test it in bots.

    -Thank you

  2. #2
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    Are you sure it's a 1 byte nop?
    Ah we-a blaze the fyah, make it bun dem!

Similar Threads

  1. COD4 Multiplayer Help
    By thekingbx173 in forum Call of Duty Modern Warfare Help
    Replies: 2
    Last Post: 11-12-2009, 03:21 PM
  2. Cod4 Mulyiplayer Help Please
    By thekingbx173 in forum Call of Duty Modern Warfare Help
    Replies: 2
    Last Post: 11-11-2009, 04:02 PM
  3. Cod4 hack help me!!
    By Royal S.A.H. Force in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 0
    Last Post: 10-12-2009, 11:41 AM
  4. cod4 hack help plzz
    By kissa1512 in forum Suggestions, Requests & General Help
    Replies: 1
    Last Post: 05-12-2009, 07:22 PM
  5. Cod4 hacking help...
    By Domination07 in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 2
    Last Post: 07-01-2008, 12:21 PM

Tags for this Thread