1. Macro not working

    Hi so im trying to learn how to do macros and i got some knowledge, but its not working maybe someone can help me.

    So first i tried to combine some Priest Talents: i wanted to do one-key multiple spells macro
    i did:

    #showtooltip
    /use Power Word: Fortitude(rank x)
    /use Inner Fire(rank x)

    i used to copy the spells with shift click, but the macro is not working.
    It only casts the first spell, i also tried this but didnt work either

    #showtooltip
    /use Power Word: Fortitude(rank x), Inner Fire(rank x)

    #showtooltip
    /use Power Word: Fortitude(rank x); Inner Fire(rank x)


    after that i logged into my warrior and tried to make a dash macro which i just copied from a YT vid about WOTLK classic
    (fury warrior)

    #showtooltip
    /cast Charge(rank3)
    /cast Rend(rank 10)


    on this macro its the same problem its casting only the charge

    (ingame i checked that everything was written correctly)

  2. Change spells according your own needs.

    #showtooltip
    /castsequence reset=15 Inner Fire, Prayer of Fortitude, Prayer of Spirit, Prayer of Shadow Protection

    "reset=15" means the macro is reset after 15 seconds when it's not pressed, it can be deleted to make macro work w/o reset:

    #showtooltip
    /castsequence Inner Fire, Prayer of Fortitude, Prayer of Spirit, Prayer of Shadow Protection

    This way it loops those spells in that order all the time without ever resetting. I have the reset=15 in the case of having to re-apply Inner Fire without full buffs. And if I need full buffs, then it's better to re-fresh Inner Fire while at it.

    Those macros of yours aren't working as they're trying to use two spells at the same time that triggers GCD, and only 1st spell will ever be used, as 2nd spell would be done after GCD.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •