Raiding/Mythic dungeon 1 button macro

Hi all I have been playing around with macros lately and seem to get along well with this macro I made. My item level is 860 and get on average about 270k +. Let me know how you all get on. I have used Icy veins for my talents for maximum dps output.

Single Target:

Sequences[‘BM_ST’] = {
author=“Jthunt@Silvermoon”,
specID=253,
version=5,
source = “Local”,
helpTxt = “Single-Target - Talent: 2112112”,
StepFunction = GSStaticPriority,
icon=‘INV_MISC_QUESTIONMARK’,
lang=“enUS”,
PreMacro=[[
/targetenemy [noharm][dead]
/cast [combat] Bestial Wrath
]],
“/cast Kill Command”,
“/cast Dire Beast”,
“/cast A Murder of Crows”,
“/cast Cobra Shot”,
PostMacro=[[
/cast [combat] Aspect of the Wild
/startattack [@target,exists]
]],
}

AOE:

Sequences[‘BM_MT’] = {
author=“Jthunt@Silvermoon”,
specID=253,
version=3,
source = “Local”,
helpTxt = “Multi-Target - Talent: 2112112”,
StepFunction = GSStaticPriority,
icon=‘INV_MISC_QUESTIONMARK’,
lang=“enUS”,
PreMacro=[[
/targetenemy [noharm][dead]
/cast Bestial Wrath
]],
“/cast Kill Command”,
“/cast Dire Beast”,
“/cast A Murder of Crows”,
“/cast Multi-Shot”,
PostMacro=[[
/cast Aspect of the Wild
/startattack [@target,exists]
]],
}

James

Single Target:

Sequences[‘BM_ST’] = {
author=”Jthunt@Silvermoon”,
specID=253,
version=5,
source = “Local”,
helpTxt = “Single-Target – Talent: 2112112″,
StepFunction = GSStaticPriority,
icon=’INV_MISC_QUESTIONMARK’,
lang=”enUS”,
PreMacro=[[
/targetenemy [noharm][dead]
/cast [combat] Bestial Wrath
]],
“/cast Kill Command”,
“/cast Dire Beast”,
“/cast A Murder of Crows”,
“/cast Cobra Shot”,
PostMacro=[[
/cast [combat] Aspect of the Wild
/startattack [@target,exists]
]],
}

AOE:

Sequences[‘BM_MT’] = {
author=”Jthunt@Silvermoon”,
specID=253,
version=3,
source = “Local”,
helpTxt = “Multi-Target – Talent: 2112112″,
StepFunction = GSStaticPriority,
icon=’INV_MISC_QUESTIONMARK’,
lang=”enUS”,
PreMacro=[[
/targetenemy [noharm][dead]
/cast Bestial Wrath
]],
“/cast Kill Command”,
“/cast Dire Beast”,
“/cast A Murder of Crows”,
“/cast Multi-Shot”,
PostMacro=[[
/cast Aspect of the Wild
/startattack [@target,exists]
]],
}

Put it in boxes for ya =)

For some reason it does not transfer across. Any ideas?

The " " and ' ' are wrong.

You can’t simply copy from the site and re-paste it into the code boxes without changing the quotations back to what they were originally before they were pasted.

Change all of those and it will work for you.