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 › MW3 Media Player [Simple] - Also for MW2

MW3 Media Player [Simple] - Also for MW2

Posts 1–4 of 4 · Page 1 of 1
Jorndel
Jorndel
MW3 Media Player [Simple] - Also for MW2
Well, I just made a media player for you guys.
If any wonder why I did this, it's because I feel it would be nice to have a media player that register my Keys Pressed.
So I don't have to go out of the game to change song, or start a new song.

This Idea is from the Advanced Modern Warfare 3 Editor V4.1
Credits go therefore to - @Anonymouss

I have also included the Source Code in the Spoiler Under. (Language = C#)
 
Click here to view Source Code

Code:
private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                listBox1.Items.Clear();
                OpenFileDialog a = new OpenFileDialog();
                a.Multiselect = true;
                a.ShowDialog(this);
                foreach (string b in a.FileNames)
                {
                     listBox1.Items.Add(b);
                }
                listBox1.SelectedIndex = 0;
                Play();
            }
            catch { }
        }


        void Play()
        {
            axWindowsMediaPlayer1.URL = listBox1.SelectedItem.ToString();
            axWindowsMediaPlayer1.Ctlcontrols.play();
        }

        private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            Play();
        }


        bool visu = true;
        [DllImport("user32.dll")]
        public static extern Int16 GetAsyncKeyState(Keys vKey);
        private void timer1_Tick(object sender, EventArgs e)
        {
            try
            {
                if (Convert.ToBoolean(GetAsyncKeyState(Keys.F1))) { Play(); }
                if (Convert.ToBoolean(GetAsyncKeyState(Keys.F2))) {  axWindowsMediaPlayer1.Ctlcontrols.stop(); }
                if (Convert.ToBoolean(GetAsyncKeyState(Keys.F3))) { listBox1.SelectedIndex++; Play(); }
                if (Convert.ToBoolean(GetAsyncKeyState(Keys.F4))) { listBox1.SelectedIndex--; Play(); }
                if (Convert.ToBoolean(GetAsyncKeyState(Keys.Insert))){if (visu) { visu = false; this.Hide(); } else { visu = true; this.Show(); }}
                if (Convert.ToBoolean(GetAsyncKeyState(Keys.End))) { Application.Exit(); }
            }
            catch { }
        }

        private void timer2_Tick(object sender, EventArgs e)
        {
            if (axWindowsMediaPlayer1.playState == WMPPlayState.wmppsStopped) { listBox1.SelectedIndex++; Play(); }
        }


Note: the DLLs that are included are needed. Those DLLs are the Windows Media Player DLLs. (Required to run the Program)
And yes... The Stop is bugged :S

Our lovely image


And the beloved Virus scans that most don't bother to look on
Our First Scan 0/43
Our Second Scan 0/20
MW3IMP.rar
#1 · 14y ago
IssoeDoido
IssoeDoido
I want to listen the footsteps... No a music... So... Good program.
#2 · 14y ago
tarquin
tarquin
Footsteps.mp3
Problem solved
#3 · 14y ago
Crazydude5
Crazydude5
"register my Keys Pressed."

So it's a keylogger? Correct me if i'm wrong
#4 · 13y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • MW3 Media Player [Simple]By Jorndel in Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    28Last post 13y ago
  • a simple question for mw3 hack makersBy cracker415 in Call of Duty Modern Warfare 3 Discussions
    6Last post 14y ago
  • Exteel BMG decrypted for media players.By Trip-FX in General Game Hacking
    0Last post 17y ago
  • Can i plze have the main and players files for mw2 1.0.184 patchBy cashmoney950 in Call of Duty Modern Warfare 2 Help
    1Last post 16y ago
  • Windows Media Player 11By stingray001 in General
    9Last post 20y ago

Tags for this Thread

None