Press rmb every second Topic is solved

Ask gaming related questions (AHK v1.1 and older)
TomaTos27

Press rmb every second

21 Oct 2017, 04:36

I am new to autohotkey and i want a toggle that presses rmb once every second. i've googled it and i can only find ones that hold it.
Nantu
Posts: 22
Joined: 30 Jun 2017, 11:15

Re: Press rmb every second  Topic is solved

21 Oct 2017, 15:40

Code: Select all

#MaxThreadsPerHotkey 3
1::  ; 1
#MaxThreadsPerHotkey 1
if KeepWinZRunning ;
{
    KeepWinZRunning := false  ;
    return  ;
}
; Otherwise:
KeepWinZRunning := true
Loop
{
click right
sleep 1000

    if not KeepWinZRunning  ;
        break  ;
}
KeepWinZRunning := false  ;

return
press 1 to start continuously press right click
again press 1 to stop

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 35 guests