10-06-2013, 12:31 AM
Do you know if this particular modification will send it to the window in the background (so I can do other stuff while it bots)?
Code:
#SingleInstance,Force
#MaxThreadsPerHotkey 2
var = 0
return ; end of autoexecute section
INS::
var := !var
Loop
{
if !var
break
SetTitleMatchMode, 1
ControlSend, {Space}, FINAL FANTASY XIV
Sleep, 900000
}
return