12-07-2014, 09:22 AM
12-07-2014, 07:48 PM
nope
12-07-2014, 09:21 PM
I have been using AutoHotKey script to feed my choco.
All it does is spams numpad 0 , got it from oficall forums. Hopefully it works for you.
link to forums if you need instructions
http://forum.square-enix.com/ffxiv/threa...ro-program...
All it does is spams numpad 0 , got it from oficall forums. Hopefully it works for you.
Code:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
flKeepLooping := 0
Loop {
if (flKeepLooping = 1) {
ControlSend, , {Numpad0}, ahk_class FFXIVGAME
Sleep 500
}
}
^z::
if flKeepLooping = 1
flKeepLooping = 0
else
flKeepLooping = 1
return
link to forums if you need instructions
http://forum.square-enix.com/ffxiv/threa...ro-program...