BM Raiding Macro GSE 7.1.5

this is the GS macro i am running with i am hold my own with raid team = gear

  1. i have cobra shot on it’s own button so i can use it when i need it.
  2. [mod:Shift] Titan’s Thunder for timing to use when you have dire beasts out.
  3. [mod:ctrl] Multi-Shot with [mod:ctrl] Dire Beast for AOE/More than 1 mob.
  4. i am using volly just now but if i put it in to a GS macro it LAG’s the hell out on my GSE so just put it on if i wipe on a boss
  5. about 531,485DPS on Warcraft Logs - Combat Analysis for Warcraft this fight i used stampede ilvl884 at time of posting
  6. There is ways this can be made better and i am working on finding the best way you could add [mod:Alt] Cobra Shot if you wanted to keep it all in one button
  7. Feel free to drop my a reply with any tips or to ask for any helps
Sequences['Cammy's_BM'] = {
-- This Sequence was exported from GSE 2.0.14.
  Author="Cámmy@Terokkar",
  SpecID=Beast Mastery,
  Talents = "?,?,?,?,?,?,?",
  Help = "Talents: 3111313",
  Default=1,
  Icon='INV_MISC_QUESTIONMARK',
  MacroVersions = {
    [1] = {
     Combat=true,
      Trinket2=true,
      StepFunction = "Priority",
      KeyPress={
        "/targetenemy [noharm][dead]",
        "/petattack [@target,harm]",
        "/petautocastoff [group] Growl",
        "/petautocaston [nogroup] Growl",
        "/cast [combat] Bestial Wrath",
        "/cast [mod:Shift] Titan's Thunder",
        "/cast [combat] Aspect of the Wild",
        "/cast [target=focus, exists, nodead],[target=pet, exists, nodead] Misdirection",
        "/cast [mod:ctrl] Multi-Shot",
        "/cast [nopet,nodead] Call Pet 1; [@pet,dead] Heart of the Phoenix",
        "/cast [combat,pet:Spirit Beast,@player] Spirit Mend",
        "/cast [combat,pet,@player] Roar of Sacrifice",
      },
      PreMacro={
      },
        "/cast Dire Beast",
        "/cast [mod:ctrl] Dire Beast",
        "/castsequence [nochanneling] Kill Command",
        "/cast A Murder of Crows",
      PostMacro={
        "/cast [nogroup] Mend Pet",
      },
      KeyRelease={
      },
    },
}

It’s an interesting macro, but too many things you have to do manually, thus not very lazy :slight_smile:

Tater’s has been great. I just separated the mod stuff into an AOE macro so I don’t have to bother with modifiers.

Time to trim that beard!

i see what your saying but if like me you use a naga mouse i press 1 button to run macro then all i have to do is press the modifier button when i want to do something in a fight. it is a lazy macro for me and may not work for everyone. having everything in one macro with no modifier dose not work in a raid team “for me” to many missed timed spells and spells not lining up will get removed from my raid team…

thx for your feed back

Gnome Sequencer translation of Stephen Astin’s posted Macro of Cámmy’s Macro:

--  Author  = Cámmy@Terokkar
--  Talents = ?, ?, ?, ?, ?, ?, ?
--  Talents:  3, 1, 1, 1, 3, 1, 3
Sequences['Cammys_BM'] = {
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] 
/petattack [@target,harm]
/petautocastoff [group] Growl
/petautocaston [nogroup] Growl
/cast [combat] Bestial Wrath
/cast [mod:shift] Titan's Thunder
/cast [combat] Aspect of the Wild
/cast [target=focus, exists, nodead],[target=pet, exists, nodead] Misdirection
/cast [mod:ctrl] Multi-Shot
/cast [nopet,nodead] Call Pet 1; [@pet,dead] Heart of the Phoenix
/cast [combat,pet:Spirit Beast,@player] Spirit Mend
/cast [combat,pet,@player] Roar of Sacrifice
]],
    '/cast Dire Beast',
    '/cast [mod:ctrl] Dire Beast',
    '/castsequence Kill Command, Cobra Shot',   
    '/cast A Murder of Crows',
PostMacro = [[
/startattack
/petattack
/cast Mend Pet
/use [combat]13
/use [combat]14
/script UIErrorsFrame:Clear()
]],
}