Results -9 to 0 of 21

Threaded View

  1. #10
    Player
    EaMett's Avatar
    Join Date
    Dec 2016
    Posts
    1,430
    Character
    Ea Sin
    World
    Faerie
    Main Class
    Scholar Lv 90
    The only viable mouseover macro is:
    Code:
    /micon Cure
    /ac Cure <mo>
    Anything after that is a random draw and may or may not work. The more you mash your buttons the worst it gets.
    To target yourself you need to configure it as mentioned by someone above.

    If you want to understand why stuff breaks down when you add more consecutive targets here's the explanation:
    If you press the skill while still on your GCD it will still execute.

    So imagine the following timeline:

    Code:
    GCD starts
    Time goes by
    you use your mo heal and it starts executing
    /ac Cure <mo>            < does not execute because we're on the GCD
    /ac Cure <t>              < does not execute because we're on the GCD
    GCD ends
    /ac Cure <tt>             < works but not at all what you were going for, potentially not even a heal-able target and you end up healing yourself
    Basically anything other that a one liner is going to be a pain. Stick to the simple /ac Cure <mo>
    (4)
    Last edited by EaMett; 04-18-2018 at 05:00 AM.