help a newbie shaman
help a newbie shaman
Hello! I'm looking for a macro for a shaman to heal by mouseover, I used to heal with this /LUNAMO Healing Wave but now these macros don't work. suggest alternatives. Thank you
Re: help a newbie shaman
Would love to help (loving shamans) but I can't. Never used macro for healing.
My method is assigning chain heal to 2, lesser healing wave to 3, healing wave to 4, using shift+ctrl for different levels of downgrades and doing it manually.
My method is assigning chain heal to 2, lesser healing wave to 3, healing wave to 4, using shift+ctrl for different levels of downgrades and doing it manually.
Re: help a newbie shaman
It’s all about saving time; going to Target and pressing a button is slower than moving a mouseover. but thanks anyway
Re: help a newbie shaman
If you want your spells to automatically downrank based on missing HP percentage of the mouseover target, you can use SmartHealer (https://github.com/melbaa/SmartHealer) - it works with the mouseover functions of pfUI, Clique and ClassicMouseover. I've only used pfUI of the three and it works well, although you might also need TheoryCraft for precise calculations.
The trouble is that you need to bind the heal to a mouse button (at least for Clique and pfUI) for it to scale. For normal mouseover that you put on your hotbars, a macro with "/pfcast Healing Wave" works well.
Also, welcome, fellow shaman. Hope you enjoy your stay!
The trouble is that you need to bind the heal to a mouse button (at least for Clique and pfUI) for it to scale. For normal mouseover that you put on your hotbars, a macro with "/pfcast Healing Wave" works well.
Also, welcome, fellow shaman. Hope you enjoy your stay!
Nydas - 60 High Elf Mage (Nordanaar)
Farren - 60 Tauren Shaman (Nordanaar)
Gothric - 24 Human Paladin (Nordanaar)
Corel - 30 Night Elf Druid (Nordanaar)
Markal - 58 Undead Priest (Tel'Abim)
Farren - 60 Tauren Shaman (Nordanaar)
Gothric - 24 Human Paladin (Nordanaar)
Corel - 30 Night Elf Druid (Nordanaar)
Markal - 58 Undead Priest (Tel'Abim)
Re: help a newbie shaman
If you don't have pfui ( /pfcast ) then I suggest putting
before the rest of the macro and then using the target. I think this could be easily extended to use different ranks of a spell based on target hp. Like
from https://github.com/Meridaw/Vanilla-Macr ... ages%20.md
Code: Select all
/run TargetUnit("focus")
Code: Select all
/script if(UnitHealth("target")/UnitHealthMax("target")<0.50) then CastSpellByName("Flash Heal(Rank 3)")else CastSpellByName("Flash Heal(Rank 1)"); end