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 › Programming › C++/C Programming › I want a brief explanation on what a base/addy is. (Philong :))

I want a brief explanation on what a base/addy is. (Philong :))

Posts 1–15 of 16 · Page 1 of 2
MightySaa0d
MightySaa0d
I want a brief explanation on what a base/addy is. (Philong :))
So, after i finished reading the C++ language tutorial (As i said before it didn't explain how to make a hack, and i'm sure there are no books teach how to make a hack because they are for learning purposes not hacking) Now i want to jump to CF hacking.

First, what is a base?

is it this?
Code:
DWORD WINAPI Hacks(LPVOID)
{

    bool onehit = true,
     reload = true,
     fragdmg = true,
	 shotgun = true,
	 change = true,
	 weight = true,
	 range = true,
	 nospread = true;


    while(1)
    {
        DWORD CShell     = (DWORD)GetModuleHandleA("CShell.dll");
	DWORD pWeaponMgr = *(DWORD*)(CShell + WeaponMgr);
	//DWORD dwPlayerPointer = *(DWORD*)( CShell + PlayerPointer);
or

Code:
bool IsGameReadyForHook()
{
    if(GetModuleHandleA("CShell.dll")   != NULL
    && GetModuleHandleA("ClientFx.fxd") != NULL)
        return true;
    return false;
}

DWORD WINAPI Wait(LPVOID)
{
    while(!IsGameReadyForHook()) Sleep(200);
	CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hacks, NULL, NULL, NULL);
    return false;
}

BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
    DisableThreadLibraryCalls(hDll);
    
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
	MessageBox(NULL, L"Creditd : ( Write Your Name Here )", MB_OK);

	CreateThread(0,0,(LPTHREAD_START_ROUTINE)Wait,0,0,0);
    }
    return true;
}

I may say it's not, because i think this is a hook.

It cannot be the defined things. it cannot be an offset. it cannot be the hack its self


And one more thing

What is an addy? i'm mixed up between an addy and an offset. Is the addy LT Client?

I hope i don't cause any disturbance
#1 · edited 14y ago · 14y ago
RE
RedDragonz
@MightySaa0d
bro even i read like 5 books still didn't get how to make hacks why don't we work together well i know some of the things add me in msn MPGHcrazies@hotmail.com
#2 · 14y ago
Ghost
[MPGH]Ghost
/moved to C++ section
remember, this is crossfire section, not c++
#3 · 14y ago
RE
RedDragonz
@[MPGH]Ghost
yea i know but less viewers in C++ section !
#4 · 14y ago
MightySaa0d
MightySaa0d
@RedDragonz i added you
#5 · 14y ago
MightySaa0d
MightySaa0d
@Ghost

man move it back to crossfire section

I need help from there, i'm asking about crossfire
#6 · 14y ago
Hassan
Hassan
This belongs here. You'll get help here. Just wait.
#7 · 14y ago
xdajay
xdajay
Man c++ is section with more intealigent Guys you will get help for sure
#8 · 14y ago
RE
RedDragonz
@xdajay
ikr because they can know abt cF hacks and all i would prefer to move this to CF section i also need the help in same thinggy
#9 · 14y ago
xdajay
xdajay
Hmm I think hassen bro should Teach how to make hacks with c++ ,may be . just wait for him
#10 · 14y ago
KI
kibbles18
Hassan knows no more about hacking than many other nameless members...
A base is not really related to hacking, don't worry about bases.
A "addy" or address is a location in memory of some block of code that is usually of some intrest.
For example to get unlimited ammo in some game, you have to find the address that holds the ammo value.
#11 · 14y ago
Hassan
Hassan
Quote Originally Posted by xdajay View Post
Hmm I think hassen bro should Teach how to make hacks with c++ ,may be . just wait for him
Lol. I don't know anything about hacking. Hacks can smd.
#12 · 14y ago
KI
kibbles18
i used to hack now im making games not breaking them
#13 · 14y ago
master131
[MPGH]master131
Isn't a base (in hacking terms) just time a template to create your hack from?
#14 · edited 14y ago · 14y ago
Qmo
Qmo
before jump into making a hack and prior to discussing all of these

may I ask .....
Do you already have and understand the basic of c++ ?
#15 · 14y ago
Posts 1–15 of 16 · Page 1 of 2

Post a Reply

Similar Threads

  • Source Code Dump + Explanations on what they do!By Pixie in Visual Basic Programming
    3Last post 16y ago
  • You guys want a new pub or what?By raghib33 in Alliance of Valiant Arms (AVA) Hacks & Cheats
    78Last post 16y ago
  • What PUBLIC Base do u guys think is the BestBy Finish in Combat Arms Hack Coding / Programming / Source Code
    31Last post 16y ago
  • what do u want to see in a KOL bot?By AN1MAL in General Game Hacking
    6Last post 18y ago
  • I would want makes up of gunz with explanations without errorsBy trinacria in Gunz General
    4Last post 20y ago

Tags for this Thread

None