help with MW healing macro

Does anyone have a good macro for MW, normal healing, I am having issues with all the ones here not working, or mana hungry.

In Warlords of Draenor, you cannot have a healing macro yet that you just can spam since mana regenerations has been redesigned. What i mean by that is, you no longer focus on spirit (since it only comes on a couple of items) but you focus more on multistrike making your heals “heal more often per single use”. That is why we cannot spam a macro for healing anymore. The ones that are on this website are either for pvp (since fight are short) and not for pve. I have personally tried them all and all are mana hungry! (read: OOM in 45 seconds).

I would suggest making macro’s yourself for each situation via the ingame macro tool. Like a burst heal on tank for instance that casts Life Cocoon and follows it directly with a expel harm (glyph needed) and a Enveloping mist if you have enough chi.

Just my 2 cents.

Here Ya go. :slight_smile:


Sequences ["MistHeal"] = {
StepFunction = [[
	limit = limit or 1
	if step == limit then
		limit = limit % #macros + 1
		step = 1
	else
		step = step % #macros + 1
	end
]],
PreMacro = [[
/use Stance of the wise serpent
]],
'/castsequence Renewing Mist,Soothing Mist,Surging Mist',
'/cast Uplift',
'/cast Chi Wave',
'/use Thunder Focus Tea',
'/use Mana Tea',
'/use Expel Harm',
'/cast Soothing Mist',
PostMacro = [[
/use [combat]13
/use [combat]14
]],
}