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 Coding, Programming & Source Code › Changing Prestige/Level

PostChanging Prestige/Level

Posts 1–13 of 13 · Page 1 of 1
PE
Pepsi-
Changing Prestige/Level
Hi! I am almost done my Trainer all i need to add is the UAV, Box ESP, Unlimited ammo, super jump and super speed.

But is it possible to have a prestige/level changer? that changes automatically for example you click the prestige button then the level button and you have a timer and you set the time to 1 second, then the prestige/level changes every 1 second to a different level/prestige every time
#1 · 13y ago
[NooB] Mentor
[NooB] Mentor
i think you can do something like this

in button
Code:
mw3.process_handle("iw5mp")
mw3.write_integer(&H?????? , pl)
timer1.start
in timer
Code:
dim pp as Integer
pl=pl+1
if pl=20 then
pl=0
end if
pl mean prestige loop

i think this method will work , but this only for prestige
for level its same , try by yourself .

PS: you cant make ESP in vb . Add me in credits if this shit work =)
#2 · edited 13y ago · 13y ago
MW
MW3HackzZ4PC
Code:
    Dim PH As New ProcessHandle 'Checked if a process is running
    Dim HSI As New HackSetInt 'Hack into a Process, ("iw5mp") = MW3 - Multiplayer
    Dim Level As Integer = &H1DC02B8 'Level-Offset for 1.9.461
    Dim Prestige As Integer = &H1DC04C8 'Prestige-Offset for 1.9.461
Code:
    
    Dim Second As Integer = 0
Code:
    Private Sub Button_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button.Click
       	Second = 0 'If the Button is clicked again, then the Second goes back to 0
       	Application.DoEvents()
       	Timer1.Start()
        If PH.Process_Handle("iw5mp") Then
           HSI.Hack("iw5mp")
           HSI.SetInt(Prestige_Offset, Second)
  	Else
             MsgBox("Game is not running!", , "Warning!")
        End If
    End Sub
Code:
    Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        Second += 1 'If Timer1.Interval = 1000 then is "Second" every Second +1 Number up
        Second = CStr(Second)
        If Second = 21 Then
           Second = 21 'If "Second" is 21, then it goes back to 0 and it's start it new again
        End If
    End Sub
#3 · edited 13y ago · 13y ago
Jorndel
Jorndel
Quote Originally Posted by MW3HackzZ4PC View Post
If PH.Process_Handle("iw5mp") Then
HSI.Hack("iw5mp")
HSI.SetInt(Prestige_Offset, Second)
Why are you using 2 memory classes when 1 can do the job?
#4 · 13y ago
MW
MW3HackzZ4PC
Quote Originally Posted by Jorndel View Post


Why are you using 2 memory classes when 1 can do the job?
Hmm... Why not?
It's easy too.
#5 · edited 13y ago · 13y ago
Jorndel
Jorndel
Quote Originally Posted by MW3HackzZ4PC View Post
Hmm... Why not?
Well, just waste of code
#6 · 13y ago
MW
MW3HackzZ4PC
Quote Originally Posted by Jorndel View Post


Well, just waste of code
That some Bytes ...
#7 · 13y ago
Jorndel
Jorndel
Quote Originally Posted by MW3HackzZ4PC View Post
That some Bytes ...
If you're to help someone, you should do it proper. And not something like that.
-It's like telling some one to:

Google this: lol
Then use Bing: lol

And now it should work
(Instead of telling the user to only use Google OR Bing if Google didn't work)
#8 · 13y ago
KE
Kenshin13
Box ESP? No, you can do a Name ESP by patching about 5 bytes though.
#9 · 13y ago
[NooB] Mentor
[NooB] Mentor
Quote Originally Posted by Kenshin13 View Post
Box ESP? No, you can do a Name ESP by patching about 5 bytes though.
you have bytes ?
#10 · 13y ago
KE
Kenshin13
Quote Originally Posted by [NooB] Mentor View Post
you have bytes ?
I could get it....It's pretty simple. It's inside the function to draw the names. Barata I think posted the offset for the function. Just do some simple reversing and you should figure it out. There's more than one way to do it.
#11 · 13y ago
_PuRe.LucK*
_PuRe.LucK*
Find the addresses
Make your own mem class or use jorndels whatever

Example in C#:


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 System.Diagnostics;
using System.Runtime.InteropServices;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        // Jorndels Stuff


       private void button1_Click(object sender, EventArgs e)
       {
           if(Process_Handle("iw5mp"))
           {
                 WriteInteger(0x(Addy of Level/Prestige), (Value));
           }
       }
    }
}
#12 · 13y ago
Starr-MoDz
Starr-MoDz
I have try it s works for me but i have to click button for switch prestige everytime :/
#13 · 13y ago
Posts 1–13 of 13 · Page 1 of 1

Post a Reply

Similar Threads

  • MW3 Editor - Change Playtime,Level,Proficiency,Prestige and much more!By NooR123 in Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    35Last post 14y ago
  • [SOLVED]Change Prestige and VAC ChaosBy barski in Call of Duty Modern Warfare 2 Help
    8Last post 16y ago
  • Number of Prestige Levels ConfirmedBy Legend Of Hacking in Call of Duty Black Ops Discussions
    12Last post 15y ago
  • Selling 2 Black Ops Accounts - 15th Prestige Level 50 - 0 Prestige Level 42 -!CHEAP!!By FakeIDAndYour17 in Selling Accounts/Keys/Items
    7Last post 15y ago
  • able to mod your prestige & level?By xx claws xx in XBOX Customizing & Modding
    7Last post 15y ago

Tags for this Thread

None