Results 1 to 2 of 2
  1. #1
    dionotto's Avatar
    Join Date
    Jan 2013
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0

    Question Quickscope and Trickshot Script

    Hi Community

    I need a script ( for ahk ) which let me spinn arround while press a key like "x" or something else.
    And a quickscope script )

  2. #2
    X1R0N's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    2
    My Mood
    Worried
    My Quickscope script (written in autoit. To execute download autoit from autoit.de or autoitscrip*****m):
    Code:
    #include <Misc.au3>
    $vDLL = DllOpen("user32.dll")
    
    If WinExists("Modern Warfare 2") Then
    	WinActivate("Modern Warfare 2")
    EndIf
    
    HotKeySet("{END}", "_Kill")
    
    While 1
    	If _IsPressed(06, $vDLL)  Then ;MouseKey 5
    		Send("{LSHIFT up}")
    		MouseDown("right")
    		Sleep(25)
    		Sleep(250)
    		Send("{LSHIFT up}")
    		MouseDown("left")
    		Sleep(25)
    		MouseUp("left")
    		Sleep(25)
    		MouseUp("right")
    		MouseClick("right")
    	EndIf
    	Sleep(50)
    WEnd
    
    Func _Kill()
    	ToolTip("Exiting...")
    	Sleep(250)
    	exit 0
    EndFunc
    It uses the fifth mouse key. If you do not have it, change this line
    Code:
    	If _IsPressed(06, $vDLL)  Then ;MouseKey 5
    Last edited by X1R0N; 04-25-2013 at 05:46 AM.

Similar Threads

  1. [Solved] GSC Super Jump And Speed Script Error
    By harryh in forum Call of Duty Modern Warfare Help
    Replies: 0
    Last Post: 11-13-2011, 05:20 AM
  2. GSC Super Jump And Speed Script Error
    By harryh in forum Call of Duty Modern Warfare Help
    Replies: 0
    Last Post: 11-11-2011, 10:07 AM
  3. RSBot - Running and adding Scripts
    By Jigsaw in forum Runescape Tutorials
    Replies: 33
    Last Post: 09-03-2011, 08:01 AM
  4. VPSBotting and AutoFighter Script
    By GForce-Cody in forum RuneScape Discussions
    Replies: 19
    Last Post: 07-04-2011, 12:07 AM
  5. How to compile and add scripts directly into RSBot.jar!
    By Death751 in forum Runescape Tutorials
    Replies: 3
    Last Post: 05-10-2011, 08:56 PM

Tags for this Thread