1. #1

    Need macro help!

    Hey guys,

    I'm in a little bit of a pickle with my macro. It kinda half works.

    When I'm targeting a friendly target, it targets the closest enemy, casts X, and then retargets the original friendly. This is how I want it to work.

    The problem I'm having is when I target an enemy. It either drops the target completely or targets a friendly after casting the spell. For instance, if I target a dummy and press the macro, it'll cast the spell and then drop target. I want it so if I manually target an enemy, it keeps that person targeted.

    Is there any way to take away the behavior of the macro when I am already targeting an enemy?

    Here is the macro:
    Code:
    #showtooltip
    /stopcasting
    /targetenemy
    /cast X
    /targetlasttarget


    ---------- Post added 2012-12-24 at 07:34 AM ----------

    Nevermind!

    After a lot of research and playing around, I've managed to find one that works:

    Code:
    #showtooltip X
    /cast [@target,harm] X;
    /stopmacro [harm]
    /targetenemy
    /cast X
    /targetlasttarget



    /thread
    Last edited by Snuggli; 2012-12-24 at 07:34 AM.

Posting Permissions

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