Need someone to write simple script for me.

Ask gaming related questions (AHK v1.1 and older)
stilltrillogf
Posts: 3
Joined: 01 Feb 2021, 20:47

Need someone to write simple script for me.

12 Apr 2021, 07:46

Firstable, i don't have time to learn writing scripts, that's why i'm asking someone to do it for me. I will really appreciate your work.

I need background autoclicker for minecraft. I need to be able to click RMB every 15 minutes and meanwhile using my mouse in other game or doing just something else in other window.

Let's say that start/stop key would be F7. It would be also easier if starting(only starting) would be possible after clicking RMB.

If you can, please explain what each part of code is responsible for - so in future i could change time between clicks and other functions.

Thanks a lot.
User avatar
mikeyww
Posts: 26944
Joined: 09 Sep 2014, 18:38

Re: Need someone to write simple script for me.

12 Apr 2021, 08:38

Code: Select all

#IfWinActive Minecraft
F7::
If !(on := !on) {
 SetTimer, Go, Off
 Return
}
RButton::
on := True
SetTimer, Go, 900000
Go:
Click, Right
Return
#IfWinActive
The SetTimer line shows the frequency in milliseconds.

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 76 guests