Results 1 to 5 of 5
  1. #1
    Player
    Baladore's Avatar
    Join Date
    Aug 2013
    Posts
    1
    Character
    Shinjo Maku
    World
    Midgardsormr
    Main Class
    Pugilist Lv 30

    Loggin Script anyone?

    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.
    (2)

  2. #2
    Player
    twigglypuff's Avatar
    Join Date
    Aug 2013
    Posts
    81
    Character
    Twigglypuff Reaper
    World
    Malboro
    Main Class
    Pugilist Lv 50
    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.
    (0)

  3. #3
    Player
    Gojeran's Avatar
    Join Date
    Apr 2011
    Posts
    35
    Character
    Light Aurion
    World
    Sargatanas
    Main Class
    Pugilist Lv 50
    Quote Originally Posted by twigglypuff View Post
    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.
    This is sound advice! I like it
    (0)

  4. #4
    Player
    Zazed's Avatar
    Join Date
    Aug 2013
    Posts
    2
    Character
    Zazed Dagarkin
    World
    Odin
    Main Class
    Gladiator Lv 15

    Autohotkey login

    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
    (0)

  5. #5
    Player
    Zazed's Avatar
    Join Date
    Aug 2013
    Posts
    2
    Character
    Zazed Dagarkin
    World
    Odin
    Main Class
    Gladiator Lv 15
    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
    (1)