Anyone written a loggin script cause of this stupid cap? One that spams Numpad 0 while in Final Fantasy 14: ARR? Or clicks all the needed crap to keep trying to log in with these errors.
Printable View
Anyone written a loggin script cause of this stupid cap? One that spams Numpad 0 while in Final Fantasy 14: ARR? Or clicks all the needed crap to keep trying to log in with these errors.
go google "mouse macro recorder", you can get whichever one u want (jitbit is good). Throw FFXIV ARR into windowed mode, and start your recording. Hit start, character, login, and then okay (for when the 1017 error pops). Then playback and go about your business. It usually logs you in after 40-50 attempts. Be careful tho, sometimes the game ACTUALLY PUTS YOU INTO QUEUE, at which point your recording will cancel the queue if you let it keep going. Therefore it is best to sometimes watch it just incase that happens. Good luck.
My autohotkey login script in the next post.
Will type a password automatically and log you in, enter your password instead of the bold text.
It will also remove the window border and maximize the screen keeping your taskbar visible, change the underlined to match your resolution. Or comment out the entire section if you wanna play fullscreen.
You have to put the script in the same directory as the ffxboot.exe
Code:Run ffxivboot.exe
SetTitleMatchMode, Slow
;; Loop until window loaded
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
while 1
{
sleep 1000
SetBatchLines, 9
WinWaitActive, ahk_class FFXIVLauncher
PixelGetColor, color, 10, 30
if color <> 0x000000
continue
PixelGetColor, color, 850, 160
if color = 0xFFFFFF
break
}
;; Send Password
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
WinWaitActive, ahk_class FFXIVLauncher
Click 860, 160
SendRaw yourpassword
Send {Enter}
sleep 2000
;; Remove window decoration
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
WinWaitActive, ahk_class FFXIVGAME
WinMaximize , ahk_class FFXIVGAME
WinSet, Style, -0xC00000, ahk_class FFXIVGAME
WinSet, Style, -0x40000, ahk_class FFXIVGAME
WinMove, ahk_class FFXIVGAME, , 0, 0, 1920, 1040
WinSet, Style, -0x20000, ahk_class FFXIVGAME
exit