Thread: Macro question

  1. #1
    Deleted

    Question Macro question

    Is it possible to make a macro that casts a spell on a focused target when focus is set and cast it on your normal target when no focus is available ?

    Without any key modifiers that is.

    If so ... how ? thanks

  2. #2
    yeah try this
    #showtooltip
    /cast [@Focus] Spell name here
    /cast Spell name here

  3. #3
    Deleted
    It doesn't seem to work for spells with gcd .

  4. #4
    Code:
    #showtooltip
    /cast [@focus,exists,nodead] Spell1; Spell2
    Take out nodead if spell1 is a res.

  5. #5
    Deleted
    Thanks , this works well

  6. #6
    or if you want the same spell you can also use:

    Code:
    #showtooltip
    /cast [@focus,exists,nodead][] Spell1;

  7. #7
    Quote Originally Posted by stevietv View Post
    or if you want the same spell you can also use:

    Code:
    #showtooltip
    /cast [@focus,exists,nodead][] Spell1;
    nodead condition inherits exists properties. If @focus doesn't exist, the target is not nodead. It is also not dead either.

Posting Permissions

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