1. #1

    DK DPS run fast macro

    Hello there.
    So now i have 2 abilities that make me run fast and I tried to make a macro to use em in turns.

    #Showtooltip Darkflight
    /cast Darkflight
    /cast Death's Advance

    Problem is, when I press the macro, the 2 abilities above turn on at the same time.

    I want em to turn on in turns. First I want Darkfligh. Then IF darkflight is on CD I want my Death's Advance to open.

    Cheers.

  2. #2
    Code:
     /castsequence reset=120 Darkflight, Death's Advance
    change 120 to whatever the cooldown is of darkflight, i think its 2 minutes (which is 120 seconds)

  3. #3
    Quote Originally Posted by SpaceDuck View Post
    Code:
     /castsequence reset=120 Darkflight, Death's Advance
    change 120 to whatever the cooldown is of darkflight, i think its 2 minutes (which is 120 seconds)
    Death's Advance is a 30s cooldown, and that will go back to Darkflight after using it once. Reversing it will give better results (but isn't what OP specified):

    Code:
    /castsequence reset=30 Death's Advance, Darkflight
    Personally, I would use a modifier:

    Code:
    /cast [mod] Darkflight; Death's Advance
    Macros can't check CDs, so exactly what OP requested is not possible.

Posting Permissions

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