afk farm for A game

Ask gaming related questions (AHK v1.1 and older)
battlehorn5283
Posts: 1
Joined: 28 May 2023, 03:37

afk farm for A game

Post by battlehorn5283 » 28 May 2023, 03:48

I only know 1::1 script I am trying to figure out how to make a script that preses A and D back and forth on a one second delay. and the script start button to be a toggle. and if posable come with an auto clicker 1 second delay between clicks.

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

Re: afk farm for A game

Post by mikeyww » 28 May 2023, 05:45

Welcome to this AutoHotkey forum!

I would work on one step or section at a time, to get it working before moving to the next. One idea is below.

Code: Select all

#Requires AutoHotkey v1.1.33
F3::SetTimer F3 Up, % (on := !on) ? 1000 : "Off"
F3 Up::Send % !on ? "" : c := c != "a" ? "a" : "d"

Post Reply

Return to “Gaming Help (v1)”