Mouseover healing macros

Hello guys, I have a problem with a macro, and I haven’t found a solution yet. I wanted to write a macro that will allow me to heal people on mouseover (without targeting them) as well as when targeted, but also have a downrank modifier with the same functionality. The macro for FoL looks like this:

#showtooltip Flash of Light
/cast [mod:alt][@mouseover,exists,help,nodead] Flash of Light(rank 4); Flash of Light(rank 4)
/cast [nomod][@mouseover,exists,help,nodead] Flash of Light(rank 6); Flash of Light(rank 6)

It works perfectly when I am not holding alt, but the mouseover functionality stops working if I try to downrank it with the modifier - I need to target the person I want to heal in order to get a downrank heal on them, otherwise I am just healing myself or whoever I have targeted.
If I split the macros into individual buttons, they both work perfectly on their own. But I am really low on button space, so I wanted to have both ranks in 1 button.
Is this some sort of bug or am I doing something wrong? What would be the correct way to write the macro so it works fully?
Any feedback appreciated!

This is a sample of macro that works for me on retail. I dunno if it will work for you, but try changing my spell to yours +rest like mouserover etc.

It can be done in a single line.

#showtooltip
/cast [nomod] !Conversion; [mod:ctrl] Conversion

There’s also a chance you have a keybind like that assigned somewhere, which will prevent the use of your mod macro.

Mouse over macro’s dont work if you have assigned a mouse button to them, like middle mouse button for example.

Try something like this (Not tested)

#showtooltip [mod:alt] Flash of Light(rank 4); Flash of Light(rank 6)
/cast [@mouseover,exists,help,nodead,mod:alt]Flash of Light(rank 4);[@mouseover,exists,help,nodead] Flash of Light(rank 6)

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.