Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Call of Duty Hacks & Cheats › Call of Duty 10 - Ghosts Hacks & Cheats › Call of Duty Ghosts Discussions & Help › [Help Request] Address Read/Write Help

[Help Request] Address Read/Write Help

Posts 1–12 of 12 · Page 1 of 1
SC
SchimmelJoghurt
[Help Request] Address Read/Write Help
Hello mpgh,

i haven't coded in a long time. So i decided to code an aimbot for Ghost. After half an hour i got my addresses ready. Another half an hour my code was finally ready. But as soon as i started it nothing happend. So i searched for a mistake. My Addresses were all right. But as soon as i do a ReadProcessMemory(HANDLE, ADDRESS, &VAR, SIZEOF(), NULL) i get totally wrong results. What did i do wrong? Hopefully somebody can help me, it really bothers me right now. If you need more information just tell me .

Greetings

PS: Sorry for my english
#1 · 12y ago
MY
MyNameXsh
Did you test it on 3.2? The game did just update last night so maybe the addresses changed? Maybe seeing the source code would help a bit more..
#2 · 12y ago
ImMalkah
ImMalkah
Quote Originally Posted by MyNameXsh View Post
Did you test it on 3.2? The game did just update last night so maybe the addresses changed? Maybe seeing the source code would help a bit more..
Well to play the game what it does is first update then launch the game... So he obviously didn't test it on 3.2.
#3 · 12y ago
MY
MyNameXsh
Quote Originally Posted by MaroonishBlood View Post
Well to play the game what it does is first update then launch the game... So he obviously didn't test it on 3.2.
Kind of meant that maybe he tested yesterday before the update... but I understand
#4 · 12y ago
ImMalkah
ImMalkah
Quote Originally Posted by MyNameXsh View Post
Kind of meant that maybe he tested yesterday before the update... but I understand
Well, it was posted 3 hours ago, but yea you never know .
#5 · 12y ago
SC
SchimmelJoghurt
I tested in version 3.3.3. At the moment i'm at work, but if i'm home i'll give you guys some code examples.
#6 · 12y ago
Horror
Horror
Maybe your ReadWrite function is broken
#7 · 12y ago
LO
Lovroman
We can't know what you did wrong if we don't see your code..
#8 · 12y ago
SC
SchimmelJoghurt
Ok here's some code. It's very simple. All it does is grab the process by the Name and write to the AmmoAddress. But if i run it, nothing happens. The Address is correct, because if i change the value of this address in cheat engine it changes. Hopefully somebody can help me.

Code:
#include <iostream>
#include <Windows.h>

HANDLE hProcHandle;

int main()
{
	bool GameRunning = false;
	LPCSTR LGameWindow = "Call of Duty® Ghosts Multiplayer"; //Game Name, wichtig das er genau so wie der Window Titel ist
	
	while(!GameRunning)
	{
		HWND hGameWindow = NULL;
		DWORD ProcId = NULL;
		hProcHandle = NULL;
		GameRunning = false;

		hGameWindow = FindWindow(NULL, LGameWindow);

		system("cls");
		if(hGameWindow)
		{
			GetWindowThreadProcessId(hGameWindow, &ProcId);
			if(ProcId != 0)
			{
				hProcHandle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, ProcId);
				if(hProcHandle == INVALID_HANDLE_VALUE || hProcHandle == NULL)
				{
					std::cout << "Failed to open process for valid handle";
				}
				else
				{					
					std::cout << "Game Found!";
					GameRunning = true;
				}
			}
			else
			{
				std::cout << "Failed to obtain process id";
			}
		}
		else
		{
			std::cout << "Game not found!";
		}
	}

	DWORD AmmoAddress = 0x1443A5774;

	WriteProcessMemory(hProcHandle, (PBYTE*) AmmoAddress, "100", sizeof(int), 0);
}
#9 · 12y ago
LO
Lovroman
Quote Originally Posted by SchimmelJoghurt View Post
Ok here's some code. It's very simple. All it does is grab the process by the Name and write to the AmmoAddress. But if i run it, nothing happens. The Address is correct, because if i change the value of this address in cheat engine it changes. Hopefully somebody can help me.
Does it find game window or WPM is the problem ?

You can try this(I doubt it will have any different effect ):
Code:
WriteProcessMemory(hProcHandle, (LPVOID) 0x1443A5774, "100", sizeof(int), 0);
#10 · 12y ago
SC
SchimmelJoghurt
Finally i found the mistake. My Project was 32bit but ghost requires 64bit. Didn't known that. Thanks all of you for your help, great to see how nice People are .
#11 · 12y ago
LO
Lovroman
Quote Originally Posted by SchimmelJoghurt View Post
Finally i found the mistake. My Project was 32bit but ghost requires 64bit. Didn't known that. Thanks all of you for your help, great to see how nice People are .
Haha, I was going to suggest that, but I assumed you already know that you have to compile it as 64 bit project so I didn't say anything about it..
//Closed
#12 · 12y ago
Posts 1–12 of 12 · Page 1 of 1

Post a Reply

Similar Threads

  • [request] Help with AddressBy Grim09 in WarRock - International Hacks
    21Last post 18y ago
  • Help/Request!- ALL HACK PROGRAMERS READ.By daemonte5 in CrossFire Help
    17Last post 14y ago
  • [Source Help]Read/Write Text[Solved]By Samueldo in Visual Basic Programming
    4Last post 16y ago
  • [Help Request]Read-Only WebbrowserBy omanel in Visual Basic Programming
    11Last post 16y ago
  • [Help] Read & write text file like:NAME1, LINK[Solved]By shotyoudie in Visual Basic Programming
    6Last post 15y ago

Tags for this Thread

None