Skip to content

Instantly share code, notes, and snippets.

@alecgerona
Created July 30, 2022 13:17
Show Gist options
  • Save alecgerona/1648e1869e8f55a8cf74349dad34ad8f to your computer and use it in GitHub Desktop.
Save alecgerona/1648e1869e8f55a8cf74349dad34ad8f to your computer and use it in GitHub Desktop.
Covenant Signature Abilities
From: https://www.reddit.com/r/wow/comments/qlgxxz/comment/hj5a7gm/?utm_source=share&utm_medium=web2x&context=3
#showtooltip
/cast Door of Shadows
/cast Soulshape
/cast Fleshcraft
/cast Summon Steward
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Door of Shadows" or G"Soulshape" or G"Fleshcraft"or G"Summon Steward")
Death Knight
#showtooltip
/cast Shackle the Unworthy
/cast Swarming Mist
/cast Abomination Limb
/cast Death's Due
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Shackle the Unworthy" or G"Swarming Mist" or G"Abomination Limb"or G"Death's Due")
Demon Hunter - Fodder to the Flame (Necrolord) is a passive so it's removed.
#showtooltip
/cast Elysian Decree
/cast Sinful Brand
/cast The Hunt
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Elysian Decree" or G"Sinful Brand" or G"The Hunt")
Druid
#showtooltip
/cast Kindred Spirits
/cast Ravenous Frenzy
/cast Adaptive Swarm
/cast Convoke the Spirits
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Kindred Spirits" or G"Ravenous Frenzy" or G"Adaptive Swarm" or G"Convoke the Spirits")
Hunter
#showtooltip
/cast Resonating Arrow
/cast Flayed Shot
/cast Death Chakram
/cast Wild Spirits
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Resonating Arrow" or G"Flayed Shot" or G"Death Chakram"or G"Wild Spirits")
Mage
#showtooltip
/cast Radiant Spark
/cast Mirrors of Torment
/cast Deathborne
/cast Shifting Power
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Radiant Spark" or G"Mirrors of Torment" or G"Deathborne"or G"Shifting Power")
Monk
#showtooltip
/cast Weapons of Order
/cast Fallen Order
/cast Bonedust Brew
/cast Faeline Stomp
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Weapons of Order" or G"Fallen Order" or G"Bonedust Brew"or G"Faeline Stomp")
Paladin - Blessings of the Seasons seems like it may not work well with the macro, don't have a pally myself to play with it. See below for comments that seem to indicate you'll need to choose the specific season.
#showtooltip
/cast Divine Toll
/cast Ashen Hallow
/cast Vanquisher's Hammer
/cast Blessing of the Seasons
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Divine Toll" or G"Ashen Hallow" or G"Vanquisher's Hammer"or G"Blessing of the Seasons")
Priest
#showtooltip
/cast Boon of the Ascended
/cast Mindgames
/cast Unholy Nova
/cast Fae Guardians
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Boon of the Ascended" or G"Mindgames" or G"Unholy Nova"or G"Fae Guardians")
Rogue
#showtooltip
/cast Echoing Reprimand
/cast Flagellation
/cast Serrated Bone Spike
/cast Sepsis
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Echoing Reprimand" or G"Flagellation" or G"Serrated Bone Spike"or G"Sepsis")
Shaman
#showtooltip
/cast Vesper Totem
/cast Chain Harvest
/cast Primordial Wave
/cast Fae Transfusion
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Vesper Totem" or G"Chain Harvest" or G"Primordial Wave"or G"Fae Transfusion")
Warlock
#showtooltip
/cast Impending Catastrophe
/cast Decimating Bolt
/cast Soul Rot
/cast Scouring Tithe
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Impending Catastrophe" or G"Decimating Bolt" or G"Soul Rot"or G"Scouring Tithe")
Warrior (Condemn the Venthyr ability works differently changing your normal Execute keybind already)
#showtooltip
/cast Spear of Bastion
/cast Conqueror's Banner
/cast Ancient Aftershock
/run local G=GetSpellInfo SetMacroSpell(GetRunningMacro(), G"Spear of Bastion" or G"Conqueror's Banner"or G"Ancient Aftershock")
Not fully tested since the server shut down while I was putting them in but will be nice to have them all in one location.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment