Leveling Macro for MM

Anyone have a good leveling macro for MM?
I have been using MMboss ugh and I seem to have the lowest dps of anyone in the dungeons.
THank you.

I just logged in to ask about an MM levelling GSE with pet tanking and healing. Purely for Legion open world levelling though. DPS and dungeons don’t really matter for that.

Made this one using some elements of BM macros. Works fine, misdirect and heal pet both working.

Sequences['MMlvl'] = {
author = "Marishi",
specID= 254,
helpTxt = "Talent: 3113121",
PreMacro = [[
/cast [nopet,nodead]Call Pet 1;[@pet,dead]Heart of the Phoenix
/targetenemy [noharm][dead]
/startattack
/petattack [@target,harm]
/petautocastoff [group] Growl
/petautocaston [nogroup] Growl
/cast [target=focus, exists, nodead],[target=pet, exists, nodead] Misdirection
/cast [combat,nochanneling] !Trueshot
]],
	'/cast [nochanneling] Barrage',
	'/cast [nochanneling] Sidewinders',
	'/cast [nochanneling] Marked Shot',
	'/cast [nochanneling] Aimed Shot',
PostMacro = [[
/startattack
/cast Mend pet
/use [combat]11
/use [combat]13
/use [combat]14
]],
}

Your still getting error sounds on the macro. try this it will quiet that whoosh sound when spamming the macro.


Sequences['MMlvl'] = {
author = "Marishi",
specID= 254,
helpTxt = "Talent: 3113121",
PreMacro = [[
/run x=GetCVar("Sound_EnableSFX") SlashCmdList.UI_ERRORS_OFF()
/targetenemy [noharm][dead]
/cleartarget [dead]
/cast [nopet,nodead]Call Pet 1;[@pet,dead]Heart of the Phoenix
/startattack
/petattack [@target,harm]
/petautocastoff [group] Growl
/petautocaston [nogroup] Growl
/cast [target=focus, exists, nodead],[target=pet, exists, nodead] Misdirection
/cast [combat,nochanneling] !Trueshot
]],
'/castsequence [combat,nochanneling] Barrage',
'/castsequence [combat,nochanneling] Sidewinders',
'/castsequence [combat,nochanneling] Marked Shot',
'/castsequence [combat,nochanneling] Aimed Shot',
PostMacro = [[
/startattack
/cast Mend pet
/run SlashCmdList.UI_ERRORS_ON() SetCVar("Sound_EnableSFX",x)
]],
}

You don’t need all of that error and sound cancelling stuff with GS-E, just hit escape and go to interface then addons tab, select the GS-E section and there are tick boxes to do this stuff automatically for all GS-E macros.

I thought the same thing but yes it still makes that sound so try it with and without that. Also I had to turn off the sound error check in GS-E cause it was turning on when i spammed the macro. like that annoying “you can’t attack that” voice error.

Thank you, I appreceate it.