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 › Call of Duty Hacks & Cheats › Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats › 3 Tools/Hack Release [MW3 Tools/Hacks]

Post3 Tools/Hack Release [MW3 Tools/Hacks]

Posts 31–41 of 41 · Page 3 of 3
32
32tommyd
Quote Originally Posted by toxicwulf View Post
Can you get banned for using the crosshair tool?
Any & / or every hack has the posibility of causing as ban, if you don't want to get banned.. dont hack. End Of!
#31 · 14y ago
Jorndel
Jorndel
Quote Originally Posted by 32tommyd View Post
Any & / or every hack has the posibility of causing as ban, if you don't want to get banned.. dont hack. End Of!
Well, external = Nothing to do with the game.
So, no. You can't be banned for it.
#32 · 14y ago
MA
mattiemalsch
Nice toys, but honestly: who needs that? Could you do some serious hacks for MW3? Thanks.
#33 · 14y ago
TE
TeamDarkness
Quote Originally Posted by mattiemalsch View Post
Nice toys, but honestly: who needs that? Could you do some serious hacks for MW3? Thanks.
Blind? Search the Forum ! Jorndel is one of thebest mpgh.net Coders
#34 · 14y ago
Jorndel
Jorndel
Quote Originally Posted by TeamDarkness View Post
Blind? Search the Forum ! Jorndel is one of thebest mpgh.net Coders
@TeamDarkness
I am not.
I just take codes that people post here and make them user friendly.
So no, I am not one of the best coders at all.

I am sorry but. Almost everyone could have done what I do
Sorry to say. But because of 2 persons.
I lost the motivation to create more tools/hacks.
#35 · 14y ago
TE
TeamDarkness
Hell No , Dont let the Haters get you Down, Keep them going, cause your Releases are:

Small
Fast
Simple to Understand for Newbies & Noobs
Working
=
The Best User friendly Apps for MW3
#36 · 14y ago
GR
greedlt
Quote Originally Posted by Jorndel View Post
Created and Coded by Jorndel @ MPGH.Net
I was very bored so I created something for having something to do.
Now I give it to you




First Tool: MW3 MPGH.Net
This is a bored created tool, to just simply search for stuff on MPGH.Net MW3.

 
Scans

Scan 1
Scan 2


Sec Tool: MW3 External Cross Hair V2
This gives you an external Cross Hair. Tested for 1900x1080 & 1200x800
With 4 Color Options.

 
Scans

Scan 1
Scan 2


Third Tool: MW3 SP Trainer
This is a Single Player Trainer. 2 Options with 1 Extra.
1: God Mode.
2: Unlimited Ammo.
3: External Cross Hair V1.5

 
Scans

Scan 1
Scan 2
honestly, i like the 1st tool. for a few reasons but ill give 1. for idiots like me that sometimes are too lazy to search on the forum xP
#37 · 14y ago
Jorndel
Jorndel
For all tat say the god mod isn't working. Thats right. I forgot to add a 0 to the address.
Sorry guys.
#38 · 14y ago
CR
crazygabe
Can you make the SP trainer compatible with MP?I am always host so I'll have some fun with god-mode or unlimited ammo,even tho all the players will have it.I'm bored using CE to make the game fast-forward or slow motion.
#39 · 14y ago
LA
layne3
Hey can you give me the code for keeping cross hair above the game? Thanks.
#40 · 14y ago
Jorndel
Jorndel
Quote Originally Posted by layne3 View Post
Hey can you give me the code for keeping cross hair above the game? Thanks.
Well, enjoy this horrible code:
Code:
[DllImport("user32.dll", EntryPoint = "FindWindow")]
        public static extern IntPtr FindWindow(string lp1, string lp2);
        private void timer1_Tick(object sender, EventArgs e)
        {
            this.Hide();
                int DH = Screen.PrimaryScreen.Bounds.Height / 2;
                int DW = Screen.PrimaryScreen.Bounds.Width / 2;

                IntPtr Handle = FindWindow(null, "Call of Duty®: Modern Warfare® 3");
                try
                {

                    using (Graphics g = Graphics.FromHwnd(Handle))
                    {
                        Pen PN = new Pen(Brushes.Red, 2);
                        g.DrawLine(PN, DW, DH + 25, DW, DH - 25);
                        g.DrawLine(PN, DW + 25, DH, DW - 25, DH);
                        g.Dispose();
                    }
                }
                catch (Exception Ex)
                {
                    MessageBox.Show(Ex.Message, "Error Message:", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    MessageBox.Show("If you could be so nice to report this on the released site, it would be great.", "Ops:", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                    Application.Exit();
                }
            }
#41 · 14y ago
Posts 31–41 of 41 · Page 3 of 3

Post a Reply

Similar Threads

  • [RELEASE]Glitch Tool - HackBy bug_NOT_ME in Combat Arms Hacks & Cheats
    66Last post 17y ago
  • Err -> Coding for mw3 tools/ hacks..modsBy SourLemons in Call of Duty Modern Warfare 3 Help
    0Last post 14y ago
  • [MW3] Killstreak Hack/Tool [1.0.0]By insane18 in Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    42Last post 14y ago
  • tools needed in making a hack???By Ryuzaki™ in CrossFire Help
    7Last post 14y ago

Tags for this Thread

#crosshair#search#trainer