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 › Can any one tell me what this means??

Can any one tell me what this means??

Posts 1–11 of 11 · Page 1 of 1
pikamew4
pikamew4
Can any one tell me what this means??
Ok, so I heard the word, and saw it, (Detour),
What does this do exactly
- Does it unpatch bases?
- Is it only a file
-----
Please tell me what it does and how to use!!!
#1 · 15y ago
Mr.Magicman
Mr.Magicman
Its when you take the original func then jmp to your own func and do shit then reverse to the regular func once again.
#2 · 15y ago
pikamew4
pikamew4
Quote Originally Posted by Mr.Magicman View Post
Its when you take the original func then jmp to your own func and do shit then reverse to the regular func once again.
Uhh, what the FUNC does that mean?
#3 · 15y ago
Mr.Magicman
Mr.Magicman
Functions they make up everything realy and they can be modified with a detour for instance.
#4 · 15y ago
CR
Crash
Quote Originally Posted by pikamew4 View Post
Uhh, what the FUNC does that mean?
There is such a thing as Google you know.
#5 · 15y ago
pikamew4
pikamew4
Quote Originally Posted by Mr.Magicman View Post
Functions they make up everything realy and they can be modified with a detour for instance.
So could a detour be as like switching things around in your code??

Like lets say PTC command is first and IsGameReadyforHook method is down,

If i switch them
,would it be a detour??
#6 · 15y ago
CR
Crash
Quote Originally Posted by pikamew4 View Post
So could a detour be as like switching things around in your code??

Like lets say PTC command is first and IsGameReadyforHook method is down,

If i switch them
,would it be a detour??
Actually a detour is something construction workers use to direct cars away from a construction site, using another route.
#7 · 15y ago
pikamew4
pikamew4
Quote Originally Posted by Crash View Post
Actually a detour is something construction workers use to direct cars away from a construction site, using another route.

OMG!!! I never thought of it that way, ill go buy a detour sing right NOW!! xD
#8 · 15y ago
NO
NOOB
Quote Originally Posted by pikamew4 View Post
OMG!!! I never thought of it that way, ill go buy a detour sing right NOW!! xD
He actually has a point there.
#9 · 15y ago
flameswor10
flameswor10
Quote Originally Posted by Crash View Post
Actually a detour is something construction workers use to direct cars away from a construction site, using another route.
Ooh.. Sexy explanation, now the question is..

How do i add my detour I bought to my dll /
#10 · 15y ago
LI
LightzOut
That is actually an accurate analogy.

If you don't understand how detours work, there is a great thread explaining it on another website, by ThatOneBoy.

Since external links to competing hacking websites is not allowed (I don't think), i'll just post it here:

Quote Originally Posted by ThatOneBoy View Post
So, you've heard about what people use to write cheats: hooks. But what are they?

Defining detours
-------------------------------------
A hook (Or "detour") is called when a function is called, and they're used to change how the function works.

Think of this like a detour in the road: if you're driving to your mall, and there's a construction site going on, you'll usually be taken down a detour. However, you'll still arrive at the mall, just through a different means.

Defining functions
-------------------------------------
Okay, so you understand how detours work. But what's a function? A function is simply a number of steps that alter what the program is doing while it runs. In math, if you've completed Algebra I, you may have seen a function such as:

f(x) = x^2 + 1

The above, function x, takes x, squares it, then adds one to it. In programming, we have functions which can change numbers, print messages, do all sorts of things.

Putting them together
-------------------------------------
In a computer game, you might have a function which sets the HP of your player. If every time you take damage, the game calls the function, telling it to subtract 5 from your HP, you'll eventually have an HP of zero, and your character may "die". Using a detour, you could change this so the function doesn't change your HP at all.

Normally:

Player is hit -> function named "SetHP" is called, telling program to subtract 5 -> SetHP subtracts 5

But, with our detour:

Player is hit -> function named "SetHP" is called, telling program to subtract 5 -> detour is called and changes what SetHP is being told, so it does nothing -> detour allows SetHP to run, and the game will continue working as normal, oblivious to what just happened


Using detours
-------------------------------------
Okay, so now you understand detours. But are detours detectable? The answer to that is yes, they are. What most anti-hacks do are check if the program code is modified (Something that simply shouldn't happen). There's a number of ways you can do hooks, and a lot of them are undetectable. To name a few:

- Import Address Table hooking
- Export Address Table hooking
- Virtual table hooking
- Code segment hooking (e.g. Software breakpoints, or just inline hooking)
- Hardware breakpoints
- Page exception hooking with single step exceptions (This one I haven't seen detected by any anti-hack yet)

However, before you can use any of these to write a hack, you'll need three basic skills:

- Understanding of the x86 architecture, which means assembly.
- Understanding of the operating system you'll be working with; for most of you, this is Windows, and you need to know the executable format (That would be PE, which is the most common on Windows) and many functions from the Windows API.
- Understanding of a programming language in which to write your cheats (Most people say you can only do this with C++, but really, almost any language is suitable).

The above three take time to learn - I'll be releasing tutorials that will walk you through learning each skill piece-by-piece, but, at the end of the day, it's up for you to learn it all.

Summary
-------------------------------------
After reading this guide in its entirety you should now know:

- What detours and functions are
- How detours work
- How it all ties in with writing hacks
#11 · 15y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Similar Threads

  • ((can any 1 tell me what this is))By tabuzo013 in CrossFire Discussions
    9Last post 16y ago
  • can any one tell me how to delete my ID from mpgh?By wjddhksl in General
    2Last post 15y ago
  • Could any one tell me waht this is?By Rasta in Piercing Blow Discussions
    4Last post 15y ago
  • [Help] Can some one tell me how to do this?By fr3ak317 in Combat Arms Mods & Rez Modding
    2Last post 16y ago
  • Omg! Wtf Who Can Tell Me What This IsBy usmrean in WarRock - International Hacks
    8Last post 19y ago

Tags for this Thread

None