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 › Other Semi-Popular First Person Shooter Hacks › Mission Against Terror Hacks & Cheats › [Source Code]M.A.T. Double Jump / Multi-jump

Thumbs up[Source Code]M.A.T. Double Jump / Multi-jump

Posts 1–15 of 45 · Page 1 of 3
tHeDoCtOr46
tHeDoCtOr46
[Source Code]M.A.T. Double Jump / Multi-jump
Code:
class AKFXPawnBase : public APawn //0x88C -> 0xC48
{
public:

	...
	
	INT MultiJumpRemaining; /* 0x00000AE4 */
	INT MaxMultiJump; 		/* 0x00000AE8 */
	INT DoubleJumpZ; 		/* 0x00000AEC */
	
	...
	
};

AKFXPawnBase* pLocalKFXPawn = reinterpret_cast< AKFXPawnBase* >( GEngine->GetLocalObject( AKFXPawnBase::StaticClass() ) );
pLocalKFXPawn->MultiJumpRemaining = 1337; //I don't think you need to do this, but w/e
pLocalKFXPawn->MaxMultiJump = 1337; //Generally... it's 2 but if you want to keep jumping
pLocalKFXPawn->DoubleJumpZ = 800; //Max :O U can log for original double jump z, which is 400 something...
For people who don't have their own SDK, you can do this.

Code:
*(INT*)( GEngine->GetLocalPawn() + 0xAE4 ) = 1337;
*(INT*)( GEngine->GetLocalPawn() + 0xAE8 ) = 1337;
*(INT*)( GEngine->GetLocalPawn() + 0xAEC ) = 800;
Enjoy
Credit To=Code[V]
Thank You
#1 · 14y ago
BR
brownnns
im a noob in this so what do you have to do?
#2 · 14y ago
OO
oOEchoOo
ehm
i new to this...i dont really know how to hack :P
what do i do with the codes?
#3 · 14y ago
Reallity-X4
Reallity-X4
In Order to Make This Work We Need to Compile This With Bypass Code
#4 · 14y ago
tHeDoCtOr46
tHeDoCtOr46
ask for help from @Dakota
#5 · 14y ago
DA
Dakota
if you want to learn to know what this means you can learning how to code with some of our extensive guides and books in our C++ section.
#6 · 14y ago
NE
NeonZ
WHAT CAN DO WITH THIS CODE!!!
CAN TELL ME!!!
OR GIFT LINK TO ME
#7 · 14y ago
AK
akpowers
you play cibmall??
#8 · 14y ago
SK
SkynetVirus
1>------ Build started: Project: jump_MAT, Configuration: Debug Win32 ------
1> jump_MAT.cpp
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(15): error C2504: 'APawn' : base class undefined
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(18): error C2059: syntax error : '...'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(20): error C2238: unexpected token(s) preceding ';'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(21): error C2146: syntax error : missing ';' before identifier 'MaxMultiJump'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(21): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(21): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(22): error C2146: syntax error : missing ';' before identifier 'DoubleJumpZ'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(22): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(22): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(24): error C2059: syntax error : '...'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(26): error C2143: syntax error : missing ';' before '}'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(26): error C2238: unexpected token(s) preceding ';'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(28): error C2065: 'GEngine' : undeclared identifier
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(28): error C2227: left of '->GetLocalObject' must point to class/struct/union/generic type
1> type is ''unknown-type''
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(28): error C2039: 'StaticClass' : is not a member of 'AKFXPawnBase'
1> c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(14) : see declaration of 'AKFXPawnBase'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(28): error C3861: 'StaticClass': identifier not found
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(29): error C2143: syntax error : missing ';' before '->'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(29): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(29): error C2040: 'pLocalKFXPawn' : 'int' differs in levels of indirection from 'AKFXPawnBase *'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(30): error C2143: syntax error : missing ';' before '->'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(30): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(30): error C2040: 'pLocalKFXPawn' : 'int' differs in levels of indirection from 'AKFXPawnBase *'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(31): error C2143: syntax error : missing ';' before '->'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(31): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(31): error C2040: 'pLocalKFXPawn' : 'int' differs in levels of indirection from 'AKFXPawnBase *'
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
#9 · 14y ago
kakran15
kakran15
Quote Originally Posted by SkynetVirus View Post
1>------ Build started: Project: jump_MAT, Configuration: Debug Win32 ------
1> jump_MAT.cpp
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(15): error C2504: 'APawn' : base class undefined
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(18): error C2059: syntax error : '...'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(20): error C2238: unexpected token(s) preceding ';'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(21): error C2146: syntax error : missing ';' before identifier 'MaxMultiJump'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(21): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(21): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(22): error C2146: syntax error : missing ';' before identifier 'DoubleJumpZ'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(22): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(22): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(24): error C2059: syntax error : '...'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(26): error C2143: syntax error : missing ';' before '}'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(26): error C2238: unexpected token(s) preceding ';'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(28): error C2065: 'GEngine' : undeclared identifier
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(28): error C2227: left of '->GetLocalObject' must point to class/struct/union/generic type
1> type is ''unknown-type''
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(28): error C2039: 'StaticClass' : is not a member of 'AKFXPawnBase'
1> c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(14) : see declaration of 'AKFXPawnBase'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(28): error C3861: 'StaticClass': identifier not found
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(29): error C2143: syntax error : missing ';' before '->'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(29): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(29): error C2040: 'pLocalKFXPawn' : 'int' differs in levels of indirection from 'AKFXPawnBase *'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(30): error C2143: syntax error : missing ';' before '->'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(30): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(30): error C2040: 'pLocalKFXPawn' : 'int' differs in levels of indirection from 'AKFXPawnBase *'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(31): error C2143: syntax error : missing ';' before '->'
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(31): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\documents and settings\toshiba\my documents\visual studio 2010\projects\jump_mat\jump_mat\jump_MAT.h(31): error C2040: 'pLocalKFXPawn' : 'int' differs in levels of indirection from 'AKFXPawnBase *'
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
...What's this?...
AHAHAHAHAHA

#10 · 14y ago
YE
yekerf
hey thedoctor can u send me the models from this game? or is not a lith tech engine game?
#11 · 14y ago
VE
Vehrdyn
this only work for SUBA.
one more the thread maker dunno make a hack
he just know to release the codes only..useless.
#12 · 14y ago
xdajay
xdajay
Noob Post the codes in codes section!

Better Dont coppy paste From other Site !
#13 · 14y ago
tHeDoCtOr46
tHeDoCtOr46
Quote Originally Posted by xdajay View Post
Noob Post the codes in codes section!

Better Dont coppy paste From other Site !
What U Talking About?
I Dont Care
#14 · 14y ago
YE
yekerf
thedoctor which motor use this game?
#15 · 14y ago
Posts 1–15 of 45 · Page 1 of 3

Post a Reply

Similar Threads

  • Multi-Line Spammer Tutorial + Source code and projectBy dragonattak in CrossFire Hack Coding / Programming / Source Code
    5Last post 15y ago
  • HALO 2 (XBOX) Source CodeBy mirelesmichael in General Game Hacking
    12Last post 20y ago
  • [Release] WarHax DLL Source CodeBy OneWhoSighs in WarRock - International Hacks
    20Last post 18y ago
  • keylogger source codeBy obsedianpk in WarRock - International Hacks
    8Last post 18y ago
  • Stamina Hack and source code ?By Teh Sasuke in C++/C Programming
    0Last post 18y ago

Tags for this Thread

None