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 › [Source]PushToConsole Commands

[Source]PushToConsole Commands

Posts 1–15 of 32 · Page 1 of 3
Invidus
Invidus
[Source]PushToConsole Commands
Hey guys,
I just looked at some stuff, here's some PushToConsole commands for NumPad Hacks.

FPS:
[PHP]if(GetAsyncKeyState(VK_NUMPAD5)<0){
this->PushToConsole("ShowPerformanceStatistics 1");
}[/PHP]

No Sway
[PHP]if(GetAsyncKeyState(VK_NUMPAD2)<0){
this->PushToConsole("WeaponSway 0");
}[/PHP]

VJump
[PHP]if(GetAsyncKeyState(VK_UP)<0){
PushToConsole("CamMaxPosYOffset 200.000000");
PushToConsole("DuckDownCamOffSet 1000.000000");
}
if(GetAsyncKeyState(VK_DOWN)<0){
PushToConsole("CamMaxPosYOffset -1000.000000");
PushToConsole("DuckDownCamOffSet -13.000000");
}[/PHP]

Tracers
[PHP]if(GetAsyncKeyState(VK_SUBTRACT)<0){
if(tracers){
PushToConsole("ShowFirePath 0");
tracers = false;
} else {
PushToConsole("ShowFirePath 1");
tracers = true;
}
}[/PHP]

No Spread
[PHP]if(GetAsyncKeyState(VK_ADD)<0){
if(spread){
PushToConsole("PerturbRotationEffect 3.000000");
PushToConsole("PerturbIncreaseSpeed 3.000000");
PushToConsole("PerturbDecreaseSpeed 9.000000");
PushToConsole("PerturbWalkPercent 0.500000");
spread = false;
} else {
PushToConsole("PerturbRotationEffect 0.000000");
PushToConsole("PerturbIncreaseSpeed 0.000000");
PushToConsole("PerturbWalkPercent 0.000000");
PushToConsole("PerturbFiringIncreaseSpeed 0.000000");
spread = true;
}
}[/PHP]

Glow
[PHP]if(GetAsyncKeyState(VK_NUMPAD8)<0){
this->PushToConsole("ScreenGlowEnable 1");
}[/PHP]

Skeleton:
[PHP]if(GetAsyncKeyState(VK_NUMPAD6)<0){
this->PushToConsole("ModelDebug_DrawSkeleton 1");
}[/PHP]

WireFrame:
[PHP]if(GetAsyncKeyState(VK_NUMPAD4)<0){
this->PushToConsole("WireFrame 1");
}[/PHP]

FullBright
[PHP]if(GetAsyncKeyState(VK_NUMPAD3)<0){
this->PushToConsole("FullBright 1");
}[/PHP]

Boxes/Chams
[PHP]if(GetAsyncKeyState(VK_NUMPAD1)<0){
if(boxes){
PushToConsole("ModelDebug_DrawBoxes 0");
PushToConsole("SkelModelStencil 0");
boxes = false;
} else {
PushToConsole("ModelDebug_DrawBoxes 1");
PushToConsole("SkelModelStencil 1");
boxes = true;
}
}[/PHP]

Fly:
[PHP]if( GetAsyncKeyState( FLYKEY ) < 0 )
{

this->PushToConsole( "PlayerGravity 800" );
}else{
this->PushToConsole( "PlayerGravity -800" );
}[/PHP]

Show FPS:
[PHP]PushToConsole("ShowFps 1");



Sleep(iRenderSpeed);[/PHP]

SpeedHack
[PHP]if( GetAsyncKeyState( VK_SHIFT ) < 0 )
{
this->PushToConsole("BaseMoveAccel 4000.000000");
this->PushToConsole("StartAccel 4000.000000");
this->PushToConsole("MaxAccel 4000.000000");
this->PushToConsole("AccelInc 4000.000000");
this->PushToConsole("WalkVel 4000.000000");
this->PushToConsole("FRunVel 4000.000000");
this->PushToConsole("BRunVel 4000.000000");
this->PushToConsole("SRunVel 4000.000000");




}else{

this->PushToConsole("BaseMoveAccel 3000.000000");
this->PushToConsole("StartAccel 500.000000");
this->PushToConsole("MaxAccel 3000.000000");
this->PushToConsole("AccelInc 6000.000000");
this->PushToConsole("WalkVel 70.000000");
this->PushToConsole("FRunVel 285.000000");
this->PushToConsole("BRunVel 285.000000");
this->PushToConsole("SRunVel 285.000000");

}[/PHP]

GlitchKey/SuperSpeed
[PHP]if( GetAsyncKeyState( 0x58 ) < 0 )
{
this->PushToConsole("BaseMoveAccel 90000.000000");
this->PushToConsole("StartAccel 90000.000000");
this->PushToConsole("MaxAccel 90000.000000");
this->PushToConsole("AccelInc 90000.000000");
this->PushToConsole("WalkVel 90000.000000");
this->PushToConsole("FRunVel 90000.000000");
this->PushToConsole("BRunVel 90000.000000");
this->PushToConsole("SRunVel 90000.000000");
}
[/PHP]

