Auto AFK farming help with script!

Ask gaming related questions (AHK v1.1 and older)
walj11
Posts: 1
Joined: 23 May 2022, 04:11

Auto AFK farming help with script!

Post by walj11 » 23 May 2022, 04:16

Hi guys!
I'm hoping someone can help me write a script as I've been trying for hours now and I just can't get the hang of it.

I basically want to AFK farm on repeat for hours on end a game in a specific spot.
I don't need the mouse to move or anything but I basically want the script to
Press Q
Then 1 sec delay
Press W
1 sec delay
Press E
1 sec delay
press R
1 sec delay
Press A
1 sec delay press F

Then I need it to chill for 30 sec before it starts again.
This on loop for 8 hours minimum.

How do I do that? Thank you again for help and excuse my absolute inability and possible stupid questions

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

Re: Auto AFK farming help with script!

Post by mikeyww » 23 May 2022, 04:32

Welcome to this AutoHotkey forum!

Code: Select all

SetKeyDelay, 1000, 25 ; Uninterruptible
Loop {
 Send qweraf
 Sleep, 30000
}
Alternative: SetTimerSleep

Post Reply

Return to “Gaming Help (v1)”