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 › Combat Arms Hacks & Cheats › Combat Arms Hack Coding / Programming / Source Code › Player Stats - Class

Player Stats - Class

Posts 1–11 of 11 · Page 1 of 1
Alessandro10
Alessandro10
Player Stats - Class


Class

Code:
Pointer :

0x3718B4E7 // This Address is CA BR

Classes :

class Main;
class Info;
class Stats;
class WepInfo;
class Something;

class Main
{
public:
	Info* goToInfoClass; //0000
};

class Info
{
public:
	char unknown0[8];
	__int32 Unknown1; //0008
	__int32 iCurrentHealth; //000C
	char unknown2[4];
	__int32 iMaxHealth; //0014
        char unknown3[4];
	WepInfo* goToWepInfo;//001C
	Something* goToSomething; //0020
	char unknown4[348];
	float fStamina; //0180
	char unknown5[8];
	__int32 iWeaponSlotInUse; //018C
	float fCameraSomething; //0190
	float fCameraSomething2; //0194
	float fCameraSomething3; //0198
	char unknown6[32];
	Stats* goToStats; //01BC
};

class WepInfo
{
public:
	__int32 iBackPackABulletsLeft; //0000
	__int32 i2ndaryBulletsLeft; //0004
	__int32 Unknown0; //0008
	__int32 iGrenadesLeft; //000C
	__int32 iBackPackBBulletsLeft; //0010
};

class Stats
{
public:
	char unknown0[16];
	char szLocalNameChangesInKill[16]; //0010
	char unknown1[12];
	__int32 iKills; //002C
	__int32 iDeaths; //0030
	char unknown2[44];
	__int32 iHeadShots; //0060
};

class Something
{
public:
	BYTE bIsAlive; //0000
};
How to use

Code:
void FillRGB( int x, int y, int w, int h, D3DCOLOR color, IDirect3DDevice9* pDevice )
{

    D3DRECT rec = { x, y, x + w, y + h };
    pDevice->Clear( 1, &rec, D3DCLEAR_TARGET, color, 0, 0 );
}

void DrawBorder( int x, int y, int w, int h, int px, D3DCOLOR BorderColor, IDirect3DDevice9* pDevice )
{
    FillRGB( x, (y + h - px), w, px,    BorderColor, pDevice );
    FillRGB( x, y, px, h,                BorderColor, pDevice );
    FillRGB( x, y, w, px,                BorderColor, pDevice );
    FillRGB( (x + w - px), y, px, h,    BorderColor, pDevice );
} 

void DrawHealthbar(int x, int y, int w, int h, D3DCOLOR barCol, D3DCOLOR borCol, int hp, int maxhp)
{

FillRGB(x, y, ( hp / (double)maxhp ) * w, h, barCol, pDevice);
DrawBorder(x, y, w, h, borColor, pDevice);

}

DrawHealthbar(15, 15, 125, 15, pMain->gotoInfoClass->iCurrentHealth, pMain->gotoInfoClass->iMaxHealth);

double kills = pMain->gotoInfoClass->gotoStatsClass->iKills, deaths = pMain->gotoStatsClass->gotoStatsClass->iDeaths, kdr;
char *cKDR;

kdr = kills / deaths;

sprintf(cKDR, "Current KDR : %0.02f", kdr);
Credits:
Gellin
Crash
#1 · 15y ago
ac1d_buRn
ac1d_buRn
posted already ages ago
#2 · 15y ago
GodHack2
GodHack2
crash already posted this
#3 · 15y ago
seeplusplus
seeplusplus
xD I was just looking at Crashes post! http://www.mpgh.me/forum/207-combat-...yer-stats.html
#4 · 15y ago
markoj
markoj
Copy + Paste except he took out the
"//etc..."
#5 · 15y ago
seeplusplus
seeplusplus
Guys, give him a break, as you can see he gave credits. Also I noticed that he posted the CABR Pointer, so he's just posting the stuff here again so you don't have to go look for it...
#6 · 15y ago
FA
Fabolous
Lol why are you posting this in CA NA. Go post it in BR as if your using the BR Pointer.
#7 · 15y ago
J
J
old is old .
#8 · 15y ago
^...,^
^...,^
older then my mom

but i agree....credits added....
#9 · 15y ago
CR
Crash
Quote Originally Posted by seeplusplus View Post
Guys, give him a break, as you can see he gave credits. Also I noticed that he posted the CABR Pointer, so he's just posting the stuff here again so you don't have to go look for it...
Pretty easy to find it, just search KeepCurrentAmmo until you find the last string, go to it and go three addresses up.

#10 · 15y ago
FA
Fabolous
Quote Originally Posted by Crash View Post
Pretty easy to find it, just search KeepCurrentAmmo until you find the last string, go to it and go three addresses up.

Rofl nice. Didnt think of that in first place.
#11 · edited 15y ago · 15y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Tags for this Thread

None