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 › Call of Duty Modern Warfare 3 Tutorials › Level Hacking Survival with Cheat Engine

Level Hacking Survival with Cheat Engine

Posts 1–15 of 16 · Page 1 of 2
Sensei_Kenji
Sensei_Kenji
Level Hacking Survival with Cheat Engine
Download Cheat Engine
Install
Start MW3
Press on the Computer icon on the top left corner and choose that one

Go to barracks and write down your exp, and scan for that value
All the green ones with that Value should be changed to the ammount of exp that you want

This is both Visual and Physical changing of your exp

I see that im the first one on these forums that actually did this, i don't know if VAC works in SP/Surv but i did this on a cracked version of MW3


You can repeat the process with money too but you'd have to add one step.

Go ingame, start a survival match , write down your money and scan for that value, then go back ingame, shoot an enemy and scan for the new value that ur money is right now

My adresses are:

Money:
0168CCC6
0198F6E0
019900C0
01D23821

Level:
0168C235
0198F8B0
01A57B90
01D22D90
#1 · edited 14y ago · 14y ago
razorgnome
razorgnome
Title says level hacking "SURVIVAL" not xp, so?

i think it's offtopic: where did u get ur cracked mw3 from the one on torrentz are not that fast download, atm.
#2 · edited 14y ago · 14y ago
MO
MohNeuker
not even the visuals change to me...
#3 · 14y ago
Sensei_Kenji
Sensei_Kenji
[IMG]http://i254.photobucke*****m/albums/hh93/sensei_kenji/Survivalexp.png[/IMG]
[IMG]http://i254.photobucke*****m/albums/hh93/sensei_kenji/Cheatengine.png[/IMG]


Works for me
#4 · 14y ago
Moto
Moto
Create a .CE file with the addresses and just release it that way.
#5 · 14y ago
CA
CA_FREAK
it worked, thanks.

you only must press add adress: type in this adress:0168C235
and then right click, change value: type in your exp you want, and enjoy level
#6 · 14y ago
NA
Nathan
Quote Originally Posted by Moto View Post
Create a .CE file with the addresses and just release it that way.
Let me do the same thing as I did with the Token thingy.

Edit: here you go, make a thread if you want.

Spec.rar - Jotti's malware scan

Source:
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using CookieAPI;
using System.Diagnostics;

namespace Spec
{
    public partial class mainForm : Form
    {
        Memory m = new Memory("iw5sp");   

        public mainForm()
        {
            InitializeComponent();
            processTimer.Start();
        }

        private void cmdMoney_Click(object sender, EventArgs e)
        {
            try
            {
                if (moneyText.Text.Length == 0)
                {
                    MessageBox.Show("Please enter a value into the money textbox.", "Error!");
                }
                else
                {
                    m.SetMemory(0x0168CCC6, int.Parse(moneyText.Text), 4);
                    m.SetMemory(0x0198F6E0, int.Parse(moneyText.Text), 4);
                    m.SetMemory(0x019900C0, int.Parse(moneyText.Text), 4);
                    m.SetMemory(0x01D23821, int.Parse(moneyText.Text), 4);
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("Please enter a numeric value into the money textbox.", "Error!");
            }
        }

        private void cmdExp_Click(object sender, EventArgs e)
        {
            try
            {
                if (moneyText.Text.Length == 0)
                {
                    MessageBox.Show("Please enter a value into the xp textbox.", "Error!");
                }
                else
                {
                    m.SetMemory(0x0168C235, int.Parse(expText.Text), 4);
                    m.SetMemory(0x0198F8B0, int.Parse(expText.Text), 4);
                    m.SetMemory(0x01A57B90, int.Parse(expText.Text), 4);
                    m.SetMemory(0x01D22D90, int.Parse(expText.Text), 4);
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("Please enter a numeric value into the xp textbox.", "Error!");
            }
        }

        private void processTimer_Tick(object sender, EventArgs e)
        {
            bool b = isRunning("iw5sp");

            cmdMoney.Enabled = b;
            cmdExp.Enabled = b;
            moneyText.Enabled = b;
            expText.Enabled = b;
            if (b)
            {
                statusLabel.Text = "MW3 is running.";
                statusLabel.ForeColor = Color.Green;
            }
            else
            {
                statusLabel.Text = "MW3 is not running.";
                statusLabel.ForeColor = Color.Red;
            }
        }

        private bool isRunning(string process)
        {
            return Process.GetProcessesByName(process).Length > 0;
        }
    }
}
Spec.rar
#7 · edited 14y ago · 14y ago
Sensei_Kenji
Sensei_Kenji
The money isnt working on yours
#8 · 14y ago
RK
rkaf
check it out i did this like yesterday it proves it works
#9 · 14y ago
master131
[MPGH]master131
The addresses change every time....
#10 · 14y ago
GR
Green909
Here is the Video Tutorial on it
#11 · 14y ago
SL
slipclick
thanks now i know it works
#12 · 14y ago
SO
soulfinger
can we use this hack on survival mode when 2 player playing from hamachi?
#13 · 14y ago
XJ
xjonasxv
Quote Originally Posted by soulfinger View Post
can we use this hack on survival mode when 2 player playing from hamachi?
I'm wondering the same, I tried it but then the game failed after 3 rounds.
My friend died on his screen but on my screen everyting was fine so the game ended very soon..

Is it possible to fix that?
#14 · 13y ago
LO
LOLOLOL222
i try to use the EXP hack, it says i leveled up but it doesnt show the level Help me
#15 · 13y ago
Posts 1–15 of 16 · Page 1 of 2

Post a Reply

Similar Threads

  • Hacking DF With Cheat Engine 21/04/09By shadowvolcan in BattleOn Games Hacks, Cheats & Trainers
    7Last post 17y ago
  • Turorial on how to make hacks with Cheat EngineBy mech649 in Blackshot Hacks & Cheats
    68Last post 16y ago
  • HELp with Cheat Engine K/D HACkBy Wiirtuallca in Combat Arms Help
    6Last post 16y ago
  • How To Get Hacks With Cheat Engine 5.3?By naomelembro14 in WarRock - International Hacks
    1Last post 19y ago
  • need help with cheat engine hacks for u to tell me including amazing bypasserBy george567 in WarRock - International Hacks
    5Last post 19y ago

Tags for this Thread

None