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 › Combat Arms Coding Help & Discussion › PushToConsole Command not working

PushToConsole Command not working

Posts 1–5 of 5 · Page 1 of 1
LU
lunatik21
PushToConsole Command not working
Hey,
is the pushtoconsole command not working anymore ???

Here's my code,

Code:
Checking..
bool IsGameReadyForHook()
{
    if( GetModuleHandle( (LPCWSTR)"d3d9.dll"     ) != NULL 
     && GetModuleHandle( (LPCWSTR)"ClientFX.fxd" ) != NULL 
     && GetModuleHandle( (LPCWSTR)"CShell.dll"   ) != NULL )
        return true;
 
    return false;
}


PTC...
void __cdecl PushToConsole( const char* szCommand )
{
    DWORD *LTClient = ( DWORD* )( 0x377C9B80 );
 __asm pushad;
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
 
 
    __asm
    {
        push    szCommand;
        call    CONoff;
        add     esp, 4;
    }
	__asm popad;
}


Calling it in EndScene || Thread
PushToConsole("SkelModelStencil 1");
I don't get any crashe's or what so ever.
Just no results. :S
Any advice?
#1 · 13y ago
JU
juggalo200
Quote Originally Posted by lunatik21 View Post
Hey,
is the pushtoconsole command not working anymore ???

Here's my code,

Code:
Checking..
bool IsGameReadyForHook()
{
    if( GetModuleHandle( (LPCWSTR)"d3d9.dll"     ) != NULL 
     && GetModuleHandle( (LPCWSTR)"ClientFX.fxd" ) != NULL 
     && GetModuleHandle( (LPCWSTR)"CShell.dll"   ) != NULL )
        return true;
 
    return false;
}


PTC...
void __cdecl PushToConsole( const char* szCommand )
{
    DWORD *LTClient = ( DWORD* )( 0x377C9B80 );
 __asm pushad;
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
 
 
    __asm
    {
        push    szCommand;
        call    CONoff;
        add     esp, 4;
    }
	__asm popad;
}


Calling it in EndScene || Thread
PushToConsole("SkelModelStencil 1");
I don't get any crashe's or what so ever.
Just no results. :S
Any advice?


fly speed and super jump and tracers and fps require a Addy nx chams and no fog just put + in front of the command

PushToConsole("+SkelModelStencil 1");
#2 · 13y ago
OpKilts
OpKilts
there is a set Variable method you can use that has been posted recently,

Code:
template<class t>
void SetVariable(DWORD Address, t Value)
{
*(t*)Address = Value;
}

#define Jump 		0x377B6B0C
#define ActivationDistance 	0x377B69C8//Unsure
#define WalkVel 	0x377B6A7C
#define FRunVel 	0x377B6AA0
#define BRunVel 	0x377B6AC4
#define SRunVel 	0x377B6AE8
#define DuckVel 	0x377B6B30
#define Tracers 	0x377BEA7C
Credits: arun823


Used: SetVariable(Tracers, 1);//ON
SetVariable(Tracers, 0);//OFF
#3 · edited 13y ago · 13y ago
LU
lunatik21
Quote Originally Posted by juggalo200 View Post
fly speed and super jump and tracers and fps require a Addy nx chams and no fog just put + in front of the command

PushToConsole("+SkelModelStencil 1");
Doesn't work either. I get no result In-Game.

Quote Originally Posted by OpKilts View Post
there is a set Variable method you can use that has been posted recently,

Code:
template<class t>
void SetVariable(DWORD Address, t Value)
{
*(t*)Address = Value;
}

#define Jump 		0x377B6B0C
#define ActivationDistance 	0x377B69C8//Unsure
#define WalkVel 	0x377B6A7C
#define FRunVel 	0x377B6AA0
#define BRunVel 	0x377B6AC4
#define SRunVel 	0x377B6AE8
#define DuckVel 	0x377B6B30
#define Tracers 	0x377BEA7C
Credits: arun823


Used: SetVariable(Tracers, 1);//ON
SetVariable(Tracers, 0);//OFF
Thanks but that function is not really needed.
Can you help with the rest of the commands ?
#4 · 13y ago
Flengo
[MPGH]Flengo
This thread will help you out

http://www.mpgh.net/forum/207-combat...s-changes.html

Solved & Closed.
#5 · 13y ago
Posts 1–5 of 5 · Page 1 of 1

Post a Reply

Similar Threads

  • changemap command not working?By zeekond in Vindictus Discussions
    3Last post 15y ago
  • Simple PTC command not workingBy amitsl in Combat Arms Coding Help & Discussion
    12Last post 13y ago
  • Command not workingBy m202 in Vindictus Discussions
    4Last post 15y ago
  • Vindictus uSa secondary weapons commands not workingBy olox123 in Vindictus Help
    8Last post 14y ago
  • CODMW2 Console Command GUI 0.99.4 Beta not workingBy anti087 in Call of Duty Modern Warfare 2 Help
    3Last post 15y ago

Tags for this Thread

None