SuperJump
[PHP]if( GetAsyncKeyState( VK_END ) < 0 )
{
this->PushToConsole("JumpVel 330.000000");
}[/PHP]

SuperJump X2
[PHP]if( GetAsyncKeyState( VK_NEXT ) < 0 )
{
this->PushToConsole("JumpVel 660.000000");
}
}
}[/PHP]

SuperJump X3
[PHP]if( GetAsyncKeyState( VK_PRIOR ) < 0 )
{
this->PushToConsole("JumpVel 990.000000");
}[/PHP]

Thanks to Ragerz for his source.
Hope this was resourceful!
#1 · 16y ago
flayer669
flayer669
Quote Originally Posted by ilikewaterha View Post
Hey guys,
I just looked at some stuff, here's some PushToConsole commands for NumPad Hacks.

FPS:
[PHP]if(GetAsyncKeyState(VK_NUMPAD5)<0){
this->PushToConsole("ShowPerformanceStatistics 1");
}[/PHP]

No Sway
[PHP]if(GetAsyncKeyState(VK_NUMPAD2)<0){
this->PushToConsole("WeaponSway 0");
}[/PHP]

VJump
[PHP]if(GetAsyncKeyState(VK_UP)<0){
PushToConsole("CamMaxPosYOffset 200.000000");
PushToConsole("DuckDownCamOffSet 1000.000000");
}
if(GetAsyncKeyState(VK_DOWN)<0){
PushToConsole("CamMaxPosYOffset -1000.000000");
PushToConsole("DuckDownCamOffSet -13.000000");
}[/PHP]

Tracers
[PHP]if(GetAsyncKeyState(VK_SUBTRACT)<0){
if(tracers){
PushToConsole("ShowFirePath 0");
tracers = false;
} else {
PushToConsole("ShowFirePath 1");
tracers = true;
}
}[/PHP]

No Spread
[PHP]if(GetAsyncKeyState(VK_ADD)<0){
if(spread){
PushToConsole("PerturbRotationEffect 3.000000");
PushToConsole("PerturbIncreaseSpeed 3.000000");
PushToConsole("PerturbDecreaseSpeed 9.000000");
PushToConsole("PerturbWalkPercent 0.500000");
spread = false;
} else {
PushToConsole("PerturbRotationEffect 0.000000");
PushToConsole("PerturbIncreaseSpeed 0.000000");
PushToConsole("PerturbWalkPercent 0.000000");
PushToConsole("PerturbFiringIncreaseSpeed 0.000000");
spread = true;
}
}[/PHP]

Glow
[PHP]if(GetAsyncKeyState(VK_NUMPAD8)<0){
this->PushToConsole("ScreenGlowEnable 1");
}[/PHP]

Skeleton:
[PHP]if(GetAsyncKeyState(VK_NUMPAD6)<0){
this->PushToConsole("ModelDebug_DrawSkeleton 1");
}[/PHP]

WireFrame:
[PHP]if(GetAsyncKeyState(VK_NUMPAD4)<0){
this->PushToConsole("WireFrame 1");
}[/PHP]

FullBright
[PHP]if(GetAsyncKeyState(VK_NUMPAD3)<0){
this->PushToConsole("FullBright 1");
}[/PHP]

Boxes/Chams
[PHP]if(GetAsyncKeyState(VK_NUMPAD1)<0){
if(boxes){
PushToConsole("ModelDebug_DrawBoxes 0");
PushToConsole("SkelModelStencil 0");
boxes = false;
} else {
PushToConsole("ModelDebug_DrawBoxes 1");
PushToConsole("SkelModelStencil 1");
boxes = true;
}
}[/PHP]

Fly:
[PHP]if( GetAsyncKeyState( FLYKEY ) < 0 )
{

this->PushToConsole( "PlayerGravity 800" );
}else{
this->PushToConsole( "PlayerGravity -800" );
}[/PHP]

Show FPS:
[PHP]PushToConsole("ShowFps 1");



Sleep(iRenderSpeed);[/PHP]

SpeedHack
[PHP]if( GetAsyncKeyState( VK_SHIFT ) < 0 )
{
this->PushToConsole("BaseMoveAccel 4000.000000");
this->PushToConsole("StartAccel 4000.000000");
this->PushToConsole("MaxAccel 4000.000000");
this->PushToConsole("AccelInc 4000.000000");
this->PushToConsole("WalkVel 4000.000000");
this->PushToConsole("FRunVel 4000.000000");
this->PushToConsole("BRunVel 4000.000000");
this->PushToConsole("SRunVel 4000.000000");




}else{

this->PushToConsole("BaseMoveAccel 3000.000000");
this->PushToConsole("StartAccel 500.000000");
this->PushToConsole("MaxAccel 3000.000000");
this->PushToConsole("AccelInc 6000.000000");
this->PushToConsole("WalkVel 70.000000");
this->PushToConsole("FRunVel 285.000000");
this->PushToConsole("BRunVel 285.000000");
this->PushToConsole("SRunVel 285.000000");

}[/PHP]

