Close
Showing results 1 to 3 of 3
  1. #1

    Default Heal when mouse-over

    Hello!

    atm i'm running 5 enhancement shaman, and i was wondering if there's a macro which can do the following
    when i hover over a character unit frame, cast healing surge.
    when not hovering over a target, dont use macro.
    i'd like to put this macro into the steps so when a char gets low on health i can get those insta healing surges! ( when mealstorm available ofc)

    hope someone can help 👍

    Grtzz!
    Multiboxing 10 accounts!
    Outland-Europe
    2 mistweaver monks - 8 Elemental shamans

  2. #2

    Default

    Well... You sorta can I guess, but I doubt it will work like you want it to.

    As far as I know:
    Code:
    /cast [target=mouseover,exists] Healing Surge
    /cast Stormstrike
    should cast Healing Surge on to a mouseover target, when one exists i.e. you are hovering over one. If one does not exists, the condition is not met and it it drops down to casting Stormstrike.

    The problem is, that there is no way of telling it to only cast when you are hovering over unit frames. The same functionality works when hovering over a friendly target in the game world, so you'd end up accidentally casting it on people.

    I'd recommend just having it on a separate bind on click. I'm sure some ISBoxer trickery could be used to create a bunch of repeater regions or buttons that trigger specific mapped keys when your mouse enters in to the region, but this seems like a very overkill, and unflexible way of doing something that could be done with a simple click.

    For example you could create a mouseover bind/click for setting focus, and then macro your abilities like this:
    Code:
    /cast [target=focus,exists] Healing Surge
    /cast Stormstrike
    This is similar to the previous setup. It casts Healing Surge on your focus if one exists. If not, then it goes to Stormstrike. Of course what this means is that as long as there is a focus, Stormstrike is not cast ever. This obviously means you also need to be able to drop focus when you want to stop using Healing Surge.

    Or perhaps you could to separate the 2 lines of the macro in to different actions in the same mapped key. So for example:

    Mapped Key (Stormstrike)
    Step 1
    - Macro that sends "/cast [target=focus,exists] Healing Surge"
    - Macro that sends "/cast Stormstrike"


    It's not perfect, but I think it would be functional.

  3. #3
    Multiboxologist MiRai's Avatar
    Join Date
    Apr 2009
    Location
    Winter Is Coming
    Posts
    6815

    Default

    When using mouseover macros you should try to specify whether you're trying to help, or harm the unit, so that you don't end up trying to cast helpful spells on enemy units, and vice versa.

    /use [@mouseover,help] SpellName

    Also, help and harm both imply exists, so there's no need to add in a redundant conditional.
    Do not send me a PM if what you want to talk about isn't absolutely private.
    Ask your questions on the forum where others can also benefit from the information.

    Author of the almost unknown and heavily neglected blog: Multiboxology

Posting Rules

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