Results 1 to 4 of 4

Hybrid View

  1. #1
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic

    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#)
     

    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
    <b>Downloadable Files</b> Downloadable Files

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  2. The Following 30 Users Say Thank You to Jorndel For This Useful Post:

    Aorcent (03-14-2013),AstroReQ (06-09-2012),Bambusstück (02-17-2015),Baum123 (07-14-2012),Benny2k16 (02-02-2016),benny991021d (12-14-2012),bru65 (04-30-2012),d3an26 (06-19-2012),EpicCockMuncherNo1 (03-08-2012),gundars (10-27-2012),janistbe3 (06-01-2013),Jeffrey2457 (03-05-2013),John0091 (07-01-2012),Larity2056 (05-06-2012),lastl3 (09-26-2012),lolpassy (01-19-2013),niklas255 (07-21-2013),nzthrasher (01-19-2013),oyunicin (10-13-2012),pikachu7757 (04-04-2013),Pureskillz7 (07-03-2013),qq1194869050 (08-14-2014),raidarahacks (05-28-2013),ryhan (09-04-2012),So quero o hack (03-23-2013),Tobias Atis (09-04-2012),warrockzockr (12-29-2012),xxn3v3t5xx (11-09-2014),Yazan Khalaf (01-02-2013),zzurbanzz (02-22-2013)

  3. #2
    IssoeDoido's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    43
    Reputation
    10
    Thanks
    12
    My Mood
    Fine
    I want to listen the footsteps... No a music... So... Good program.

  4. #3
    tarquin's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Australia
    Posts
    122
    Reputation
    10
    Thanks
    5,334
    My Mood
    Angelic
    Footsteps.mp3
    Problem solved

  5. #4
    Crazydude5's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    724
    Reputation
    10
    Thanks
    58
    My Mood
    Amazed
    "register my Keys Pressed."

    So it's a keylogger? Correct me if i'm wrong

Similar Threads

  1. [Release] MW3 Media Player [Simple]
    By Jorndel in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 28
    Last Post: 10-28-2012, 03:28 AM
  2. a simple question for mw3 hack makers
    By cracker415 in forum Call of Duty Modern Warfare 3 Discussions
    Replies: 6
    Last Post: 12-29-2011, 03:59 PM
  3. Can i plze have the main and players files for mw2 1.0.184 patch
    By cashmoney950 in forum Call of Duty Modern Warfare 2 Help
    Replies: 1
    Last Post: 04-13-2010, 10:38 PM
  4. Exteel BMG decrypted for media players.
    By Trip-FX in forum General Game Hacking
    Replies: 0
    Last Post: 04-16-2009, 06:14 AM
  5. Windows Media Player 11
    By stingray001 in forum General
    Replies: 9
    Last Post: 05-30-2006, 01:30 PM