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 Brazil Hacks › Combat Arms BR Hack Coding/Source Code › class consoles

class consoles

Posts 1–8 of 8 · Page 1 of 1
Code64
Code64
class consoles
Classe:
Code:
class cConsoles{
public:
		char espaco0[4];
	float FPS; //0x0004
		char espaco1[4296];
	float PlayerGravity; //0x10D0
		char espaco2[824];
	float BaseMoveAccel; //0x140C
		char espaco3[32];
	float StartAccel; //0x1430
		char espaco4[32];
	float MaxAccel; //0x1454
		char espaco5[32];
	float AccelInc; //0x1478
		char espaco6[32];
	float WalkVel; //0x149C
		char espaco7[32];
	float FRunVel; //0x14C0
		char espaco8[32];
	float BRunVel; //0x14E4
		char espaco9[32];
	float SRunVel; //0x1508
		char espaco10[32];
	float JumpVel; //0x152C
		char espaco11[32];
	float DuckVel; //0x1550
		char espaco12[30392];
	float ActivationDistance; //0x8C0C
		char espaco13[2720];
	DWORD ShowFirePath; //0x96B0
}; //by Code64 [Code RED] -> 05/10/2013
Definir:
Code:
#define ADDR_Consoles	0x3791EED0

cConsoles* pConsoles;
Acessar:
Code:
pConsoles = (cConsoles*)ADDR_Consoles;
Exemplo usar:
Code:
On: pConsoles->FPS = 1.0f
Off: pConsoles->FPS = 0.0f

Créditos: Code64(Code RED)
Thanks: xCyniu -> Por ser primeiro postar endereços de consoles
#1 · 12y ago
Fєηix
Fєηix
Bom Trabalho
#2 · 12y ago
Coder.Anonymous
Coder.Anonymous
Belo Trabalho Bitch!
#3 · 12y ago
arun823
arun823
Lel, might as well make a class for all pointers used for your hax while you're at it.

Btw, ShowFirePath returns a float value, not DWORD, wtf. Just checked in reclass
#4 · 12y ago
Black Diamond
Black Diamond
Outro Exemplo

On:

Code:
pConsoles->BaseMoveAccel = 3000.0f + 3000.0f * 3.0f;
pConsoles->StartAccel = 500.0f + 500.0f * 3.0f;
pConsoles->MaxAccel = 3000.0f + 3000.0f * 3.0f;
pConsoles->AccelInc = 6000.0f + 6000.0f * 3.0f;
pConsoles->WalkVel = 70.0f + 70.0f * 3.0f;
pConsoles->FRunVel = 285.0f + 285.0f * 3.0f;
pConsoles->BRunVel = 285.0f + 285.0f * 3.0f;
pConsoles->SRunVel = 285.0f + 285.0f * 3.0f;
pConsoles->DuckVel = 50.0f + 50.0f * 3.0f;
Off:

Code:
pConsoles->BaseMoveAccel = 3000.0f;
pConsoles->StartAccel = 500.0f;
pConsoles->MaxAccel = 3000.0f;
pConsoles->AccelInc = 6000.0f;
pConsoles->WalkVel = 70.0f;
pConsoles->FRunVel = 285.0f;
pConsoles->BRunVel = 285.0f;
pConsoles->SRunVel = 285.0f;
pConsoles->DuckVel = 50.0f;
#5 · 12y ago
KS
kssiobr
Quote Originally Posted by Black Diamond View Post
Outro Exemplo

On:

Code:
pConsoles->BaseMoveAccel = 3000.0f + 3000.0f * 3.0f;
pConsoles->StartAccel = 500.0f + 500.0f * 3.0f;
pConsoles->MaxAccel = 3000.0f + 3000.0f * 3.0f;
pConsoles->AccelInc = 6000.0f + 6000.0f * 3.0f;
pConsoles->WalkVel = 70.0f + 70.0f * 3.0f;
pConsoles->FRunVel = 285.0f + 285.0f * 3.0f;
pConsoles->BRunVel = 285.0f + 285.0f * 3.0f;
pConsoles->SRunVel = 285.0f + 285.0f * 3.0f;
pConsoles->DuckVel = 50.0f + 50.0f * 3.0f;
Off:

Code:
pConsoles->BaseMoveAccel = 3000.0f;
pConsoles->StartAccel = 500.0f;
pConsoles->MaxAccel = 3000.0f;
pConsoles->AccelInc = 6000.0f;
pConsoles->WalkVel = 70.0f;
pConsoles->FRunVel = 285.0f;
pConsoles->BRunVel = 285.0f;
pConsoles->SRunVel = 285.0f;
pConsoles->DuckVel = 50.0f;
Não testei mas será que assim também daria certo?
Code:
pConsoles->BaseMoveAccel = (3000.0f * 2) * 3.0f;
#6 · 12y ago
Code64
Code64
Quote Originally Posted by kssiobr View Post

Não testei mas será que assim também daria certo?
Code:
pConsoles->BaseMoveAccel = (3000.0f * 2) * 3.0f;
não precisa ficar fazendo operações aritméticas, coloque o valor direto

Code:
On:
pConsoles->BaseMoveAccel = 6000.0f

Off:
pConsoles->BaseMoveAccel = 3000.0f
6000.0f foi apenas um exemplo, pode ser qualquer valor, maior ou menor
#7 · 12y ago
KS
kssiobr
Quote Originally Posted by Code64 View Post
não precisa ficar fazendo operações aritméticas, coloque o valor direto

Code:
On:
pConsoles->BaseMoveAccel = 6000.0f

Off:
pConsoles->BaseMoveAccel = 3000.0f
6000.0f foi apenas um exemplo, pode ser qualquer valor, maior ou menor
Verdade bem reparado, já estamos é vacilando kkkk, é só colocar logo o valor...
#8 · 12y ago
Posts 1–8 of 8 · Page 1 of 1

Post a Reply

Similar Threads

  • [Tutorial]Change class without respawnBy vir2000 in Game Hacking Tutorials
    0Last post 20y ago
  • Guild Wars New ClassesBy Chronologix in General Gaming
    24Last post 20y ago
  • Just in case you use the Console Administrator Hack...By Rocker1989 in Gunz General
    9Last post 20y ago
  • Console WarsBy arunforce in Entertainment
    9Last post 20y ago
  • Heavy Weapons Class mine bug. I had no idea.By NukeAssault in General Gaming
    2Last post 20y ago

Tags for this Thread

None