Results 1 to 7 of 7

Hybrid View

  1. #1
    Player
    Fen-fen's Avatar
    Join Date
    Nov 2011
    Location
    Gridania
    Posts
    11
    Character
    Aura Ronso
    World
    Zodiark
    Main Class
    White Mage Lv 50

    Macro in a macro?

    Is it possible to call a macro from another macro?

    I don't have enough lines ina single macro for my craft, so I thought this would work but I don't know if it's possible.

    or maybe calling a certain slot on the skillbar?
    (0)

  2. #2
    Player
    Daragust's Avatar
    Join Date
    Sep 2013
    Location
    Gridania
    Posts
    94
    Character
    Daragust Skylles
    World
    Hyperion
    Main Class
    Gladiator Lv 50
    Nope, being able to do so would enable endless macros which would, in essence, allow for botting. Most crafters just use a second macro.
    If you aren't already doing so, you can put your waits after a command on the same line which will save you some space.
    (1)

  3. #3
    Player
    Fen-fen's Avatar
    Join Date
    Nov 2011
    Location
    Gridania
    Posts
    11
    Character
    Aura Ronso
    World
    Zodiark
    Main Class
    White Mage Lv 50
    oh thanks I didn't know that
    (0)

  4. #4
    Player
    Fen-fen's Avatar
    Join Date
    Nov 2011
    Location
    Gridania
    Posts
    11
    Character
    Aura Ronso
    World
    Zodiark
    Main Class
    White Mage Lv 50
    putting the wait at the end of the line seems to break it, how is it supposed to be written?

    I got /ac "whatever" wait 2.8
    (0)

  5. #5
    Player
    NintenPyjak64's Avatar
    Join Date
    Jun 2012
    Location
    Gridania
    Posts
    1,187
    Character
    Evercy Warclan
    World
    Leviathan
    Main Class
    Warrior Lv 70
    Quote Originally Posted by Fen-fen View Post
    putting the wait at the end of the line seems to break it, how is it supposed to be written?

    I got /ac "whatever" wait 2.8
    It has to be <wait.2> or <wait.3>
    Decimals won't work and it needs those symbols to identify the syntax

    Example of a crafting macro I use for 1 star and under synths that requires no food and uses about 335 CP (Thanks to ImDingDing)
    Code:
    /ac "Inner Quiet" <me> <wait.2>
    /ac "Waste Not" <me> <wait.2>
    /ac "Steady Hand II" <me> <wait.2>
    /ac "Basic Touch" <me> <wait.3>
    /ac "Basic Touch" <me> <wait.3>
    /ac "Basic Touch" <me> <wait.3>
    /ac "Basic Touch" <me> <wait.3>
    /ac "Basic Touch" <me> <wait.3>
    /ac "Steady Hand II" <me> <wait.2>
    /ac "Basic Touch" <me> <wait.3>
    /ac "Great Strides" <me> <wait.2>
    /ac "Byregot's Blessing" <me> <wait.3>
    /ac "Ingenuity II" <me> <wait.3>
    /ac "Standard Synthesis" <me> <wait.3>
    /ac "Basic Synthesis" <me>
    It will work without the <me> but I copy pasted for simplicity sake
    (0)
    Last edited by NintenPyjak64; 06-14-2014 at 03:21 AM.

  6. #6
    Player
    Nanaho's Avatar
    Join Date
    Aug 2011
    Location
    Limsa Lominsa
    Posts
    251
    Character
    Palamula Anamaleth
    World
    Faerie
    Main Class
    Lancer Lv 51
    I do not believe that's possible, But if you have not yet, you can put waits at the end of an action line instead of between lines, like /ac "Ability" <wait1> (not sure if thats exactly right, but thats another way i saw they changed macros to save room)

    Edit: Someone beat me to it :<
    (0)

  7. #7
    Player
    Fen-fen's Avatar
    Join Date
    Nov 2011
    Location
    Gridania
    Posts
    11
    Character
    Aura Ronso
    World
    Zodiark
    Main Class
    White Mage Lv 50
    got it, thanks!
    (0)