Results 1 to 6 of 6
  1. #1
    63OR63's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Frozen Hell
    Posts
    267
    Reputation
    100
    Thanks
    3,093
    My Mood
    Cold

    QuickSwitch script

    Hey guys, I wrote some short and simple AutoHotkey script for switching to sniper rifles faster. Here it is:
    Code:
    #NoEnv
    #SingleInstance force
    
    #IfWinActive ahk_class CoDBlackOps
    
    FeatureOn(PopupText)
    { 
    	Gui, Destroy 
    	Gui, +AlwaysOnTop +ToolWindow +LastFound -SysMenu -Caption 
    	Gui, Color, 000000
    	WinSet, Transparent, 200
    	Gui, Font, s8, norm, Verdana
    	Gui, Add, Text, x5 y5 c00ff00, %PopupText%  
    	Gui, Show, NoActivate X0 Y18
    	sleep 300
    	Gui, Destroy
    }
    
    FeatureOff(PopupText)
    { 
    	Gui, Destroy 
    	Gui, +AlwaysOnTop +ToolWindow +LastFound -SysMenu -Caption 
    	Gui, Color, 000000
    	WinSet, Transparent, 200
    	Gui, Font, s8, norm, Verdana
    	Gui, Add, Text, x5 y5 cff0000, %PopupText%  
    	Gui, Show, NoActivate X0 Y18
    	sleep 300
    	Gui, Destroy
    }
    
    F6::
    	if Sw < 1
    	{
    		Sw += 1
    		if Sw = 1
    		{
    			SoundBeep, 1000, 300
    			FeatureOn("QUICKSWITCH ACTIVATED")
    		}
    	}
    	else
    	{
    		Sw := 0
    		SoundBeep, 200, 100
    		SoundBeep, 200, 100
    		FeatureOff("QUICKSWITCH DEACTIVATED")
    	}
    	return
    	
    *$1::
    	if Sw = 1
    	{
    		send {1}
    		sleep 350
    		send {1}
    		send {1}
    	}
    	else
    	{
    		send {1}
    	}
    	return
    
    *$2::
    	if Sw = 1
    	{
    		send {2}
    		sleep 350
    		send {2}
    		send {2}
    	}
    	else
    	{
    		send {2}
    	}
    	return
    Toggle key is temporary F6, but I believe you know how to change it.
    Here is the demonstration:
    [YOUTUBE]2xlTKpuJiGQ[/YOUTUBE]
    I'm planning to add this script to my next QuickScope plugin for ExternalHack release, but it needs testing first. Anyway, you can use it right now if you like it, it already works.

    Virus Scans:
    VirusTotal - Free Online Virus, Malware and URL Scanner
    QuickSwitch.rar - Jotti&#039;s malware scan
    Last edited by master131; 01-29-2011 at 02:44 AM.

  2. The Following 6 Users Say Thank You to 63OR63 For This Useful Post:

    DiCTor (10-12-2012),Leaf (01-29-2011),MOTHERLILY (06-29-2013),mrozik97 (01-28-2013),quadrax (06-09-2012),Refail (01-29-2011)

  3. #2
    Leaf's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    the Netherlands.
    Posts
    2,059
    Reputation
    456
    Thanks
    417
    My Mood
    Cheerful
    looks cool!, you should make 1 scrip/program with all these kind of things in it

    (i see, your already planned it? )
    Ex-



    Previous Names: Leaf, Acinonyx, Fawkes.


  4. #3
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    You should attach it as executeable.



  5. #4
    63OR63's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Frozen Hell
    Posts
    267
    Reputation
    100
    Thanks
    3,093
    My Mood
    Cold
    Quote Originally Posted by Blubb1337 View Post
    You should attach it as executeable.
    Should I? It's not a release, it's source code and it's located in the source code section of the forum. I'll test it first, optimize, and then release built in my QuickScope plugin for ExternalHack. ATM there is no need to attach readme, executable and so on IMO.

  6. #5
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,667
    My Mood
    Breezy
    Quote Originally Posted by Blubb1337 View Post
    You should attach it as executeable.
    Done.
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  7. #6
    63OR63's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Frozen Hell
    Posts
    267
    Reputation
    100
    Thanks
    3,093
    My Mood
    Cold
    Quote Originally Posted by master131 View Post
    Done.
    Hey, WTF?! LOL I still sure it's not worth to be released before optimizing the timings.