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 › WarRock - International Hacks › WarRock Hack Source Code › [Help] Make Code Undetected?

[Help] Make Code Undetected?

Posts 1–15 of 28 · Page 1 of 2
-=
-=meow=-
[Help] Make Code Undetected?
hi just wondering how you guys make a code UndEtected?
because i'm learning now how to code and luckily i have made one but the problem is it's detected. so any hint guys or tutorial?

thanks in advance

regards,
-=meow=-
#1 · 15y ago
choykay619
choykay619
Quote Originally Posted by -=meow=- View Post
hi just wondering how you guys make a code UndEtected?
because i'm learning now how to code and luckily i have made one but the problem is it's detected. so any hint guys or tutorial?

thanks in advance

regards,
-=meow=-
Don't use speedhack .
#2 · 15y ago
UM
umbraga01
Quote Originally Posted by -=meow=- View Post
hi just wondering how you guys make a code UndEtected?
because i'm learning now how to code and luckily i have made one but the problem is it's detected. so any hint guys or tutorial?

thanks in advance

regards,
-=meow=-
ahm, did u use the speed addy?
actually the codes are undetected.. but there is 1 addies that has been block (just a thought)
#3 · 15y ago
-=
-=meow=-
Quote Originally Posted by choykay619 View Post
Don't use speedhack .
Quote Originally Posted by umbraga01 View Post
ahm, did u use the speed addy?
actually the codes are undetected.. but there is 1 addies that has been block (just a thought)

@both no i didn't, i just use Superjump

base on both of your replies, the addy is the one being detected not the source code?
#4 · 15y ago
UM
umbraga01
Quote Originally Posted by -=meow=- View Post
@both no i didn't, i just use Superjump

base on both of your replies, the addy is the one being detected not the source code?
hmmm may i see ur source code?? ..
the only one addy that has been detected is the speed addy.
#5 · 15y ago
-=
-=meow=-
Quote Originally Posted by umbraga01 View Post
hmmm may i see ur source code?? ..
the only one addy that has been detected is the speed addy.
superjump code
Code:
void jump () //super jump
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
DWORD dwPlayerPtr = *(DWORD*)Addr_Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+Ofs_Z) = 2000;
}
}
}
addy
Code:
#define Ofs_Z 0x00102DC
#6 · 15y ago
UM
umbraga01
Quote Originally Posted by -=meow=- View Post
superjump code
Code:
void jump () //super jump
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
DWORD dwPlayerPtr = *(DWORD*)Addr_Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+Ofs_Z) = 2000;
}
}
}
addy
Code:
#define Ofs_Z 0x00102DC
try this one.
// Super Jump
void Super_Jump ()
{
if(GetAsyncKeyState(VK_CONTROL)&1)
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_Z) = 1000; //jump height
}
}
}
#7 · 15y ago
-=
-=meow=-
Quote Originally Posted by umbraga01 View Post
try this one.
// Super Jump
void Super_Jump ()
{
if(GetAsyncKeyState(VK_CONTROL)&1)
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_Z) = 1000; //jump height
}
}
}
you just change the variable name for ADR_PlayerPointer and the OFS_Z you just capitalize it...but still i'll gonna try this

EDIT:
it's detected
#8 · edited 15y ago · 15y ago
UM
umbraga01
Quote Originally Posted by -=meow=- View Post
you just change the variable name for ADR_PlayerPointer and the OFS_Z you just capitalize it...but still i'll gonna try this

EDIT:
it's detected
what os are you using??
#9 · 15y ago
-=
-=meow=-
i'm using windows7
#10 · 15y ago
TheCamels8
TheCamels8
Make working bypass..
#11 · 15y ago
-=
-=meow=-
Quote Originally Posted by TheCamels8 View Post
Make working bypass..
oh ok...can you tell me how to make a bypass or link to a tutorial?
#12 · 15y ago
TheCamels8
TheCamels8
Quote Originally Posted by -=meow=- View Post
oh ok...can you tell me how to make a bypass or link to a tutorial?
I don't know a lot about GameGuard..
Ask someone that play WarRock philippines, I play WarRock International (HackShield).
#13 · 15y ago
-=
-=meow=-
Quote Originally Posted by TheCamels8 View Post
I don't know a lot about GameGuard..
Ask someone that play WarRock philippines, I play WarRock International (HackShield).
ohh ok, thanks anyway
#14 · 15y ago
UM
umbraga01
Quote Originally Posted by -=meow=- View Post
you just change the variable name for ADR_PlayerPointer and the OFS_Z you just capitalize it...but still i'll gonna try this

EDIT:
it's detected
hmm other addys?
did u use the no spread addy? if u use it then what is ur function??
#15 · 15y ago
Posts 1–15 of 28 · Page 1 of 2

Post a Reply

Tags for this Thread

None