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 8 - Modern Warfare 3 (MW3) Hacks & Cheats › Call of Duty Modern Warfare 3 Coding, Programming & Source Code › Get the player list

Get the player list

Posts 1–12 of 12 · Page 1 of 1
AN
Anonymous..
Get the player list
I'm pretty new with this of hacking (Have some knowledge about C++, etc, but still new). I'm trying to get the player list in the match/lobby, of course externally. How this would be? Any guide or something?
#1 · 14y ago
Eidolon
Eidolon
Quote Originally Posted by Anonymous.. View Post
I'm pretty new with this of hacking (Have some knowledge about C++, etc, but still new). I'm trying to get the player list in the match/lobby, of course externally. How this would be? Any guide or something?
Why the f*cking hell would you need that? o.0
#2 · 14y ago
AN
Anonymous..
Quote Originally Posted by Anonymouss View Post


Why the f*cking hell would you need that? o.0
Haha, it sounds stupid. But i'm trying to test stuff. Etc. lol
#3 · 14y ago
Eidolon
Eidolon
Quote Originally Posted by Anonymous.. View Post
Haha, it sounds stupid. But i'm trying to test stuff. Etc. lol
I don't see the point anyway so yea... And I got no idea where you could do that neither
#4 · 14y ago
AN
Anonymous..
I figured it out, whatever is working "partially".

Code:
for(int ClientAmount = 0; ClientAmount < MAXPLAYERS; ClientAmount++) {
    ReadProcessMemory(ModernWarfare3_Handle, (LPCVOID)(CLIENTINFO+ClientAmount*0x52C+0x000C), &(player[ClientAmount].Name), 16, NULL);
}

for(int ClientAmount2 = 0; ClientAmount2 < MAXPLAYERS; ClientAmount2++) {
    cout << player[ClientAmount].Name << "\n";
}
It just returns 1 player name when there are more on the server. (All the other are blank).
#5 · 14y ago
aIW|Convery
aIW|Convery
Well.. can't you just do:
Code:
#include <string>

for(int i = 0; i < MAXPLAYERS; i++)
{
	char temp = NULL;
	if(!(ReadProcessMemory(ModernWarfare3_Handle, (void*)(BASE + CLIENTINFO + (i * 0x33c)), &temp, sizeof(temp), NULL))) continue; //First char in the name
	else
	{
		if(temp == NULL) Playername[i].clear();
		else Get_playername(i);
	}
}

bool Get_playername(int ClientNum)
{
	Playername[ClientNum].clear(); // std::string
	char Cake = NULL;
	unsigned int Address = BASE + CLIENTINFO + (ClientNum * 0x33c);
	for(int c = 0; c < 20; c++)
	{
		if(!(ReadProcessMemory(ModernWarfare3_Handle, (void*)Address, &Cake, sizeof(Cake), NULL))) return 0;
		Address++;
		if(isalnum(Cake) || Cake == '[' || Cake == ']' || Cake == '{' || Cake == '}' || Cake == '~' || Cake == ' ' || Cake == '_' || Cake == '^' || Cake == '|')
		{
			size_t sz;
			sz=Playername[ClientNum].size();
			Playername[ClientNum].resize (sz+1,Cake);	
		}
		else break;
	}
	return 1;
}
Anyways, memory reading and writing should be detected..

Also, you'll want the strings as an array, the sample would do stuff to the char at [] in the string, not another string.. but I'm too lazy to edit :3
#6 · edited 14y ago · 14y ago
AN
Anonymous..
Quote Originally Posted by aIW|Convery View Post
Anyways, memory reading and writing should be detected..
VAC sucks, i've been Reading / Writing to memory 1 - 2 months after game was released and i'm still not banned, so.
#7 · 14y ago
aIW|Convery
aIW|Convery
Quote Originally Posted by Anonymous.. View Post
VAC sucks, i've been Reading / Writing to memory 1 - 2 months after game was released and i'm still not banned, so.
You could always make a driver to do it, pretty sure VAC wouldn't be able to detect it =P
#8 · 14y ago
AN
Anonymous..
Quote Originally Posted by aIW|Convery View Post
You could always make a driver to do it, pretty sure VAC wouldn't be able to detect it =P
o.O How would be that? :P
#9 · 14y ago
PH
Phantomgamers
Quote Originally Posted by aIW|Convery View Post
Anyways, memory reading and writing should be detected..
How could VAC POSSIBLY scan for memory reads? o_O
#10 · 14y ago
MarkHC
MarkHC
Quote Originally Posted by Phantomgamers View Post
How could VAC POSSIBLY scan for memory reads? o_O
In theory, they can... actually I have never see someone get banned for it... VAC sucks...
#11 · 14y ago
aIW|Convery
aIW|Convery
Quote Originally Posted by Phantomgamers View Post
How could VAC POSSIBLY scan for memory reads? o_O
Hook WinAPI? And there's no other way to detect external hacks save for looking for windows and signatures.. go figure..
#12 · edited 14y ago · 14y ago
Posts 1–12 of 12 · Page 1 of 1

Post a Reply

Similar Threads

  • WHAT BUTTON DO I PRESS WHEN IM INGAME TO GET THE HACK LISTBy albon313 in Combat Arms Help
    3Last post 16y ago
  • Getting the players teamBy edub18 in Call of Duty Modern Warfare 3 Help
    2Last post 14y ago
  • i think i found a way to get the ip of the playersBy tahha in Combat Arms Hack Coding / Programming / Source Code
    22Last post 16y ago
  • Can i get the steam account gen???By domin8666 in WarRock - International Hacks
    1Last post 19y ago
  • [help]how would i get the superjump address?By fable741 in WarRock - International Hacks
    9Last post 19y ago

Tags for this Thread

None