Posts

Showing posts from June, 2019

Vanilla wow Druid Macros

Healing Touch auto self cast macro /run s="Healing Touch(Rank 10)" c=CastSpellByName() if (UnitIsFriend("player", "target") ) then c(s) else c(s, 1) end Regrowth auto self cast macro /run s="Regrowth(Rank 8)" c=CastSpellByName() if (UnitIsFriend("player", "target") ) then c(s) else c(s, 1) end Rejuvenation auto self cast macro /run s="Rejuvenation(Rank 10)" c=CastSpellByName() if (UnitIsFriend("player", "target") ) then c(s) else c(s, 1) end

Vanilla wow Rogue Macros

Shadowmeld > Stealth (Night Elf only) /cast Shadowmeld /cast Stealt Stealth Eat Macro #showtooltip /cast *food here* /cast Stealth Rogue Sinister strike until 5 combo points then use Eviscerate. /script if GetComboPoints()>=5 then CastSpellByName("Eviscerate") else CastSpellByName("Sinister Strike") end