1. #1

    Spring cleaning my macro's

    Been looking at my old macro's and noticed some things got changed.
    so been cleaning em up (if only cuz the old error message block doesnt work anymore)

    Been trying out some combinations, what i want for my macro's is that the right button on my mouse heals myself (when i click the spell, yes i know... but its a old habbit and works great for myself), then mouseover does target, if no mouseover it does my target. (depending on spell if i add ability to use on mobs too, incl mind control targets)
    Code:
    #showtooltip Dispel Magic
    /stopcasting
    /cast [button:2,@player]Dispel Magic;[@mouseover,exists]Dispel Magic;Dispel Magic
    /script UIErrorsFrame:Clear()
    Code:
    #showtooltip Flash Heal
    /stopcasting
    /cast Inner Focus
    /cast [button:2,@player] [help, @mouseover] [help] Flash Heal
    /script UIErrorsFrame:Clear()
    So far this is the cleanest i have gotten what still works.

  2. #2
    So what are you looking to do, shorten them up? If so:

    #showtooltip
    /stopcasting
    /cast [btn:2,@player][@mouseover,exists][]Dispel Magic
    /script UIErrorsFrame:Clear()
    #showtooltip Flash Heal
    /stopcasting
    /cast Inner Focus
    /cast [btn:2,@player][@mouseover,help][]Flash Heal
    /script UIErrorsFrame:Clear()

    Gershuun @ Borean Tundra US - Interface & Macros Moderator

  3. #3
    ^^ Exactly what i was looking for it. Man alot of things changed... i feel old :P

    ---------- Post added 2011-03-26 at 12:49 AM ----------

    Code:
    #showtooltip
    /stopcasting
    /cast [btn:2,@player][@mouseover,exists][]Dispel Magic
    /script UIErrorsFrame:Clear()
    For some reason this however tries to cast a Dispel Magic when i have no target. ie: the hand icon lights up to select a target.

    Edit: This seems to be the fixed version:

    Code:
    #showtooltip
    /stopcasting
    /cast [btn:2,@player]Dispel Magic;[@mouseover,exists][exists]Dispel Magic
    /script UIErrorsFrame:Clear()
    Same goes for the Flash Heal, adding the [help] instead of the [] prevents trying to cast.
    Last edited by Dujith; 2011-03-25 at 11:56 PM.

Posting Permissions

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