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 › CrossFire Hacks & Cheats › CrossFire Hack Coding / Programming / Source Code › Memory Hack base Using Classes Help I Don't Get It

QuestionMemory Hack base Using Classes Help I Don't Get It

Posts 1–11 of 11 · Page 1 of 1
kmanev073
kmanev073
Memory Hack base Using Classes Help I Don't Get It
Hi dudes,
I finished my first base but it is fuc**n long work to find all the addys so i need to use classes. I thonk that if I use classes i don't need addys right ?
And i tried Brimir's tut but i don't get it. So what should i do?

in the .h file
Code:
class _BasicPlayerInfo 
{
public:
	float MovementDuckWalkRate; 	
};


and


in the .cpp file
Code:
DWORD cshell = (DWORD)LoadLibraryA( "CShell.dll" );
_BasicPlayerInfo  * BasicPlayerInfo = *(_BasicPlayerInfo ** )(cshell + 0xA021F8);
if(BasicPlayerInfo) 
{
		BasicPlayerInfo->MovementDuckWalkRate = 1.0f; //crouch speed
}


BTW @Brimir in your tut for classes you have written "Door map buggen" what is this ?
#1 · 14y ago
Swag
Swag
Quote Originally Posted by kmanev073 View Post
Hi dudes,
I finished my first base but it is fuc**n long work to find all the addys so i need to use classes. I thonk that if I use classes i don't need addys right ?
And i tried Brimir's tut but i don't get it. So what should i do?

in the .h file
Code:
class _BasicPlayerInfo 
{
public:
	float MovementDuckWalkRate; 	
};


and


in the .cpp file
Code:
DWORD cshell = (DWORD)LoadLibraryA( "CShell.dll" );
_BasicPlayerInfo  * BasicPlayerInfo = *(_BasicPlayerInfo ** )(cshell + 0xA021F8);
if(BasicPlayerInfo) 
{
		BasicPlayerInfo->MovementDuckWalkRate = 1.0f; //crouch speed
}


BTW @Brimir in your tut for classes you have written "Door map buggen" what is this ?
Whaha, door map buggen is netherlands xd
#2 · 14y ago
kmanev073
kmanev073
then what it means and tell me how to make the base with classes ?
#3 · 14y ago
Brimir
Brimir
Quote Originally Posted by michielr View Post
Whaha, door map buggen is netherlands xd
haha (a)

That was dutch :P

Quote Originally Posted by kmanev073 View Post
then what it means and tell me how to make the base with classes ?
Make a class, point the class address from crossfire to that class. Done.
#4 · 14y ago
_C
_corn_
hey i might try this class idea... looks good.

would this work:
Code:
class _WeaponClass
{
    public:
        float ReloadAnimRatio;
}

void hack()
{
    //All the loading CShell stuff here
    _BasicPlayerInfo  * BasicPlayerInfo = *(_BasicPlayerInfo ** )(cshell + 0xA68F80);
    _WeaponClass->ReloadAnimRatio = 100.0f;
}
#5 · 14y ago
Brimir
Brimir
Quote Originally Posted by _corn_ View Post
hey i might try this class idea... looks good.

would this work:
Code:
class _WeaponClass
{
    public:
        float ReloadAnimRatio;
}

void hack()
{
    //All the loading CShell stuff here
    _BasicPlayerInfo  * BasicPlayerInfo = *(_BasicPlayerInfo ** )(cshell + 0xA68F80);
    _WeaponClass->ReloadAnimRatio = 100.0f;
}
Read this:

Quote Originally Posted by Brimir View Post
haha (a)

That was dutch :P



Make a class, point the class address from crossfire to that class. Done.

THe BasicPlayerInfo is correct, but you copyed that from my code :P haha.
#6 · 14y ago
kmanev073
kmanev073
@Brimir yes i copied it from your code but i cant understand where to do this in the cpp file or h ? the class is in the h . where should be the pointer ?
BTW
is Door map bugger something for the radar ? or idk google translate says that buggen is ... gay and map is map and door is door
#7 · edited 14y ago · 14y ago
Brimir
Brimir
With that you can walk through some walls :P

But, then you need to learn C++ or C# or any other language where they use this.
#8 · 14y ago
kmanev073
kmanev073
i know C# but i dont know c++ well ok thanks for the info
#9 · 14y ago
_C
_corn_
c++ and C# are similar..... shouldn't be too hard to learn c++ if you know c#
#10 · 14y ago
kmanev073
kmanev073
acctually yes thier logic is very simmilar but the syntax is not. But everything like arrays, loops and functions are same
#11 · 14y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Similar Threads

  • i need help with the hack im usingBy kingster626 in Combat Arms Help
    12Last post 15y ago
  • MPGH Hack Help! **Read, Don't Flame*By monroer454 in Combat Arms Hacks & Cheats
    16Last post 17y ago
  • Working mhs MEMORY HACK need helpBy dinourx7 in Combat Arms Discussions
    2Last post 16y ago
  • How to post hacks without using mediafire? i rly need help on thatBy Bargin in General
    11Last post 17y ago

Tags for this Thread

None