Help! toggle hold left to spam

Ask gaming related questions (AHK v1.1 and older)
Fjellgjeit40
Posts: 4
Joined: 21 Apr 2017, 16:26

Help! toggle hold left to spam

21 Apr 2017, 16:35

trying to make a script, i want to toggle this script using F8:

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

Could not make it work, this is what i tried:

toggle = 0
#MaxThreadsPerHotkey 2

F8::
Toggle := !Toggle
While Toggle{
~$LButton::
While GetKeyState("LButton", "P"){
Click
Sleep 50 ; milliseconds
}
return
}

I am a beginner and would be happy if annyone could help me make the script work :D
wolf_II
Posts: 2688
Joined: 08 Feb 2015, 20:55

Re: Help! toggle hold left to spam

21 Apr 2017, 16:47

Try this:

Code: Select all

Toggle := 0

F8:: Toggle := !Toggle

$LButton::
    If Toggle
        While GetKeyState("LButton", "P") {
            Click
            Sleep 50 ; milliseconds
        }
Return
I hope that helps.
Fjellgjeit40
Posts: 4
Joined: 21 Apr 2017, 16:26

Re: Help! toggle hold left to spam

22 Apr 2017, 12:28

this works, but not how i want it too, if i toggle the spammer i can't left-click with my mouse. Is it anny way to fix this.

I basically want to toggle between normal and spam left-click
wolf_II
Posts: 2688
Joined: 08 Feb 2015, 20:55

Re: Help! toggle hold left to spam

22 Apr 2017, 14:09

:oops: I took out the ~, sorry

Code: Select all

Toggle := 0

F8:: Toggle := !Toggle

~$LButton:: ; <<<< here
    If Toggle
        While GetKeyState("LButton", "P") {
            Click
            Sleep 50 ; milliseconds
        }
Return
Fjellgjeit40
Posts: 4
Joined: 21 Apr 2017, 16:26

Re: Help! toggle hold left to spam

23 Apr 2017, 12:02

Thank you so much Wolf_II, works great!
Saboku
Posts: 1
Joined: 19 Feb 2018, 17:46

Re: Help! toggle hold left to spam

19 Feb 2018, 23:01

Just wanted to say thanks to the person that wrote this (both the help and the solution) I had been searching for hours trying to find exactly this! (even joined the discord channel, which didn't really help much...)
my script-fu is weak at best...

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 50 guests