MMOMinion
Chocobo-Training & Ventures - Printable Version

+- MMOMinion (https://www.mmominion.com)
+-- Forum: FFXIVMinion (https://www.mmominion.com/forumdisplay.php?fid=87)
+--- Forum: Support - English, Deutsch, 中文 (https://www.mmominion.com/forumdisplay.php?fid=92)
+---- Forum: English Support & Questions (https://www.mmominion.com/forumdisplay.php?fid=93)
+---- Thread: Chocobo-Training & Ventures (/showthread.php?tid=10077)



Chocobo-Training & Ventures - GotDamned - 12-07-2014

Is it possible to set the bot up so he trains my chocobo every hour and sends my retainer on a new quick venture?


RE: Chocobo-Training & Ventures - Cichard - 12-07-2014

nope


RE: Chocobo-Training & Ventures - iloveffxi - 12-07-2014

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.

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/threads/79369-So-I-made-a-macro-program...