Results 1 to 4 of 4
  1. #1
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503

    very simple memory hack

    Heres a very simple memory hack that you can change to your liking, i use it for call of duty world at war to mess around with.

    Code:
    #include <iostream>
    #include <windows.h>
    #include <conio.h>
    #include <string>
    
    using namespace std;
    
    int main()
    {
    	string response;
    	cout << "		     gogogokitty199's   Point   Modifier\n";			//title at the top of program
    	cout << " \n";
    	cout << " \n";
    
    	LPCWSTR Waw = L"Call of Duty®";				//name of game window, example(The Dead Linger)
    	HWND hwnd = FindWindow(0, Waw);
    
    	DWORD process_ID;
    	GetWindowThreadProcessId(hwnd, &process_ID);
    	HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, process_ID);
    	
    	while (true)			//program will reset here
    	{
    		cout << "What do you want to set your points as: ";
    		int Points;
    		cin >> Points;
    		DWORD newdatasize = sizeof(Points);
    		if (WriteProcessMemory(hProcess, (LPVOID)0x018EF124, &Points, newdatasize, NULL))			//enter the address here
    			cout << "point write success\n";
    			cout << "  \n";
    	}
    
    
    
    
    }

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

    COD3RIN (02-13-2014),TryOne (06-16-2014)

  3. #2
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by gogogokitty View Post
    Heres a very simple memory hack that you can change to your liking, i use it for call of duty world at war to mess around with.

    Code:
    #include <iostream>
    #include <windows.h>
    #include <conio.h>
    #include <string>
    
    using namespace std;
    
    int main()
    {
        string response;
        cout << "             gogogokitty199's   Point   Modifier\n";            //title at the top of program
        cout << " \n";
        cout << " \n";
    
        LPCWSTR Waw = L"Call of Duty®";                //name of game window, example(The Dead Linger)
        HWND hwnd = FindWindow(0, Waw);
    
        DWORD process_ID;
        GetWindowThreadProcessId(hwnd, &process_ID);
        HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, process_ID);
        
        while (true)            //program will reset here
        {
            cout << "What do you want to set your points as: ";
            int Points;
            cin >> Points;
            DWORD newdatasize = sizeof(Points);
            if (WriteProcessMemory(hProcess, (LPVOID)0x018EF124, &Points, newdatasize, NULL))            //enter the address here
                cout << "point write success\n";
                cout << "  \n";
        }
    
    
    
    
    }
    great code
    ᚛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. #3
    HeyWASSUP's Avatar
    Join Date
    Mar 2014
    Gender
    female
    Location
    https://www.teamspeak.com/invite/ts22.gameservers.com/?port=9366
    Posts
    640
    Reputation
    277
    Thanks
    209
    My Mood
    Devilish
    It needs some fixing

  5. #4
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    Quote Originally Posted by HeyWASSUP View Post
    It needs some fixing
    meh it workes for what i was doing. any suggestions? im still new
    LEEEEEEROY JEEEEENKINS

Similar Threads

  1. [Detected] Kareem'111 & Ramo's Simple Memory Hack
    By 3D in forum CrossFire Hacks & Cheats
    Replies: 133
    Last Post: 12-05-2012, 09:20 PM
  2. [Help] Error Codes For Simple Memory Hacks
    By TheGTAHeroes in forum CrossFire PH Discussions
    Replies: 13
    Last Post: 10-02-2012, 05:22 AM
  3. [Tutorial] How To Create a simple Memory Hack
    By Assassin's Creed in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 5
    Last Post: 12-11-2011, 04:32 PM
  4. Very simple WR Hack
    By akilli in forum WarRock - International Hacks
    Replies: 13
    Last Post: 07-25-2007, 10:25 PM
  5. Very simple WR Hack
    By akilli in forum WarRock - International Hacks
    Replies: 4
    Last Post: 07-25-2007, 08:48 PM