Savage Roar 2 button macro

Here is a Savage Roar version of my other macro which utilizes Brutal Slash. I get more DPS from the other macro set (“Slash and Claw.” But if Savage Roar suits your playstyle better, then this might work well for you. The first macro is “SavageBuild.” Use it to build combo points. Once you get to 5 combo points, hit with “SavageSpend” as your finishing move.

Use Thrash for AOE. Thrash uses a lot of energy, so I have left it out of my macros and spam it when doing area damage.

SavageBuild

Sequences['SavageBuild'] = {
-- This Sequence was exported from GSE 2.2.05.
  Author="Spinnaker@Eitrigg",
  SpecID=103,
  Help = [[Talents: 2#1#231]],
  Helplink = "https://wowlazymacros.com/forums/topic/savage-roar-2-button-macro/#post-59226",
  Help="Use this macro to build combo points. Once you reach 5, hit with SavageSpend.",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Sequential",
      KeyPress={
        "/cast [noform:2] Cat Form",
        "/cast [nostealth,nocombat] Prowl",
      },
      PreMacro={
      },
        "/castsequence  reset=combat  Rake, Shred, Swipe",
        "/cast [combat] Berserk",
        "/cast [combat] Tiger's Fury",
        "/cast [combat] Ashamane's Frenzy",
      PostMacro={
      },
      KeyRelease={
        "/console autounshift 0",
        "/cast Regrowth",
        "/console autounshift 1",
      },
    },
  },
}

and SavageSpend

Sequences['SavageSpend'] = {
-- This Sequence was exported from GSE 2.2.05.
  Author="Spinnaker@Eitrigg",
  SpecID=103,
  Help = [[Talents: 2#1#231]],
  Helplink = "https://wowlazymacros.com/forums/topic/savage-roar-2-button-macro/#post-59226",
  Help="Use this macro to spend the combo points you built up with SavageBuild.",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Sequential",
      KeyPress={
        "/cast [noform:2] Cat Form",
        "/cast [nostealth,nocombat] Prowl",
      },
      PreMacro={
      },
        "/cast !Savage Roar",
        "/castsequence  reset=target  Rip, Ferocious Bite, Ferocious Bite, Rip, Ferocious Bite, Ferocious Bite",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}