10 lines
134 B
Plaintext
10 lines
134 B
Plaintext
|
#Requires AutoHotkey v2.0
|
||
|
|
||
|
SetTimer Click, 200
|
||
|
|
||
|
Click()
|
||
|
{
|
||
|
if WinExist("Clicker Game")
|
||
|
WinActivate ;
|
||
|
Send "^i"
|
||
|
}
|