Gnome Sequence Resto Macros

So I thought I’d see if GnomeSequence worked with Clique and it does! Anyway I made these two macros for my Resto spec. They seem to work ok and don’t hang up. I have yet to prove these in a dungeon but I can’t imagine they wouldn’t work well.

Sequences['RestoHoT'] = {
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
/target mouseover
]],
	'/cast [target=mouseover,help] Wild Growth',
	'/cast [target=mouseover,help] Rejuvenation', 
PostMacro = [[
/use [combat]13
/use [combat]14
/script UIErrorsFrame:Clear()
/console Sound_EnableSFX 1
]],	
}

Sequences['RestoHeal'] = {
PreMacro = [[
/console Sound_EnableSFX 0
/target mouseover
]],
	'/castsequence reset=target/combat Lifebloom',
	'/castsequence [target=mouseover,help] reset=8 Regrowth,Rejuvenation',
	'/cast [target=mouseover,help] Swiftmend',
	'/cast [target=mouseover,help] Wild Growth',
	[[/use Nature's Swiftness]],
	'/cast [target=mouseover,help] Healing Touch',
PostMacro = [[
/use Nature's Vigil
/use [target=mouseover,help] Ironbark
/use [combat]Barkskin
/use [combat]13
/use [combat]14
/script UIErrorsFrame:Clear()
/console Sound_EnableSFX 1
]],	
}

The first macro, ‘RestoHoT’ is designed for blanket HoTing and using Wild Growth on CD. The second on, ‘RestoHeal’ is made for single target/tank healing. I’m going to try running a few dungeons and see how they work there. Any feedback would be appreciated!

I decided that I didn’t like having the HoT’s or Lifebloom in the single target heal. So I manage Lifebloom separately. Other than that it seems to work great.

Sequences['RestoHeal'] = {
PreMacro = [[
/console Sound_EnableSFX 0
]],
	'/castsequence [target=mouseover,help] reset=8 Regrowth',
	'/cast [target=mouseover,help] Swiftmend',
	[[/use Nature's Swiftness]],
	'/cast [target=mouseover,help] Healing Touch',
PostMacro = [[
/use Nature's Vigil
/use [target=mouseover,help] Ironbark
/use [combat]Barkskin
/use [combat]13
/use [combat]14
/script UIErrorsFrame:Clear()
/console Sound_EnableSFX 1
]],	
}

[quote quote=19350]So I thought I’d see if GnomeSequence worked with Clique and it does! Anyway I made these two macros for my Resto spec. They seem to work ok and don’t hang up. I have yet to prove these in a dungeon but I can’t imagine they wouldn’t work well.

Sequences['RestoHoT'] = {
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
/target mouseover
]],
	'/cast [target=mouseover,help] Wild Growth',
	'/cast [target=mouseover,help] Rejuvenation', 
PostMacro = [[
/use [combat]13
/use [combat]14
/script UIErrorsFrame:Clear()
/console Sound_EnableSFX 1
]],	
}

Sequences['RestoHeal'] = {
PreMacro = [[
/console Sound_EnableSFX 0
/target mouseover
]],
	'/castsequence reset=target/combat Lifebloom',
	'/castsequence [target=mouseover,help] reset=8 Regrowth,Rejuvenation',
	'/cast [target=mouseover,help] Swiftmend',
	'/cast [target=mouseover,help] Wild Growth',
	[[/use Nature's Swiftness]],
	'/cast [target=mouseover,help] Healing Touch',
PostMacro = [[
/use Nature's Vigil
/use [target=mouseover,help] Ironbark
/use [combat]Barkskin
/use [combat]13
/use [combat]14
/script UIErrorsFrame:Clear()
/console Sound_EnableSFX 1
]],	
}

The first macro, ‘RestoHoT’ is designed for blanket HoTing and using Wild Growth on CD. The second on, ‘RestoHeal’ is made for single target/tank healing. I’m going to try running a few dungeons and see how they work there. Any feedback would be appreciated!
[/quote]

dear sir what is ur talent and glyph ? if u dont mind sharing it …

Probably I foolish question but I have attempted to bind your sequences through Clique but I am obviously missing something with this addon…How can bind these?

Thank you!

Hi Busy box, can I know what your Talent spec build and what glyphs are you using?

I just realized I had a few replies here…

My talents are 2,1,3,1,3,3,3
Glyphs: Healing Touch, Wild Growth,Rejuv
I also use the minor glyph Sprouting Mushroom.

Also to make these work in clique you make the macro as normal but copy the text out the the macro and paste it into a click macro.

Just in case you guys didn’t know these will work with healbot as well just bind the macro to a button in the ui and as long as there is a /target mouseover in the pre macro they are clickable