Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    Sensei_Kenji's Avatar
    Join Date
    Jan 2006
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    6
    My Mood
    Amused

    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
    Last edited by Sensei_Kenji; 11-12-2011 at 09:02 AM.

  2. The Following User Says Thank You to Sensei_Kenji For This Useful Post:

    CA_FREAK (11-12-2011)

  3. #2
    razorgnome's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    43
    Reputation
    10
    Thanks
    12
    My Mood
    Doh
    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.
    Last edited by razorgnome; 11-12-2011 at 09:02 AM.

  4. #3
    MohNeuker's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    81
    Reputation
    10
    Thanks
    4
    not even the visuals change to me...

  5. #4
    Sensei_Kenji's Avatar
    Join Date
    Jan 2006
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    6
    My Mood
    Amused
    [IMG]https://i254.photobucke*****m/albums/hh93/sensei_kenji/Survivalexp.png[/IMG]
    [IMG]https://i254.photobucke*****m/albums/hh93/sensei_kenji/Cheatengine.png[/IMG]


    Works for me

  6. #5
    Moto's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Bay Area, CA
    Posts
    13,055
    Reputation
    707
    Thanks
    14,558
    My Mood
    Blah
    Create a .CE file with the addresses and just release it that way.

  7. #6
    CA_FREAK's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    12
    My Mood
    Aggressive
    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

  8. #7
    Nathan's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    In a magical place
    Posts
    6,113
    Reputation
    394
    Thanks
    363
    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;
            }
        }
    }
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Nathan; 11-12-2011 at 10:45 AM.

  9. The Following 26 Users Say Thank You to Nathan For This Useful Post:

    AMIR937 (09-02-2018),Aqua1234 (10-06-2012),Babar MT9 (07-24-2013),fytchx (04-09-2013),imad mazigh (08-02-2012),jdouglas (05-27-2012),kmanng21 (09-21-2012),LOLOLOL222 (02-05-2013),mn_acer1 (02-20-2013),molell (08-18-2012),MonsterJoker (09-14-2012),multidavid (08-19-2012),nexus.azn (12-12-2013),Nick017 (12-31-2014),oliverc50 (12-13-2012),primehunter (08-17-2012),Releastix (08-26-2016),ryanisa (11-09-2012),saifumar (03-19-2015),sebastion37 (11-20-2013),tovor (12-03-2012),uiugor (07-06-2012),wawpo (11-17-2014),XDARKWOLFX (12-07-2015),xinny1234 (01-02-2019),XX-gamer-XX (02-04-2013)

  10. #8
    Sensei_Kenji's Avatar
    Join Date
    Jan 2006
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    6
    My Mood
    Amused
    The money isnt working on yours

  11. #9
    rkaf's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    OPEN RIGHT NOW!! <--- ADD MPGHRKAF
    Posts
    748
    Reputation
    73
    Thanks
    1,633
    My Mood
    Yeehaw
    check it out i did this like yesterday it proves it works

  12. #10
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,668
    My Mood
    Breezy
    The addresses change every time....
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  13. #11
    Green909's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep
    Here is the Video Tutorial on it

  14. #12
    slipclick's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    Helsinki,Finland
    Posts
    72
    Reputation
    10
    Thanks
    5
    My Mood
    Amused
    thanks now i know it works

  15. #13
    soulfinger's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    can we use this hack on survival mode when 2 player playing from hamachi?

  16. #14
    xjonasxv's Avatar
    Join Date
    May 2008
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    4
    My Mood
    Amazed
    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?

  17. #15
    LOLOLOL222's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    Stockholm, Sweden, Sweden
    Posts
    4
    Reputation
    10
    Thanks
    0
    i try to use the EXP hack, it says i leveled up but it doesnt show the level Help me

Page 1 of 2 12 LastLast

Similar Threads

  1. Turorial on how to make hacks with Cheat Engine
    By mech649 in forum Blackshot Hacks & Cheats
    Replies: 68
    Last Post: 10-19-2009, 02:35 AM
  2. HELp with Cheat Engine K/D HACk
    By Wiirtuallca in forum Combat Arms Help
    Replies: 6
    Last Post: 10-07-2009, 10:15 AM
  3. Hacking DF With Cheat Engine 21/04/09
    By shadowvolcan in forum BattleOn Games Hacks, Cheats & Trainers
    Replies: 7
    Last Post: 04-24-2009, 01:14 AM
  4. need help with cheat engine hacks for u to tell me including amazing bypasser
    By george567 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 07-01-2007, 12:43 PM
  5. How To Get Hacks With Cheat Engine 5.3?
    By naomelembro14 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 02-20-2007, 01:26 AM