Legion BM Beta

been playing beta a lot over the past few days lvl 110 premade toon this is what I have come up with help from Jimmy Boy Albrecht macro and a big Thank you to Draik for GS-E

Sequences['BMTest'] = {
specID = 253,
author = "Nano",
helpTxt = "Single Target Talent 3311313",
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]
/petautocastoff [group] Growl
/petautocaston [nogroup] growl
]], 
"/castsequence Cobra Shot,Kill Command",
"/cast !Chimaera Shot",
"/cast !Dire Beast",
"/cast Cobra Shot",
"/cast Bestial Wrath",
"/cast Titan's Thunder",
"/cast A Murder of Crows",
PostMacro = [[
/startattack
/use [combat]13
/use [combat]14
]],
}

Sequences['BMAOETest'] = {
specID = 253,
author = "Nano",
helpTxt = "BMAOE Talent 3311313",
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]
/petautocastoff [group] Growl
/petautocaston [nogroup] growl
]], 
"/castsequence Multi-Shot,Kill Command",
"/cast !Chimaera Shot",
"/cast !Dire Beast",
"/cast Cobra Shot",
"/cast Bestial Wrath",
"/cast Titan's Thunder",
"/cast A Murder of Crows",
PostMacro = [[
/startattack
/use [combat]13
/use [combat]14
]],
}

ok i’ll bite, what is Titan’s Thunder ; )

ok, my tooltip doesn’t even mention it, mentions the xtra pet (hati)

Titan’s Thunder is a part of BM Artifact :slight_smile:

Talents?

Talents are in the HelpTxt Line

Sequences['BMTest'] = {
specID = 253,
author = "Nano",
helpTxt = "Single Target Talent 3311313",
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]
/petautocastoff [group] Growl
/petautocaston [nogroup] growl
]], 
"/castsequence Cobra Shot,Kill Command",
"/cast !Chimaera Shot",
"/cast !Dire Beast",
"/cast Cobra Shot",
"/cast Bestial Wrath",
"/cast Stampede",
"/cast Barrage",
PostMacro = [[
/startattack
/use [combat]13
/use [combat]14
]],
}

I took the original at the top of this page, removed Titan’s Thunder and A Murder of Crows, added Stampede and Barrage. Talents are 3112221. I am getting sustained dps of over 41K on the training dummy in the garrison. This is with zero buffs.

The last BMTest that you have here is perfect for me. However, in a few of these quests, you get some NPCs to join in the battle, making it a group, so the pet doesn’t growl and I get the aggro. I have tried to alter it, but my /gsse will never recognize my copies without the growl lines. Can you make one like yours but without turning the growl off for solo questing? Thanks much.

Here you go…

Sequences['BMTest'] = {
specID = 253,
author = "Nano",
helpTxt = "Single Target Talent 3311313",
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]
]], 
"/castsequence Cobra Shot,Kill Command",
"/cast !Chimaera Shot",
"/cast !Dire Beast",
"/cast Cobra Shot",
"/cast Bestial Wrath",
"/cast Titan's Thunder",
"/cast A Murder of Crows",
PostMacro = [[
/startattack
/use [combat]13
/use [combat]14
]],
}

Sequences['BMAOETest'] = {
specID = 253,
author = "Nano",
helpTxt = "BMAOE Talent 3311313",
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]
]], 
"/castsequence Multi-Shot,Kill Command",
"/cast !Chimaera Shot",
"/cast !Dire Beast",
"/cast Cobra Shot",
"/cast Bestial Wrath",
"/cast Titan's Thunder",
"/cast A Murder of Crows",
PostMacro = [[
/startattack
/use [combat]13
/use [combat]14
]],
}

Thank you!!!