1. #1

    shadowburn macro help

    Hey.

    /cast [@mouseover] Shadowburn

    so i am using this macro, and normal shadowburn spell, was wondering if the 2 can be combined, meaning, that i want the macro to work mouseover priority, but if there isnt a mouseover target, i want to use shadowburn on my target.

    Thanks.
    Be feared, or be fuel

  2. #2
    Just add another line to use Shadowburn as normal.

    /cast [@mouseover] Shadowburn
    /cast Shadowburn

    Be advised, if you happen to be moused over another target above 20%, it will not cast at all because the mouseover has priority. It's not often a problem, but sometimes it can be a bit awkward to have to move the mouse away from the fray.
    Last edited by Netherspark; 2014-03-09 at 07:06 PM.

  3. #3
    #showtooltip Shadowburn
    /stopcasting
    /cast [target=mouseover,harm,nodead] Shadowburn;Shadowburn


    I think it works exactly like Netherspark's, I'd highly advise adding the /stopcast and getting used to it, comes extremely handy sometimes.

  4. #4
    thanks guys.
    and yes i am careful with what i am moused mover.
    Be feared, or be fuel

  5. #5
    Quote Originally Posted by kilzog View Post
    #showtooltip Shadowburn
    /stopcasting
    /cast [target=mouseover,harm,nodead] Shadowburn;Shadowburn


    I think it works exactly like Netherspark's, I'd highly advise adding the /stopcast and getting used to it, comes extremely handy sometimes.
    You can make that a lot smaller with:

    Code:
    #showtooltip
    /stopcasting
    /cast [@mouseover,harm,nodead][]Shadowburn
    You could potentially not want to stopcast if you don't have either of those conditions match (IE no mouseover or target) which you can avoid with:

    Code:
    #showtooltip
    /stopcasting [@mouseover,harm,nodead][]
    /cast [@mouseover,harm,nodead][]Shadowburn

  6. #6
    #showtooltip Shadowburn
    /use 10
    /stopcasting
    /cleartarget [@mouseover,harm,nodead]
    /use [@mouseover,harm,nodead][] Shadowburn
    /targetlasttarget [@mouseover,harm,nodead]

    There's a bug with shadowburn and havoc if you have the same enemy targeted that you havoc and then mouseover shadowburn it won't use the havoc charges.

    It was introduced in 5.3 and the above macro helps get around that.

Posting Permissions

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