Results 1 to 5 of 5
  1. #1
    Player
    Transient_Shadow's Avatar
    Join Date
    Jul 2016
    Location
    Gridania
    Posts
    638
    Character
    Flutter Butter
    World
    Malboro
    Main Class
    Scholar Lv 90

    Interactive Macro guides?

    Hello everyone. So I'm trying to clear up my hud and wanted to start using interactive macros. I've seen some videos but can't find any good documents. are there any out there?
    (0)

  2. #2
    Player
    Rongway's Avatar
    Join Date
    Aug 2013
    Posts
    4,166
    Character
    Cyrillo Rongway
    World
    Hyperion
    Main Class
    Black Mage Lv 100
    Can you describe exactly what you want your macros to do?
    (0)
    Error 3102 Club, Order of the 52nd Hour

  3. #3
    Player
    Sunspawn's Avatar
    Join Date
    Oct 2016
    Location
    Ul'dah
    Posts
    127
    Character
    Baudouin Anjou
    World
    Moogle
    Main Class
    Warrior Lv 70
    I think he means macros to navigate menus by swapping hotbars.
    (0)

  4. #4
    Player
    Rongway's Avatar
    Join Date
    Aug 2013
    Posts
    4,166
    Character
    Cyrillo Rongway
    World
    Hyperion
    Main Class
    Black Mage Lv 100
    There are four ways to do this -- two basic layouts, each with two behaviors. The two decisions you want to make regarding your layout and behavior preferences:
    1. Do you want the "menu bar" to stay open all the time? (Yes) You'll need to set up a two bar system, where each button on the menu bar copies the desired sub-menu to a second bar. (No) You'll need a one bar system, where the whole menu bar gets replaced with the desired sub-menu.
    2. Do you want the "sub-menu" bar to persist after selections? (Yes) You'll need to put a "back" or "close" button on each sub-menu bar to close it out or revert to the main menu bar. (No) You'll need to include the back/close functionality into each individual button on the sub-menu bar. You might also want to include a back button, for if you change your mind and want a different sub-menu.

    You will also need to choose where to store the extra bars. This should be one or more base ARR classes that you don't play and don't mind sacrificing the bars for. Depending on how many sub-menu bars

    For this guide, I'll create a job switcher menu that groups jobs and classes into their roles. I will store the various bars on MRD and PGL, and the menu will use bars 8 and 9. Make sure the menu bars are shared (/characterconfig, Hotbar Settings, Sharing). Note that the macros will use "share" to denote the shared hotbars, rather than a class/job abbreviation for these shared bars. For more details, type
    Code:
    /? hotbar
    in game.



    Two bars, sub-menu stays open until replaced by a different submenu:


    In this setup, shared bar 9 will be the main menu, and shared bar 8 will be the sub-menu.

    Menu bar:
    Code:
    Ranged DDs:  /hotbar copy MRD 1 share 8
         Tanks:  /hotbar copy MRD 2 share 8
       Healers:  /hotbar copy MRD 3 share 8
     Melee DDs:  /hotbar copy MRD 4 share 8
      Crafters:  /hotbar copy PGL 1 share 8
     Gatherers:  /hotbar copy PGL 2 share 8
    Sub-menu bars:
    You don't really need to do anything special with these bars, unless you want the option of "closing" the sub-menu to make it disappear. You can do this with the "remove" and "all" options:
    Code:
    /hotbar remove 8 all
    Your sub-menu options can be normal gearset buttons; they do not need to be macroed.




    Two bars, sub-menu closes after use:


    As before, set up your main menu bar:
    Code:
    Ranged DDs:  /hotbar copy MRD 1 share 8
         Tanks:  /hotbar copy MRD 2 share 8
       Healers:  /hotbar copy MRD 3 share 8
     Melee DDs:  /hotbar copy MRD 4 share 8
      Crafters:  /hotbar copy PGL 1 share 8
     Gatherers:  /hotbar copy PGL 2 share 8
    On each sub-menu, you'll want to have a "close" button, in case you change your mind and want to close your sub-menu without switching jobs.
    Close:
    Code:
    /hotbar remove 8 all
    This setup differs from the previous in that you will have to use macros for all your job changes, to close the sub-menu after each selection. You can do this with a /gs command, followed by the /hotbar remove.
    Code:
    /gs change 1
    /hotbar remove 8 all
    Because of the shear number of macros this setup eats, I don't recommend it, but I know there are some people who prefer self-closing sub-menus, so here it is if you want to use it.




    One bar, sub-menu stays open until you choose to go back to the main menu:


    In this setup, the main menu and the sub-menus will all use hotbar share 9. When you open a sub-menu, it will replace the main menu rather than taking up a second bar. Because of this, you will also need to store your main menu bar on one of your bar storage classes so you can revert back to it later.

    Menu bar:
    Code:
    Ranged DDs:  /hotbar copy MRD 1 share 9
         Tanks:  /hotbar copy MRD 2 share 9
       Healers:  /hotbar copy MRD 3 share 9
     Melee DDs:  /hotbar copy MRD 4 share 9
      Crafters:  /hotbar copy PGL 1 share 9
     Gatherers:  /hotbar copy PGL 2 share 9
    On each sub-menu, you'll need a "back" button to revert back to the main menu.
    Back:
    Code:
    /hotbar copy PGL 6 share 9
    As in the two bar, persistent setup, your sub-menu options can be normal gearset buttons; they do not need to be macroed.




    One bar, sub-menu reverts to main menu after each use:


    In this setup, the main menu and the sub-menus will all use hotbar share 9. When you open a sub-menu, it will replace the main menu rather than taking up a second bar. Because of this, you will also need to store your main menu bar on one of your bar storage classes so you can revert back to it later.

    Menu bar:
    Code:
    Ranged DDs:  /hotbar copy MRD 1 share 9
         Tanks:  /hotbar copy MRD 2 share 9
       Healers:  /hotbar copy MRD 3 share 9
     Melee DDs:  /hotbar copy MRD 4 share 9
      Crafters:  /hotbar copy PGL 1 share 9
     Gatherers:  /hotbar copy PGL 2 share 9
    On each sub-menu, you might like a "back" button, so that you can revert to the main menu if you decide not to change jobs.
    Back:
    Code:
    /hotbar copy PGL 6 share 9
    As with the two bar, auto-closing setup, you will have to use macros for all your job changes, to revert back to the main menu.
    Code:
    /gs change 1
    /hotbar copy PGL 6 share 9
    Because of the shear number of macros this setup eats, I don't recommend it, but I know there are some people who prefer self-closing sub-menus, so here it is if you want to use it.
    (2)
    Last edited by Rongway; 07-19-2018 at 05:08 PM.
    Error 3102 Club, Order of the 52nd Hour

  5. #5
    Player
    naelys21's Avatar
    Join Date
    Jul 2016
    Posts
    5
    Character
    Naelys Koralon
    World
    Excalibur
    Main Class
    Black Mage Lv 90
    You should try Google. It's a great resource
    (0)