Page 1 of 3 123 LastLast
Results 1 to 15 of 35
  1. #1
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh

    Auto Quick Scope Mode - C++

    And there we go:
    Code:
    bool isAQS;
    
    void EnterAQSMode()
    {
    	while( TRUE ) //Enter in a infinite loop stat.
    	{
    		if(isAQS) //If our variable becomes true then...
    		{
    			if(GetKeyState(VK_RBUTTON) == 1) //If you press the right mouse button...
    			{
    				Sleep(100); //Stops the current thread for 100 ms.
    				mouse_event(MOUSEEVENTF_RIGHTDOWN, 0, 0, 0, 0); //Right Mouse Down
    				mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0); //1
    				mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0); //2
    				//1 + 2 = Left Mouse Click
    				mouse_event(MOUSEEVENTF_RIGHTUP, 0, 0, 0, 0); //Right Mouse Up
    				Sleep(100); //Already explained...Stops the current thread for 100 ms.
    			}
    		}
    	}
    }
    Hell yea, I luv C++!!! Credits: Mua! (Me)

  2. The Following User Says Thank You to ♪~ ᕕ(ᐛ)ᕗ For This Useful Post:

    ImTheLastNightmare (04-01-2011)

  3. #2
    kuyakyloo's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    in my house
    Posts
    59
    Reputation
    10
    Thanks
    6
    My Mood
    Sleepy
    How do you use it?

  4. #3
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    put it on a C++ Project, but make sure to put in a DLL project...and add at the top:
    Code:
    #include <Windows.h>
    Compile->Inject->Enjoy!
    (Make sure to put the isAQS variable true..)

  5. #4
    kuyakyloo's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    in my house
    Posts
    59
    Reputation
    10
    Thanks
    6
    My Mood
    Sleepy
    How do you inject it? I compiled it, but how do you inject?

  6. #5
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    use a injector..

  7. #6
    kuyakyloo's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    in my house
    Posts
    59
    Reputation
    10
    Thanks
    6
    My Mood
    Sleepy
    I used winject on iw4mp.dat, still nothing's happening. Even made isAQS to true.

  8. #7
    winberg's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    70
    Reputation
    14
    Thanks
    14
    My Mood
    Stressed
    You have to add a sleep after the first,
    Code:
    mouse_event(MOUSEEVENTF_RIGHTDOWN, 0, 0, 0, 0);  Sleep(260);
    else it will shoot before ads.

    oftopic what is a choob?
    Last edited by winberg; 03-16-2011 at 02:56 AM.

  9. #8
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by winberg View Post
    You have to add a sleep after the first,
    Code:
    mouse_event(MOUSEEVENTF_RIGHTDOWN, 0, 0, 0, 0);  Sleep(260);
    else it will shoot before ads.

    oftopic what is a choob?
    already tried...Still the same effect. Also I'm lucky enough to get it work without that sleep

  10. #9
    Decobez's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Graphics Section <3
    Posts
    411
    Reputation
    28
    Thanks
    113
    My Mood
    Twisted
    nice GJ man keep it up

  11. The Following User Says Thank You to Decobez For This Useful Post:

    XxFALL3NxX (03-18-2011)

  12. #10
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    thanks =) /2short?

  13. #11
    tdudley12's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    i have no idea what you guys are talking about but i really want to be able to do this kind of stuff

  14. #12
    FilthYy's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Fuck off. =]
    Posts
    147
    Reputation
    11
    Thanks
    23
    My Mood
    Daring
    ncie man

  15. #13
    Stroop1337's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    111
    Reputation
    12
    Thanks
    12
    Nice great
    ~ Parts of this Signature Violated MPGH Rules & Guidelines~

    Tell me which rules plz ^^

  16. #14
    MadGammerz's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Is this for xbox 360?

  17. #15
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by MadGammerz View Post
    Is this for xbox 360?
    it's for PC.

Page 1 of 3 123 LastLast