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 6 - Modern Warfare 2 (MW2) Hacks › Call of Duty Modern Warfare 2 Coding / Programming / Source Code › MW2 crasht

MW2 crasht

Posts 1–5 of 5 · Page 1 of 1
UN
UnLiVGLinT
MW2 crasht
Hey there,

I have 3 address which i found in Cheat Engine.

If I change in Cheat Engine the value it works.

If I change the value in my programm, which I made in Visual Studio, one address works the other two crash the game.

Can anyone help me?

Thanks
#1 · 9y ago
GE
gerherhtherherdhher
Quote Originally Posted by UnLiVGLinT View Post
Hey there,

I have 3 address which i found in Cheat Engine.

If I change in Cheat Engine the value it works.

If I change the value in my programm, which I made in Visual Studio, one address works the other two crash the game.

Can anyone help me?

Thanks
Yea sure, just post your code and I'll tell you why it crashes.
#2 · 9y ago
UN
UnLiVGLinT
Here is my code

Code:
        private void Fullbright_Click(object sender, EventArgs e)
        {
            if (Fullbright.Checked)
            {
                VAMemory vam = new VAMemory("iw4mp");
                vam.WriteInt32((IntPtr)0x06E661A4, 4);
            }
            else{

                VAMemory vam = new VAMemory("iw4mp");
                vam.WriteInt32((IntPtr)0x06E661A4, 9);
            }

            
        }

        private void UnlimitedSprint_CheckedChanged(object sender, EventArgs e)
        {

        }

        private void UnlimitedSprint_Click(object sender, EventArgs e)
        {
            if (UnlimitedSprint.Checked)
            {
                VAMemory vam = new VAMemory("iw4mp");
                vam.WriteInt32((IntPtr)0x0086CAF8, 1);
            }
            else
            {

                VAMemory vam = new VAMemory("iw4mp");
                vam.WriteInt32((IntPtr)0x0086CAF8, 4);
            }
        }

        private void norecoil_Click(object sender, EventArgs e)
        {
            if (norecoil.Checked)
            {
                VAMemory vam = new VAMemory("iw4mp");
                vam.WriteInt32((IntPtr)0x004B9F7B, 115);
            }
            else
            {

                VAMemory vam = new VAMemory("iw4mp");
                vam.WriteInt32((IntPtr)0x004B9F7B, 116);
            }
        }
#3 · 9y ago
GE
gerherhtherherdhher
Quote Originally Posted by UnLiVGLinT View Post
Here is my code

Code:
        private void Fullbright_Click(object sender, EventArgs e)
        {
            if (Fullbright.Checked)
            {
                VAMemory vam = new VAMemory("iw4mp");
                vam.WriteInt32((IntPtr)0x06E661A4, 4);
            }
            else{

                VAMemory vam = new VAMemory("iw4mp");
                vam.WriteInt32((IntPtr)0x06E661A4, 9);
            }

            
        }

        private void UnlimitedSprint_CheckedChanged(object sender, EventArgs e)
        {

        }

        private void UnlimitedSprint_Click(object sender, EventArgs e)
        {
            if (UnlimitedSprint.Checked)
            {
                VAMemory vam = new VAMemory("iw4mp");
                vam.WriteInt32((IntPtr)0x0086CAF8, 1);
            }
            else
            {

                VAMemory vam = new VAMemory("iw4mp");
                vam.WriteInt32((IntPtr)0x0086CAF8, 4);
            }
        }

        private void norecoil_Click(object sender, EventArgs e)
        {
            if (norecoil.Checked)
            {
                VAMemory vam = new VAMemory("iw4mp");
                vam.WriteInt32((IntPtr)0x004B9F7B, 115);
            }
            else
            {

                VAMemory vam = new VAMemory("iw4mp");
                vam.WriteInt32((IntPtr)0x004B9F7B, 116);
            }
        }
For the last one you should only write 1 byte, instead of 4. By using WriteInt32 you actually write 115/116 0 0 0 to the process, which of course makes the game crash upon execution. Try using something like WriteByte instead, not sure if you have that in your VAMemory class but that's easy to add. I am not sure about the other two, I assume the first one works right? It's worth a try to just write 1 byte.

Also your code is really redundant, consider refactoring it.

- Xen0
#4 · edited 9y ago · 9y ago
UN
UnLiVGLinT
Yep the first one works. Do you have skype? I want to ask you something private.

I have WriteInt32 in my VaMemory correct
#5 · 9y ago
Posts 1–5 of 5 · Page 1 of 1

Post a Reply

Similar Threads

  • CoD6 or MW2?By CheeseTea in General
    60Last post 15y ago
  • CoD: MW2 - NO Dedicated Servers for PCBy eliteop in General
    0Last post 16y ago
  • CoD MW2 Mission aeroport (+18)By .raR in Call of Duty Modern Warfare 2 Discussions
    4Last post 16y ago
  • MW2 leakedBy gbitz in General
    46Last post 16y ago
  • MW1 or MW2By why06 in Flaming & Rage
    13Last post 16y ago

Tags for this Thread

None