Page 1 of 2 1 2 LastLast
Results 1 to 10 of 11
  1. #1
    Player
    AlexSkylark's Avatar
    Join Date
    Aug 2013
    Location
    Limsa Lominsa
    Posts
    31
    Character
    Spethro Hip
    World
    Behemoth
    Main Class
    Conjurer Lv 10

    So, I made a macro program...

    OK, in essence, what it does is keep spamming the "numpad 0" button over and over forever on end. With this, you'll be able to hammer the login server for hours if need be. Usage is simple: press CTRL+Z to enable the script, CTRL+Z again disables it.

    The best part is that it sends the key event directly to the FF14 window, meaning it'll keep sending keystrokes there even if you're alt+tabbed running another game or browsing the forums...

    This is the script source code. You'll need the AUTOHOTKEY software to run it:

    http://www.autohotkey.com

    After installing, create a blank file called something.ahk (or whatever name you want to call it, with the AHK extension). Open it up on notepad or something and paste the following code:

    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
    Now, if you don't want to go through all the hassle, I compiled an executable version of the script as an EXE file. just run it, it'll put an icon in your taskbar and you're good to go:
    https://www.dropbox.com/s/foel9pge9c...LoginFFXIV.exe

    So, there you are. Me and my lil' community on Behemoth are using this thingie since last wednesday, so I guess it's well beta-tested now. Have fun =)
    (0)
    Last edited by AlexSkylark; 09-03-2013 at 05:43 AM.

  2. #2
    Player
    JosiahGrey's Avatar
    Join Date
    Aug 2013
    Posts
    72
    Character
    Josiah Grey
    World
    Behemoth
    Main Class
    Conjurer Lv 18
    You do know that you and your "little community" are a big part of the problem, right?
    (2)

  3. #3
    Player
    Eibon's Avatar
    Join Date
    Sep 2013
    Location
    Gridania
    Posts
    70
    Character
    Jin Okuma
    World
    Zalera
    Main Class
    Dark Knight Lv 60
    copy pasta from reddit.com. good job.
    (0)

  4. #4
    Player
    AlexSkylark's Avatar
    Join Date
    Aug 2013
    Location
    Limsa Lominsa
    Posts
    31
    Character
    Spethro Hip
    World
    Behemoth
    Main Class
    Conjurer Lv 10
    woot, my code ended up on reddit?

    link plz, I gotta check this out =D
    (0)

  5. #5
    Player
    Ameroth's Avatar
    Join Date
    Aug 2013
    Posts
    53
    Character
    Ameroth Ebrelnaux
    World
    Midgardsormr
    Main Class
    Archer Lv 23
    I don't usually download random software from some game forum...

    But when I do, I make sure its an executable I know nothing about that wants admin privileges.
    (1)

  6. #6
    Player
    Malzian's Avatar
    Join Date
    Aug 2013
    Location
    Ul'dah
    Posts
    1,223
    Character
    Kylrin Arresard
    World
    Behemoth
    Main Class
    Bard Lv 90
    Oooo... nice... a macro to DDoS the servers. Lovely.
    (0)
    The sum of all hunt arguments over early pullers: http://goo.gl/IFT9IE

  7. #7
    Player
    AlexSkylark's Avatar
    Join Date
    Aug 2013
    Location
    Limsa Lominsa
    Posts
    31
    Character
    Spethro Hip
    World
    Behemoth
    Main Class
    Conjurer Lv 10
    Quote Originally Posted by Ameroth View Post
    I don't usually download random software from some game forum...

    But when I do, I make sure its an executable I know nothing about that wants admin privileges.
    That's why I open-sourced the script...

    If you are too smart to download an executable from a forum, just install the software and paste the code into a notepad file. You can see by its contents that all it does is press the Numpad 0 key with a 500 ms interval.
    (0)

  8. #8
    Player
    Ameroth's Avatar
    Join Date
    Aug 2013
    Posts
    53
    Character
    Ameroth Ebrelnaux
    World
    Midgardsormr
    Main Class
    Archer Lv 23
    Quote Originally Posted by AlexSkylark View Post
    That's why I open-sourced the script...

    If you are too smart to download an executable from a forum, just install the software and paste the code into a notepad file. You can see by its contents that all it does is press the Numpad 0 key with a 500 ms interval.
    meh. I was trolling. I'm on ps3 anyway. no real work around for me. instead, I just went camping for the weekend. more people should try that. don't have to fuss about login issues, and I get to enjoy nature.

    (0)

  9. #9
    Player
    Eibon's Avatar
    Join Date
    Sep 2013
    Location
    Gridania
    Posts
    70
    Character
    Jin Okuma
    World
    Zalera
    Main Class
    Dark Knight Lv 60
    Its on there somewhere; pretty sure it got downvoted into oblivion
    (0)

  10. #10
    Player
    Kissker's Avatar
    Join Date
    Aug 2013
    Posts
    119
    Character
    Saarah Venwrath
    World
    Diabolos
    Main Class
    Fisher Lv 31
    Automatically trying to log in, while your not even there?

    Exactly the problem.


    Instead, Don't.


    I didn't see a macro system in game, so they are not officially supported... you might be getting yourself in trouble there in the long run you could even get yourself banned for such a simple, stupid, thing.


    Is it really worth the effort? Ruin your chances of playing, just because your lazy?
    (0)

Page 1 of 2 1 2 LastLast