Page 1 of 2 1 2 LastLast
Results 1 to 10 of 13
  1. #1
    Player
    Voilyn's Avatar
    Join Date
    May 2017
    Location
    Gridania
    Posts
    22
    Character
    A'stenya Nightingale
    World
    Spriggan
    Main Class
    White Mage Lv 80

    Nifty ressurection macro?

    Hello everyone!
    I'm trying to keep my buttons to a minimum, and since every healing class gets their own ressurection skill I was wondering if there was any macro to mash them all together? I currently have two macros I find very useful, and was hoping I could get some help making a res macro as well. the two I'm currently using is:

    /macroicon "Thunder"
    /merror off
    /ac "Thunder III" <t>
    /ac "Thunder III" <tt>
    /ac "Thunder II" <t>
    /ac "Thunder II" <tt>
    /ac "Thunder" <t>
    /ac "Thunder" <tt>

    And:

    /macroicon "Stone"
    /merror off
    /ac "Stone III" <t>
    /ac "Stone III" <tt>
    /ac "Stone II" <t>
    /ac "Stone II" <tt>
    /ac "Stone" <t>
    /ac "Stone" <tt>

    Can anyone please help me make a macro for ressing too?
    Thank you all!
    (0)

  2. #2
    Player
    Argencia's Avatar
    Join Date
    May 2017
    Posts
    19
    Character
    Argencia Loveshugs
    World
    Cactuar
    Main Class
    Conjurer Lv 52
    Bless you. I didnt realize you could do this with different spell ranks.
    (1)
    (> '.' )> <( o.o <)

  3. #3
    Player
    Voilyn's Avatar
    Join Date
    May 2017
    Location
    Gridania
    Posts
    22
    Character
    A'stenya Nightingale
    World
    Spriggan
    Main Class
    White Mage Lv 80
    Haha, but be careful, skills like Bio l and Bioll can both be applied to the target, same goes with Aero l+ll+lll. The only one I noticed didn't apply twice was Thunder.
    (0)

  4. #4
    Player
    NocturniaUzuki's Avatar
    Join Date
    Mar 2017
    Posts
    420
    Character
    Nocturnia Uzuki
    World
    Adamantoise
    Main Class
    Astrologian Lv 70
    Enlighten me, what exactly do the macros you gave examples of do? I'm not a master of macros, but it looks like you have it set to use Thunder III, but if you're running a lower level dungeon and it's not available, it will give an error (hence merror off), and then it moves on to Thunder II, and Thunder I in turn, so it will cast the highest you have available? I fail to see the purpose of the extra <tt> lines though.



    If this format works though, wouldn't it just be:

    /micon Raise (or whichever you prefer)
    /merror off
    /ac Raise <t>
    /ac Raise <tt>
    /ac Resurrection <t>
    /ac Resurrection <tt>
    /ac Ascend <t>
    /ac Ascend <tt>

    ?
    (0)

  5. #5
    Player
    winsock's Avatar
    Join Date
    Jul 2014
    Posts
    788
    Character
    Chaosgrimm Winsock
    World
    Adamantoise
    Main Class
    Conjurer Lv 60
    A quick critique of your stone macro if I may.
    Macros can cause issues with skill queuing, which will lower dps.
    As I am sure you have noticed, occasionally, your macro may also cast the wrong stone, such as "Stone" instead of "Stone III" at 60. You can combat both of these issues by doing something like this instead:

    /macroicon protect
    /hotbar action "Stone" #4 #10
    /hotbar action "Stone II" #4 #10
    /hotbar action "Stone III" #4 #10
    /ac protect

    (the numbers at the end mean 4th hotbar, 10th slot, change as needed)

    What this does is place the skill onto the hotbar. So at the beginning of the duty, you cast protect and it places the appropriate actual action skill on your bar, which means no more issues with skill queuing or accidentally casting the wrong spell.

    May I ask why you want a rez macro? skillbars are split between jobs/classes, so you could just place the actual skills on the bars with no issue.

    Of course, something like this should work:
    /ac Raise
    /ac Resurrection
    /ac Ascend

    Or this:
    /hotbar action "Raise" #4 #10
    /hotbar action "Resurrection" #4 #10
    /hotbar action "Ascend" #4 #10
    /ac Protect
    (4)
    Last edited by winsock; 05-13-2017 at 08:10 AM.

  6. #6
    Player
    Taika's Avatar
    Join Date
    Mar 2011
    Posts
    2,237
    Character
    Purple Rain
    World
    Sophia
    Main Class
    Arcanist Lv 32
    Like already said, if you want to play as effectively as possible, you will want to avoid macros as much as possible, since they prevent you from queueing your abilities and, because of that, slow you down a bit. There may also be lag issues related to macros (like line 2 being executed instead of line 1 etc.).

    Also, that Thunder macro isn't very good for Black Mage, since you will only want to cast Thunder 3 when it procs and slow cast Thunder 1 instead.
    (1)

  7. #7
    Player
    Sebazy's Avatar
    Join Date
    Aug 2013
    Location
    Gridania
    Posts
    3,468
    Character
    Sebazy Spiritwalker
    World
    Ragnarok
    Main Class
    White Mage Lv 90
    Useful macro that Winsock, cheers!

    And to chime in on using macros for core healing and DPS abilities. I'll also strongly advise against doing so. As stated, it'll prevent the ability from queueing properly and as a result will always add a fairly substantial delay to the order of around 10% from memory. We're talking just over 2 GCDs a minute which can be quite a chunk over an encounter or dungeon.
    (0)
    ~ WHM / badSCH / Snob ~ http://eu.finalfantasyxiv.com/lodestone/character/871132/ ~

  8. #8
    Player
    Risvertasashi's Avatar
    Join Date
    Apr 2014
    Posts
    4,706
    Character
    Makani Risvertasashi
    World
    Ultros
    Main Class
    Conjurer Lv 50
    Code:
    /micon Raise
    /aerror off
    /merror off
    /ac "Raise" <t>
    /ac "Raise" <2>
    /ac "Raise" <3>
    /ac "Raise" <4>
    /ac "Raise" <5>
    /ac "Raise" <6>
    /ac "Raise" <7>
    /ac "Raise" <8>
    Allows you to manually target raises, but it will otherwise go down the list. Suppresses all error messages.

    Set your party list to sort to your preferred raise priority, or just change up the order of the macro list.
    (3)

  9. #9
    Player
    NocturniaUzuki's Avatar
    Join Date
    Mar 2017
    Posts
    420
    Character
    Nocturnia Uzuki
    World
    Adamantoise
    Main Class
    Astrologian Lv 70
    Redacted. Read it wrong.
    (0)
    Last edited by NocturniaUzuki; 05-13-2017 at 10:47 AM.

  10. #10
    Player
    ShariusTC's Avatar
    Join Date
    Dec 2016
    Posts
    462
    Character
    Shadelia Sunshooter
    World
    Adamantoise
    Main Class
    Summoner Lv 100
    do you have a macro for allies raise in 24 men raid? because i play in PS4 so raise an alliy kind ò tricky for me because i have to target them with my touch pad manually
    (0)

Page 1 of 2 1 2 LastLast

Tags for this Thread