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 › Other Semi-Popular First Person Shooter Hacks › Black Squad Hacks & Cheats › Black Squad sdk updated

Black Squad sdk updated

Posts 1–15 of 44 · Page 1 of 3
SrRevo
SrRevo
Black Squad sdk updated
Well sorry for the time its a old almost 1 month but still working i didint get any feed back about not working.
THIS ITS NOT A DLL!!, u still know c++ ...


https://virusscan.jotti.org/en-GB/fi...job/48hgy4s62j
https://www.virustotal.com/#/file-an...UyNDY2MzY1OQ==
Black Squad_mpgh.net.rar
#1 · edited 8y ago · 8y ago
DI
diggyboy3333
anyone tried this? up

- - - Updated - - -
#2 · edited 8y ago · 8y ago
HA
HamSlapper
Still pending approval
#3 · 8y ago
DI
diggyboy3333
hope this is it.
#4 · 8y ago
boomeroid
boomeroid
Quote Originally Posted by SrRevo View Post
Well sorry for the time its a old almost 1 month but still working i didint get any feed back about not working.
THIS ITS NOT A DLL!!, u still know c++ ...

I've seen you stick around this section for Black Squad for months now, the same as me. Have you had any luck and managed to get that SDK up and working? Like do you yourself have the wallhack working?
#5 · 8y ago
SrRevo
SrRevo
Quote Originally Posted by boomeroid View Post
I've seen you stick around this section for Black Squad for months now, the same as me. Have you had any luck and managed to get that SDK up and working? Like do you yourself have the wallhack working?
This its a work of 4 peoples, 2 from VIP website, we tryed do something with injection but BE dont give any chance. heartbeat give me cancer xd
At moment im more focus on warframe and trainers before BS, because i realy dont need hacks for BS xd

@boomeroid Try external instead, but does not seem to be working.
Code:
DWORD GameEngine = 0x18FDB3C;
DWORD Offset_GamePlayer = 0x4FC;

//OFFSETS
DWORD Offset_Actor = 0x40;
DWORD Offset_WorldInfo = 0x00E4;

DWORD Offset_Pawn = 0x01D8;
DWORD Offset_PawnList = 0x0460;
DWORD Offset_NextPawn = 0x01F8;

DWORD Offset_PlayerReplicationInfo = 0x0354;
DWORD Offset_PlayerName = 0x01E0;

class ULocalPlayer
{
public:
	static int GamePlayers()
	{
		return Mem.ReadMem<int>(Mem.ReadMem<int>(Mem.ReadMem<int>(GameEngine) + Offset_GamePlayer) + 0x0);
	}
};

VOID CallTest()
{
	auto LocalPlayer = ULocalPlayer::GamePlayers();
	if (!LocalPlayer)
		printf("Error LocalPlayer\n");

	auto pController = Mem.ReadMem<int>(LocalPlayer + Offset_Actor);

	auto LocalPawn = Mem.ReadMem<int>(pController + Offset_Pawn);
	auto WorldInfo = Mem.ReadMem<int>(pController + Offset_WorldInfo);
	auto PlayerReplicationInfo = Mem.ReadMem<int>(pController + Offset_PlayerReplicationInfo);
	if (!LocalPawn || !WorldInfo || !PlayerReplicationInfo)
		printf("Error\n");

	auto Target = Mem.ReadMem<int>(WorldInfo + Offset_PawnList);
	while (Target != NULL)
	{
		auto PlayerName = Mem.ReadStr(Mem.ReadMem<int>(PlayerReplicationInfo + Offset_PlayerName), 32);
	
		printf("%s\n", PlayerName.c_str());

		Target = Mem.ReadMem<int>(Target + Offset_NextPawn);
	}

}
#6 · edited 8y ago · 8y ago
ZA
zak4718aq
hello man
you did a brave work.....
can you write how to use it and what to do with those folders?
please
#7 · 8y ago
SrRevo
SrRevo
Quote Originally Posted by zak4718aq View Post
hello man
you did a brave work.....
can you write how to use it and what to do with those folders?
please
Its a wallhack, but its useless for people dont know c++
#8 · 8y ago
IY
iYeania
how to use this?
#9 · 8y ago
SrRevo
SrRevo
Quote Originally Posted by iYeania View Post
how to use this?
i say on top its useless to beginners dont know c++
#10 · 8y ago
XA
xanderlukeGmail
how to work that sir? i hope this is it
#11 · 8y ago
SrRevo
SrRevo
Quote Originally Posted by xanderlukeGmail View Post
how to work that sir? i hope this is it
u need know c++ to make it work
#12 · 8y ago
krchmar
krchmar
So you need to comple it as .dll or what? Or try to do it as .exe?
#13 · 8y ago
HW
hwoarang2010
Quote Originally Posted by SrRevo View Post
u need know c++ to make it work
There is a Thing Called Tutorial so why not make one to help others "beginners" to use this, what's the point of posting it over here and only for Experienced C++ users only, well no point.
#14 · 8y ago
SrRevo
SrRevo
Quote Originally Posted by hwoarang2010 View Post
There is a Thing Called Tutorial so why not make one to help others "beginners" to use this, what's the point of posting it over here and only for Experienced C++ users only, well no point.
its not hard if u have a litle free time to learn it, every guy who made hacks dedicated himself to learn as that simple im on in another session in this website (sdk and need compile files, i hate digger peoples because its not easy made it and comunity dont want take a day or learn, we are on 2018 and every1 need that more simple alot of lazy people. i only do all the work on trainers cheats beacause its easy to made on offline games xd
I can say the true about this post its sdk and not dll because the injection on this game start give me cancer. in future maybe i can post a dll or something but at moment im focus on warframe and trainers with CE.
Well have a good day
#15 · 8y ago
Posts 1–15 of 44 · Page 1 of 3

Post a Reply

Similar Threads

  • Black Friday Room *Updated infoBy noob555 in Combat Arms Discussions
    123Last post 15y ago
  • Akke's Black Ops minitrainer update 4By AkkeDaBest in Call of Duty 7 - Black Ops Hacks & Cheats
    18Last post 15y ago
  • Blacks Ops Zombies [Updated Trainer]By zolferno in Call of Duty 7 - Black Ops Hacks & Cheats
    45Last post 14y ago
  • Black ops new updates for zombie mapsBy lazert in Call of Duty Black Ops Help
    5Last post 14y ago

Tags for this Thread

None