Need an Autoclicker please

Ask gaming related questions
ReddSn0w
Posts: 1
Joined: 06 Apr 2024, 19:59

Need an Autoclicker please

Post by ReddSn0w » 06 Apr 2024, 20:02

Can someone make a clicker that clicks the N key once at the "beginning" then again in an hour and then after 15 seconds and repeat continuously?

Thanks in advance if anyone can do it :)

User avatar
mikeyww
Posts: 27138
Joined: 09 Sep 2014, 18:38

Re: Need an Autoclicker please

Post by mikeyww » 07 Apr 2024, 07:47

Welcome to this AutoHotkey forum!

Code: Select all

#Requires AutoHotkey v2.0

F3 Up:: {
 Static n := 1, go := () => (Send('n'), SetTimer(go, -1000 * [3600, 15][1 + n ^= True]))
 go
}

Post Reply

Return to “Gaming”