10-06-2013, 01:37 AM
(10-06-2013, 12:52 AM)kinosix Wrote: i do not believe it sends it to the actual window. My best advice is to just alt tab every 15 minutes if you're sitting at your computer and use this script while ur afk
I made a little change to the one I posted, changed it so it sends it to the game's window. Just tested it and it works fine.
I've also compiled it to an EXE so folk without AHK can run it. It will send a space every 90 seconds to any window who's title starts with 'FINAL FANTASY XIV' (caps and all, just like the game). If you don't trust my exe (you should have AV anyway, right?), then just compile the AHK script I posted above (not the one by kinosix, it doesn't have the background capability). Run the exe/script and press 'Insert' to enable or disable.
Until the devs work it out at their end, this is a workable solution.
I'll also edit my first post so anyone else coming to this thread can find it immediately.
Lastly, MAKE SURE TO RUN THE SCRIPT OR EXE AS ADMIN OR IT WILL NOT WORK!
I made a slight mistake with my code above, so here it is corrected:
Code:
#SingleInstance,Force
#MaxThreadsPerHotkey 2
var = 0
return ; end of autoexecute section
INS::
var := !var
Loop
{
SetTitleMatchMode, 1
ControlSend,,{Space},FINAL FANTASY XIV
Sleep, 90000
}
return