Results 1 to 7 of 7
  1. #1
    Jorndiel's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    6
    My Mood
    Amused

    Mw3 Status Checker


    Hello MPGH
    Today i give a tutorial on how to make a mw3 status checker for your hack


    Video




    Source


    Click me - PasteBin


    Credits

    Who-ever, Made The trainner.vb source code

    Want to learn coding in VB?
    Now I start to create tutorials in VB because C++ is too hard for me
    I will also do classes if anyone want some extra help.


    Contact Info:
    MSN: Scripttosl@live.co.uk
    Yahoo: jorndleehou

    YouTube:
    ScripToYT


    Please click on my dragon and eggs, they grow the more you view them



    If the eggs are hidden in fog don't click them, they are sick from all the attention. if they get to much attention they get sick and need to be left alone to get better. but if the eggs are showing you can view them.

  2. #2
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    Nice, but an 10 min long video for a Status checker?
    Well, nice you made it but, you could easy done this work just by using the Process.
    Like this:
    Code:
    Sub Check()
            If Process.GetProcessesByName("notepad").GetLength(0) Then MessageBox.Show("Found") Else MessageBox.Show("Not Found")
        End Sub
    Also, when you want to show us how to do it, don't focus on the design

    Also, is your mic a bit terrible?
    (Or is it just this bad laptop from school that have bad speakers?)

    ---------- Post added at 07:10 AM ---------- Previous post was at 07:08 AM ----------

    @Jorndiel Make it shorter next time.
    That is the hint.

    Also, I kinda made this.
    And mostly like it would belong here: Programming - MPGH - MultiPlayer Game Hacking
    (Since it's "standard" Process checking.)

     
    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

  3. #3
    Jorndiel's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    6
    My Mood
    Amused
    Quote Originally Posted by Jorndel View Post
    Nice, but an 10 min long video for a Status checker?
    Well, nice you made it but, you could easy done this work just by using the Process.
    Like this:
    Code:
    Sub Check()
            If Process.GetProcessesByName("notepad").GetLength(0) Then MessageBox.Show("Found") Else MessageBox.Show("Not Found")
        End Sub
    Also, when you want to show us how to do it, don't focus on the design

    Also, is your mic a bit terrible?
    (Or is it just this bad laptop from school that have bad speakers?)

    ---------- Post added at 07:10 AM ---------- Previous post was at 07:08 AM ----------

    @Jorndiel Make it shorter next time.
    That is the hint.

    Also, I kinda made this.
    And mostly like it would belong here: Programming - MPGH - MultiPlayer Game Hacking
    (Since it's "standard" Process checking.)
    my mics crap i trod on it and yeah the video was 16 min but i edit it a bit, the design was an example of transparent feature, it took so long cause i was tired i done the vid at 1:00am yesterday in morning

    i done the code my way /
    Last edited by Jorndiel; 02-06-2012 at 06:39 AM.
    Want to learn coding in VB?
    Now I start to create tutorials in VB because C++ is too hard for me
    I will also do classes if anyone want some extra help.


    Contact Info:
    MSN: Scripttosl@live.co.uk
    Yahoo: jorndleehou

    YouTube:
    ScripToYT


    Please click on my dragon and eggs, they grow the more you view them



    If the eggs are hidden in fog don't click them, they are sick from all the attention. if they get to much attention they get sick and need to be left alone to get better. but if the eggs are showing you can view them.

  4. #4
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    Quote Originally Posted by Jorndiel View Post
    My mics crap I trod on it and yeah the video was 16 min but I edit it a bit, the design was an example of transparent feature, it took so long cause I was tired I done the vid at 1:00am yesterday in morning

    I done the code my way /
    Well, I just gave people a way that don't require to load the kernel32.dll
    And it can be used for more stuff in one way.

     
    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

  5. #5
    aIW|Convery's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    2,875
    Reputation
    124
    Thanks
    604
    My Mood
    Cynical
    Let's see if I can do a similar tutorial for C++..

    Code:
    #include <Windows.h>
    	
    	
    int main()
    {
    	DWORD MW3_PID;
    	HWND MW3_HWND;
    	HANDLE MW3_HANDLE;
    
    	
    	while(!(MW3_HWND = FindWindow(NULL,"Call of Duty®: Modern Warfare® 3 Multiplayer")))
    		Sleep(10);
    			
    	while(!(GetWindowThreadProcessId(MW3_HWND,&MW3_PID)))
    		Sleep(10);
    		
    	while(!(MW3_HANDLE = OpenProcess(PROCESS_ALL_ACCESS,false,MW3_PID)))
    		Sleep(10);	
    		
    	while(MW3_HWND = FindWindow(NULL,"Call of Duty®: Modern Warfare® 3 Multiplayer"))
    	{
    		//Do 1337 haxxor stuff
    	}
    	
    	MessageBox(NULL, "MW3 killed itself..\n*Sadface*", NULL, NULL);
            return 0;
    }
    There.. now to drag it out into a 10 min video..
    Last edited by aIW|Convery; 02-06-2012 at 08:27 AM.

  6. #6
    Jorndiel's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    6
    My Mood
    Amused
    Quote Originally Posted by aIW|Convery View Post
    Let's see if I can do a similar tutorial for C++..

    Code:
    #include <Windows.h>
    	
    	
    int main()
    {
    	DWORD MW3_PID;
    	HWND MW3_HWND;
    	HANDLE MW3_HANDLE;
    
    	
    	while(!(MW3_HWND = FindWindow(NULL,"Call of Duty®: Modern Warfare® 3 Multiplayer")))
    		Sleep(10);
    			
    	while(!(GetWindowThreadProcessId(MW3_HWND,&MW3_PID)))
    		Sleep(10);
    		
    	while(!(MW3_HANDLE = OpenProcess(PROCESS_ALL_ACCESS,false,MW3_PID)))
    		Sleep(10);	
    		
    	while(MW3_HWND = FindWindow(NULL,"Call of Duty®: Modern Warfare® 3 Multiplayer"))
    	{
    		//Do 1337 haxxor stuff
    	}
    	
    	MessageBox(NULL, "MW3 killed itself..\n*Sadface*", NULL, NULL);
            return 0;
    }
    There.. now to drag it out into a 10 min video..
    uhm lol i take my time i dont rush video's if ur botherd about the 10 mins learn to "skip" the video, i dont copy &paste it was hard for me to remember source. when i have loads over
    Want to learn coding in VB?
    Now I start to create tutorials in VB because C++ is too hard for me
    I will also do classes if anyone want some extra help.


    Contact Info:
    MSN: Scripttosl@live.co.uk
    Yahoo: jorndleehou

    YouTube:
    ScripToYT


    Please click on my dragon and eggs, they grow the more you view them



    If the eggs are hidden in fog don't click them, they are sick from all the attention. if they get to much attention they get sick and need to be left alone to get better. but if the eggs are showing you can view them.

  7. #7
    tazzyopz's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    663
    I don't really make MW3 Hackz I might look into trying to but what does a "Status checker" do? It just seemed to me it's a label that turns green when you Run the MW3 application?

Similar Threads

  1. MW3 status off?
    By Grilofuzeta in forum Call of Duty Modern Warfare 3 Help
    Replies: 5
    Last Post: 01-27-2012, 09:43 AM
  2. MPGHScape Online Status Checker
    By Gargamele in forum Runescape Private Servers
    Replies: 2
    Last Post: 10-06-2011, 04:41 PM
  3. [Release] CBL Checker [NEW]Comments on your status!
    By Bombsaway707 in forum Combat Arms Hacks & Cheats
    Replies: 41
    Last Post: 11-05-2009, 11:34 AM
  4. CBL Status Checker / Clean-Dirty Detector
    By Ugleh in forum Combat Arms Discussions
    Replies: 60
    Last Post: 09-23-2009, 08:04 PM
  5. CBL Status Checker / Clean-Dirty Detector
    By eliran93 in forum Combat Arms Discussions
    Replies: 16
    Last Post: 09-23-2009, 01:36 PM