MW healing macro's combined with dps macro

This is what I’ve been using it works great from level 1-100

based upon icy veins recommended healing rotation

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 [@mouseover] reset=5/target soothing mist, surging mist, surging mist, surging mist, enveloping mist, uplift’,
‘/cast [nochanneling] renewing mist’,
‘/cast [nochanneling] chi wave’,
‘/cast [nochanneling] expel harm’,

PostMacro = [[
/use touch of Death
/use [combat]13
/use [combat]14
]],
}

Also based upon icy veins the dps rotation

Sequences[“Fisty”] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/console Sound_EnableSFX 0
/targetenemy [noharm][dead]
]],
‘/cast [nochanneling] jab’,
‘/cast [nochanneling] Rising Sun Kick’,
‘/cast [nochanneling] Chi Wave’,
‘/cast [nochanneling] Blackout Kick’,
‘/cast [nochanneling] Jab’,
‘/cast [nochanneling] tiger palm’,
‘/cast [nochanneling] Leg Sweep’,
‘/cast [nochanneling] Expel Harm’,

PostMacro = [[
/use [combat] 14
/use [combat] 13
/use Touch of Death
/startattack
/script UIErrorsFrame:Hide();
/console Sound_EnableSFX 1
]],
}

as you progress into higher level’s you’ll have to place your statue , if you happen to have a naga razer , you can set the macro to repeat once clicked 0.35 seconds for healing macro and 0.50 for dps macro, but sense I made them all nochanneling, your healing macro will automatically take priority. great way to combo in attacks with the healing macro, I’ve found that I can pretty much dps the full time and just randomly turn on healing macro when tank gets low or someone else in the group needs a quick heal. Mana isn’t an issue for this because of being able to use a lot more melee attacks that spend chi to get mana tea. However if your running into mana issues simply. click macro and just soothing mist and maybe a couple surging mists if needed I often find for dungeons you just need statue and soothing mist going.

when i load this into sequencer is doesnt seem to work it says in the first few lines that there is an error is the first post text acurate?

you’ll have to look at that error closely in game it might simply be ', or ’ that is not working , however it works perfectly loaded into mine from Notepad

when u copy and paste code into these forums they need to be pasted into a black box or all the ’ s are mucked up

Yup dang but like lazy macro’s I am lazy lol

arent you finding yourself amazingly mana starved for fights that last over a minute or two?

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 [@mouseover] reset=5/target soothing mist, surging mist, surging mist, surging mist, enveloping mist, uplift',
'/cast [nochanneling] renewing mist',
'/cast [nochanneling] chi wave',
'/cast [nochanneling] expel harm',
PostMacro = [[
/use touch of Death
/use [combat]13
/use [combat]14
]],
}

Sequences["Fisty"] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/console Sound_EnableSFX 0
/targetenemy [noharm][dead]
]],
'/cast [nochanneling] jab',
'/cast [nochanneling] Rising Sun Kick',
'/cast [nochanneling] Chi Wave',
'/cast [nochanneling] Blackout Kick',
'/cast [nochanneling] Jab',
'/cast [nochanneling] tiger palm',
'/cast [nochanneling] Leg Sweep',
'/cast [nochanneling] Expel Harm',
PostMacro = [[
/use [combat] 14
/use [combat] 13
/use Touch of Death
/startattack
/script UIErrorsFrame:Hide();
/console Sound_EnableSFX 1
]],
}