Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

RapidFire Left Click Script


  • Please log in to reply
4 replies to this topic
iceman
  • Members
  • 1 posts
  • Last active: Apr 17 2009 11:32 PM
  • Joined: 17 Apr 2009
This script lets you have a rapid fire mouse. Pressing the right shift key will turn it on/off.

#NoEnv
#SingleInstance Force
SetTitleMatchMode 2
#Persistent
DetectHiddenWindows, On
sendMode Input
#InstallKeybdHook
#InstallMouseHook
SetDefaultMouseSpeed, 0
SetMouseDelay, -1
SetKeyDelay, -1
SetWinDelay, -1
SetBatchLines, -1
SetControlDelay -1
#MaxThreads 30
#MaxHotKeysPerInterval 1000
#MaxThreadsBuffer on
#KeyHistory 0

~*LButton::
loop
{ GetKeyState, LButtonState, LButton, P
GetKeyState, RShift, RShift, T

if (LButtonState = "U") || (RShift = "U")
	{
		; send {Click}6 break
	}
		else
	{ send {click down} send {click up} 
	}

	}

Return


philskilz
  • Members
  • 18 posts
  • Last active: Nov 06 2009 05:19 AM
  • Joined: 25 Jun 2008
y the long script 4 an autoclicker?;..

Ins::Suspend
LButton::
Loop
{
SetMouseDelay 30
Click
If (GetKeyState("LButton","P")=0)
Break
}


Smackomatic
  • Guests
  • Last active:
  • Joined: --

y the long script 4 an autoclicker?;..

Ins::Suspend
LButton::
Loop
{
SetMouseDelay 30
Click
If (GetKeyState("LButton","P")=0)
Break
}



philskilz
  • Members
  • 18 posts
  • Last active: Nov 06 2009 05:19 AM
  • Joined: 25 Jun 2008

y the long script 4 an autoclicker?;..

Ins::Suspend
LButton::
Loop
{
SetMouseDelay 30
Click
If (GetKeyState("LButton","P")=0)
Break
}


erm u change "Ins" to "o" lol ...

bibbis
  • Members
  • 3 posts
  • Last active:
  • Joined: 01 Dec 2013

Hey there!

I was wondering if someone could reverse the short version of this script for me, so that it's off by default and the shift key ACTIVATES it?