GlitchKey/SuperSpeed
[PHP]if( GetAsyncKeyState( 0x58 ) < 0 )
{
this->PushToConsole("BaseMoveAccel 90000.000000");
this->PushToConsole("StartAccel 90000.000000");
this->PushToConsole("MaxAccel 90000.000000");
this->PushToConsole("AccelInc 90000.000000");
this->PushToConsole("WalkVel 90000.000000");
this->PushToConsole("FRunVel 90000.000000");
this->PushToConsole("BRunVel 90000.000000");
this->PushToConsole("SRunVel 90000.000000");
}
[/PHP]

SuperJump
[PHP]if( GetAsyncKeyState( VK_END ) < 0 )
{
this->PushToConsole("JumpVel 330.000000");
}[/PHP]

SuperJump X2
[PHP]if( GetAsyncKeyState( VK_NEXT ) < 0 )
{
this->PushToConsole("JumpVel 660.000000");
}
}
}[/PHP]

SuperJump X3
[PHP]if( GetAsyncKeyState( VK_PRIOR ) < 0 )
{
this->PushToConsole("JumpVel 990.000000");
}[/PHP]

Thanks to Ragerz for his source.
Hope this was resourceful!
nice all of them been released before anyways
#2 · 16y ago
Invidus
Invidus
Really? And you didn't have to quote the whole post..
#3 · 16y ago
silly3648
silly3648
hmmm nice i might use some of these like no spread and no sway thanks !
#4 · 16y ago
Invidus
Invidus
No problems!!! Enjoy!
You can add your own hotkeys too
#5 · 16y ago
flayer669
flayer669
Quote Originally Posted by ilikewaterha View Post
No problems!!! Enjoy!
You can add your own hotkeys too
Vjump is wrong the cam is set under ground might get the right values and post them
#6 · 16y ago
Invidus
Invidus
They ARE the right values?
#7 · 16y ago
flayer669
flayer669
Well it didnt work for me sends me under the ground :P so i might try it later is 4am here time to sleep lol
#8 · 16y ago
Invidus
Invidus
Depends if you press the Up or Down.
Can't you see they are two different values?
#9 · 16y ago
Xlilzoosk8rX
Xlilzoosk8rX
may i ask why all you key values are
GetAsyncKeyState (VK_KEY)

except for Superspeed / Glitch it is formatted
GetAsyncKeyState (0x58)

any specific reason?
#10 · 16y ago
SY
Synns
Quote Originally Posted by Xlilzoosk8rX View Post
may i ask why all you key values are
GetAsyncKeyState (VK_KEY)

except for Superspeed / Glitch it is formatted
GetAsyncKeyState (0x58)

any specific reason?
There is no VK_W, VK_S, VK_A, etc...

Virtual Key Codes

0x58 is X.
#11 · 16y ago
MW
mwb1234
Quote Originally Posted by Longevity View Post
There is no VK_W, VK_S, VK_A, etc...

Virtual Key Codes

0x58 is X.
Long I have a way to get VK_W and all alphabet. I used the Art of Trainer making guide to make a header that defines VK_A-VK_Z as their Hexadecimal #'s and they work fine . Just thought I would tell you
#12 · 16y ago
'J
'JlStepper
Thanks, gonna learn a little from this.
#13 · 16y ago
Invidus
Invidus
Don't say thanks, press thanks
#14 · 16y ago
rocker340
rocker340
how about i say it and press it haha
ThanksSSSS!
#15 · 16y ago
Posts 1–15 of 32 · Page 1 of 3

Post a Reply

Similar Threads

  • PushToConsole commandsBy Zoom in Combat Arms Hack Coding / Programming / Source Code
    26Last post 15y ago
  • PushToConsole Commands [Mega Thread]By DeadLinez in Combat Arms Hack Coding / Programming / Source Code
    90Last post 13y ago
  • PushToConsole commands for pick-up hack?By deathninjak0 in Combat Arms Hack Coding / Programming / Source Code
    18Last post 16y ago
  • PushToConsole CommandsBy OverDrivejt in CrossFire Hack Coding / Programming / Source Code
    57Last post 16y ago
  • Help With Visual Basic 2008 And The PushToConsole CommandBy CrossFireHacker V1 in CrossFire Hack Coding / Programming / Source Code
    5Last post 16y ago

Tags for this Thread

None