Restoration Legion

Testing GnomeSequencer-Enhanced - I have modified the macros from GS Enhanced using @focus making the tank your focus - This one hangs up a little not sure why and is still mana hungry.

Sequences['Heals'] = {
specID = 105,
author = "TRM",
helpTxt = "1112133",
 PreMacro = [[
/script UIErrorsFrame:Clear()
/console Sound_EnableSFX 0
]],
'/castsequence [@focus] reset=15/combat Rejuvenation,Lifebloom,Rejuvenation,Regrowth,Swiftmend',
PostMacro = [[
/cast [@mouseover] Rejuvenation
/cast [@focus]Ironbark
/cast [@player]Barkskin
/script UIErrorsFrame:Hide();
]],
}

Testing GnomeSequencer-Enhanced - I have modified the macros from GS Enhanced using @focus making the tank your focus - This one seems to work find but is still mana hungry.

Sequences['Heals2'] = {
specID = 105,
author = "TRM",
helpTxt = "1112133",
 PreMacro = [[
/script UIErrorsFrame:Clear()
/console Sound_EnableSFX 0
]],
'/cast [@focus]!Rejuvenation',
'/cast [@focus]!Lifebloom',
'/cast [@focus]Regrowth',
'/cast [@focus]Swiftmend',
PostMacro = [[
/cast [@mouseover] Rejuvenation
/cast [@focus]Ironbark
/cast [@player]Barkskin
/script UIErrorsFrame:Hide();
]],
}

Please let me know any modification you make to better these.

Nice, figured it would be best to post this ohshit macro also.
More for PVP but i always like the idea of having such a button available for any scenario.

Talents: 2233132

Sequences['RestoOhShit'] = {
 StepFunction = [[
	limit = limit or 1
	if step == limit then
		limit = limit % #macros + 1
		step = 1
	else
		step = step % #macros + 1
	end
]],
    PreMacro = [[
/targetenemy [noharm][dead]
]],
"/use Barkskin",
"/use [@player] Ironbark",
"/cast [@player] Cenarion Ward",
"/cast [@player] Swiftmend",
"/castsequence [@player] reset=6/combat Rejuvenation, Rejuvenation, Lifebloom, Regrowth",
PostMacro = [[
/startattack
/use [combat]14
]],
}