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 Brazil Discussions › [Help] Ajuda com hack! TODOS QUE SABEM: L33t., Alessandro10, Capevaldo, WE11INGTON...

[Help] Ajuda com hack! TODOS QUE SABEM: L33t., Alessandro10, Capevaldo, WE11INGTON...

Posts 1–4 of 4 · Page 1 of 1
DE
DebugHack
[Help] Ajuda com hack! TODOS QUE SABEM: L33t., Alessandro10, Capevaldo, WE11INGTON...
Alguem ai sabe como faz pros hacks em modo console de comando
funcionar? Como que se renderize em Present
ou EndScene ?

TEM COMO EXEMPLIFICAR COM O CODIGOD ABAIXO? VLW


[PHP]
void __cdecl Console(const char* Command)
{
DWORD __LTClient = LTClientEXE;
__asm
{
push Command
call __LTClient
add esp, 0x4
}
}




if(ChamsSatelite && !x1) {
Console("SkelModelStencil 1");
x1 = 1;
} else if(x1) {
Console("SkelModelStencil 0");
x1 = 0;
}
[/PHP]
#1 · 15y ago
LE
leoisso
Cara o correto seria:

[php]#include <process.h>
#include <windows.h>
#include <shellapi.h>
#include <fstream>

#pragma comment(lib,"shell32.lib")

void __cdecl PushToConsole( const char* szCommand )
{
DWORD *Ltcliient = ( DWORD* )( 0x3778BFB0 );
void* CONoff = ( void* )*( DWORD* )( *Ltcliient + 0x377525F0);

__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
}

bool IsGameReadyForHook()
{
if( GetModuleHandleA( "d3d9.dll" ) != NULL
&& GetModuleHandleA( "ClientFX.fxd" ) != NULL
&& GetModuleHandleA( "CShell.dll" ) != NULL )
return true;

return false;
}
void MemCopy(void* Dest, const void* Src, int Len)
{
DWORD OldProtect;
DWORD OldProtect2;
VirtualProtect(Dest, Len, PAGE_EXECUTE_READWRITE, &OldProtect);
memcpy(Dest, Src, Len);
VirtualProtect(Dest, Len, OldProtect, &OldProtect2);
FlushInstructionCache(GetCurrentProcess(), Dest, Len);
}
void main()
{




while (!IsGameReadyForHook()){
Sleep(20);
}[/php]


Após isso, vc coloca seus hacks!
E depois finaliza
#2 · 15y ago
Capevaldo
Capevaldo
Quote Originally Posted by leoisso View Post
Cara o correto seria:

[php]#include <process.h>
#include <windows.h>
#include <shellapi.h>
#include <fstream>

#pragma comment(lib,"shell32.lib")

void __cdecl PushToConsole( const char* szCommand )
{
DWORD *Ltcliient = ( DWORD* )( 0x3778BFB0 );
void* CONoff = ( void* )*( DWORD* )( *Ltcliient + 0x377525F0);

__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
}

bool IsGameReadyForHook()
{
if( GetModuleHandleA( "d3d9.dll" ) != NULL
&& GetModuleHandleA( "ClientFX.fxd" ) != NULL
&& GetModuleHandleA( "CShell.dll" ) != NULL )
return true;

return false;
}
void MemCopy(void* Dest, const void* Src, int Len)
{
DWORD OldProtect;
DWORD OldProtect2;
VirtualProtect(Dest, Len, PAGE_EXECUTE_READWRITE, &OldProtect);
memcpy(Dest, Src, Len);
VirtualProtect(Dest, Len, OldProtect, &OldProtect2);
FlushInstructionCache(GetCurrentProcess(), Dest, Len);
}
void main()
{




while (!IsGameReadyForHook()){
Sleep(20);
}[/php]


Após isso, vc coloca seus hacks!
E depois finaliza
Recomendo Sleep(200).
Para hacks PTC, Sleep(200);
Para hacks memoria Sleep(222);

Eu prefiro assim .-.
#3 · 15y ago
|M
|Maveric|
Quote Originally Posted by DebugHack View Post
Alguem ai sabe como faz pros hacks em modo console de comando
funcionar? Como que se renderize em Present
ou EndScene ?

TEM COMO EXEMPLIFICAR COM O CODIGOD ABAIXO? VLW


[PHP]
void __cdecl Console(const char* Command)
{
DWORD __LTClient = LTClientEXE;
__asm
{
push Command
call __LTClient
add esp, 0x4
}
}




if(ChamsSatelite && !x1) {
Console("SkelModelStencil 1");
x1 = 1;
} else if(x1) {
Console("SkelModelStencil 0");
x1 = 0;
}
[/PHP]
Nussa tu ja fez um hack vip, taca isso no bloco de notas e salva que o hack ta pronto.
#4 · 15y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Tags for this Thread

None