Page 1 of 1

Making the left click autoclick using ahk shift work while shift key is held down  Topic is solved

Posted: 18 Jun 2018, 22:36
by Reverb
I am new to auto hot key scripts so please pardon me. So I am using this script right now to use my left click turbo click while left click is held...

~$LButton::
While GetKeyState("LButton", "P"){
Click
Sleep 00 ; milliseconds
}
return

The thing is I play rainbow six siege and my shift key is the lean left....so when I am leaning left, which means holding shift, the script doesn't work....all I need is the script to work even when the shift key is held.. What is it that I should add or make changes to this script??

Thanks in advance!

Re: Making the left click autoclick using ahk shift work while shift key is held down

Posted: 19 Jun 2018, 08:27
by Masonjar13

Code: Select all

~*$LButton:: ; * allows any other keys to be held at the same time
Also, 00 = 0, which is no sleep, but checks the queue to allow other threads to do something.