Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    Coper's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    BlackOps3.exe
    Posts
    449
    Reputation
    17
    Thanks
    3,648
    My Mood
    In Love

    How to find NoRecoil Address.

    So Its the video :P
    Video was made by me

    Video:


    What you will need.:
    Call of duty WAW :P

    Olly debugger- dbg

    and little knowledge of olly and CE

    Cheat engine.

    Deafult value is 116 No recoil is (117)

    if you want the address - 0x004807B5

    YOU ONLY LIVE ONCE


  2. The Following 3 Users Say Thank You to Coper For This Useful Post:

    Cosmo_ (05-03-2015),Fєηix (01-09-2014),psa47 (09-11-2015)

  3. #2
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Great tutorial coper
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



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

    shadowstep98 (01-08-2014)

  5. #3
    Coper's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    BlackOps3.exe
    Posts
    449
    Reputation
    17
    Thanks
    3,648
    My Mood
    In Love
    Quote Originally Posted by COD3RIN View Post
    Great tutorial coper
    Thank you cod3rin
    !!

    YOU ONLY LIVE ONCE


  6. The Following User Says Thank You to Coper For This Useful Post:

    COD3RIN (01-08-2014)

  7. #4
    Izochor's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    511
    Reputation
    33
    Thanks
    146
    My Mood
    Lurking
    I saw you online a few days ago on cod5

  8. #5
    Ticherhaz's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Malaysia
    Posts
    6,564
    Reputation
    1376
    Thanks
    1,297
    My Mood
    Inspired
    nice one coper...
    Anything can PM me. I'm from Malaysia.

  9. #6
    Fєηix's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    Brαzil
    Posts
    1,178
    Reputation
    114
    Thanks
    6,891
    My Mood
    Sleepy
    Good Job

  10. #7
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    hey i have a question and it has worked for other games, when i startup my hack its false and does not find the call of duty window. ive tried
    CoDWaW
    Call Of Duty
    Call Of Duty World At War
    and it just wont find the game to change the memory values. any ideas, shouldnt this be correct

    HWND hWnd = FindWindow(0, L"CoDWaW.exe");

  11. #8
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    Quote Originally Posted by gogogokitty View Post
    hey i have a question and it has worked for other games, when i startup my hack its false and does not find the call of duty window. ive tried
    CoDWaW
    Call Of Duty
    Call Of Duty World At War
    and it just wont find the game to change the memory values. any ideas, shouldnt this be correct

    HWND hWnd = FindWindow(0, L"CoDWaW.exe");
    What about: CallOfDuty© (Or whatever window title is(with copyright mark)?

  12. #9
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    Quote Originally Posted by Lovroman View Post

    What about: CallOfDuty© (Or whatever window title is(with copyright mark)?
    just tried that with these and it still didnt work, i also added .exe to the end of all these after i tried them without it.
    CallOfDuty©
    CoDWaW©
    Call Of Duty©
    Call of Duty©
    switching from fullscreen to windowed mode did not offect it, still does not work. anyone have a idea of what its called?
    Last edited by gogogokitty; 01-14-2014 at 02:23 PM.

  13. #10
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    Quote Originally Posted by gogogokitty View Post
    just tried that with these and it still didnt work
    CallOfDuty©
    CoDWaW©
    Call Of Duty©
    do you think it could be because when i alt tab the game freezes? like it just stops(it doesnt stop responding) but like everything ingame stops untill i bring the window back up, idk how to do windowed mode on WAW
    I don't think so..
    r_fullscreen 0 in the main config.

  14. #11
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    Quote Originally Posted by Lovroman View Post


    I don't think so..
    r_fullscreen 0 in the main config.
    yea figured it wouldnt have an effect on it

  15. #12
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    Quote Originally Posted by gogogokitty View Post
    yea figured it wouldnt have an effect on it
    Code:
    int main()
    {
    
        HANDLE snapshot = CreateToolhelp32Snapshot ( TH32CS_SNAPPROCESS, NULL );
    
        PROCESSENTRY32 entry;
        entry.dwSize = sizeof(PROCESSENTRY32);
    
        while ( Process32Next ( snapshot, &entry ) == TRUE )
        {
            if ( stricmp ( entry.szExeFile, "CoDWaW.exe" ) == 0 ) 
            {
                HANDLE hProcess = OpenProcess ( PROCESS_VM_OPERATION | PROCESS_VM_READ  | PROCESS_VM_WRITE, FALSE, entry.th32ProcessID ); 
                address = 0x123456;
                BYTE width = 123;
                WriteProcessMemory ( hProcess, (LPVOID)address, &width, sizeof(width), NULL );
            }
        }
        cin.get();
    }
    Try this.

  16. #13
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    Quote Originally Posted by Lovroman View Post

    Code:
    int main()
    {
    
        HANDLE snapshot = CreateToolhelp32Snapshot ( TH32CS_SNAPPROCESS, NULL );
    
        PROCESSENTRY32 entry;
        entry.dwSize = sizeof(PROCESSENTRY32);
    
        while ( Process32Next ( snapshot, &entry ) == TRUE )
        {
            if ( stricmp ( entry.szExeFile, "CoDWaW" ) == 0 ) 
            {
                HANDLE hProcess = OpenProcess ( PROCESS_VM_OPERATION | PROCESS_VM_READ  | PROCESS_VM_WRITE, FALSE, entry.th32ProcessID ); 
                address = 0x123456;
                BYTE width = 123;
                WriteProcessMemory ( hProcess, (LPVOID)address, &width, sizeof(width), NULL );
            }
        }
        cin.get();
    }
    Try this.
    still didnt, heres mine, some things in it are from what i was using for another game so its just a base for my stuff right now.
    Code:
    #include "stdafx.h"
    #include <iostream>
    #include <Windows.h>
    #pragma comment(lib, "user32.lib")
    
    using namespace std;
    
    
    int _tmain(int argc, _TCHAR* argv[])
    {
    
    	cout << "gogogokitty199's TDL ammo modifier\n";
    	cout << " \n";
    
    	HWND hWnd = FindWindow(0, L"CoDWaW.exe");
    	if (hWnd == 0){
    		cout << "could not find TDL.exe . Please verify that your game is running!\n";
    	}
    	else {
    		cout << "Found TDL.exe \n";
    
    		DWORD proc_id;
    		GetWindowThreadProcessId(hWnd, &proc_id);
    
    		HANDLE hProc = OpenProcess(PROCESS_ALL_ACCESS, FALSE, proc_id);
    		if (!hProc) {
    			cout << "error could not find the process \n";
    		}
    		else {
    			cout << "Found Contagion.exe \n";
    			
    			DWORD Pointer = 0x018EF124;
    			DWORD Pointed;
    			WORD Offset = 0x0;
    			int CurrentAmmo = 0;
    			int newValue;
    
    			ReadProcessMemory(hProc, (LPCVOID)(Pointer), &Pointed, 4, NULL);
    			ReadProcessMemory(hProc, (LPCVOID)(Pointer + Offset), &CurrentAmmo, 4, NULL);
    
    			cout << "enter your desired amount of ammo, max is 230 ";
    			cin >> newValue;
    
    			int Success = WriteProcessMemory(hProc, (LPVOID)(Pointed + Offset), &newValue, (DWORD) sizeof(newValue), NULL);
    
    			if (Success > 0){
    
    				ReadProcessMemory(hProc, (LPCVOID)(Pointer), &Pointed, 4, NULL);
    				ReadProcessMemory(hProc, (LPCVOID)(Pointer + Offset), &CurrentAmmo, 4, NULL);
    				cout << "your ammo has been loaded into your mag \n";
    				cin.get();
    			}
    			else{
    				cout << "Error could not write to process memory";
    				
    			}
    		}
    	}
    		cin.get();
    		return 0;
    }
    also im very new to this stuff, i only have about 8 hours total of learning so far.
    Last edited by gogogokitty; 01-14-2014 at 02:53 PM.

  17. #14
    Izochor's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    511
    Reputation
    33
    Thanks
    146
    My Mood
    Lurking
    c++?

  18. #15
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    Quote Originally Posted by Izochor View Post
    c++?
    yes. after i learn this hopefully then assembly and then java and html

Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 2
    Last Post: 07-13-2010, 08:53 AM
  2. How to Find Box Address?
    By ac1d_buRn in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 12
    Last Post: 02-12-2010, 02:06 PM
  3. How to find Invisible Address
    By 8oo73l2 in forum WarRock - International Hacks
    Replies: 12
    Last Post: 01-28-2008, 12:17 AM
  4. [Tutorial] How to find ESP address.
    By wr194t in forum WarRock - International Hacks
    Replies: 5
    Last Post: 12-20-2007, 03:42 PM
  5. How to find GPS address?
    By scooby107 in forum WarRock - International Hacks
    Replies: 21
    Last Post: 04-16-2007, 03:25 PM