Thread: Mouseover macro

  1. #1
    Deleted

    Mouseover macro

    I have been using mouseover macro's to make my life easier as a healer :P

    For example this is one of my mouseovers (and it's been working perfectly).

    #showtooltip
    /cast [@mouseover,exists,nodead,help] Holy Shock; Holy Shock
    However this macro doesn't work for my Hand of Protection, Freedom, Salvation and Sacrifice.

    I can't find a reason why it wouldn't work.

    The whole goal of the macro is to:

    Cast on current mouseover, if there is no mouseover cast it on current target else cast it on self.

  2. #2
    Deleted
    Yeah mouseover macro and healer work like a charm ;D

    Do you bind your "hand of xxx" on your mouse button? I had a similar problem because of this, this is due to some restriction on wow api with mouseover

    I bypassed this problem by reprogramming my mouse buttons
    ie: mouse button 4 -> numpad 4 ; mouse button 5 -> numpad 5 etc...

    This is my macro to cast on self while having a target:
    #showtooltip
    /cast [modifier:alt,target=player] Dispel Magic; [target=mouseover,exists] Dispel Magic; Dispel Magic

  3. #3
    #showtooltip
    /cast [target=mouseover,exists,noharm,nodead][@target, noharm, nodead, exists][target=player] hand of protection

    Pretty sure that is what you are looking for.

  4. #4
    Code:
    #showtooltip
    /cast [@mouseover,help,nodead][] YourSpell
    ( With autocast-on-self option enabled )
    http://www.macroexplain.com/
    1. If the unit your mouse is currently over is a friend and is not dead then: Cast Hand of Protection on the unit your mouse is currently over
    2. Otherwise: Cast Hand of Protection on the currently targeted unit
    Last edited by Ketho; 2011-04-09 at 10:55 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
  •