So here is my first set of Destro Macros.
Firstly I run this for Mythics, build taken from Icy Veins.
I Have Life Tap on an alt modifier in both macros to prevent from over casting.
Dimensional Rift, Doomguard and Infernal are on their own buttons to be kept for important phases or bosses etc.
For the AOE macro, Rain of Fire and Cataclysm will be cast at your cursor.
I Use Shadowfury for Myth’s as not much call for DC, but SF comes in handy.
I Have my AHK set to 80ms
My AHK is as follows:
#ifWinActive World of Warcraft
*1::
Loop
{
if not GetKeyState(“1”, “P”)
break
if GetKeyState(“Alt”, “P”)
send !1
else
send 1
sleep 80
}
return
*2::
Loop
{
if not GetKeyState(“2”, “P”)
break
if GetKeyState(“Alt”, “P”)
send !2
else
send 2
sleep 80
}
return
Sequences['Myth-ST'] = {
-- This Sequence was exported from GSE 2.1.02.
Author="Lorganion@Turalyon",
SpecID=267,
Talents = "1331222",
Default=1,
MacroVersions = {
[1] = {
StepFunction = "Priority",
KeyPress={
"/targetenemy [noharm][dead]",
"/petattack",
"/use [mod:alt] Life Tap",
"/castsequence reset=target Immolate, null",
},
PreMacro={
},
"/castsequence [nochanneling] Immolate, Incinerate, Incinerate, Incinerate, Incinerate, Incinerate",
"/cast [nochanneling] Chaos Bolt",
"/cast Channel Demonfire",
"/cast [nochanneling] Conflagrate",
"/cast [nochanneling] Grimoire: Imp",
"/castsequence [nochanneling] Incinerate, Incinerate, Incinerate",
PostMacro={
},
KeyRelease={
},
},
},
}
Sequences['Myth-AOE'] = {
-- This Sequence was exported from GSE 2.1.02.
Author="Lorganion@Turalyon",
SpecID=267,
Talents = "1331222",
Default=1,
MacroVersions = {
[1] = {
StepFunction = "Priority",
KeyPress={
"/targetenemy [noharm][dead]",
"/petattack",
"/use [mod:alt] Life Tap",
"/castsequence reset=target Immolate, null",
},
PreMacro={
},
"/cast [@cursor][nochanneling] Rain of Fire",
"/cast [nochanneling] Conflagrate",
"/cast [@cursor][nochanneling] Cataclysm",
"/cast Channel Demonfire",
"/cast [nochanneling] Incinerate",
PostMacro={
},
KeyRelease={
},
},
},
}
The second set of macros are my raid set. A slight change in talents in line with icy veins suggestions.
Demonic Circle is back in as much more useful for raid fights, and Soul Harvester replaces Cataclysm to put better focus and damage on raid Bosses.
As with the Myth Macros, Dimensional Rift, Doomguard and Infernal i keep on separate buttons for when they are required.
When using the AOE macro ensure to switch targets, as this will put immolate on many enemies and also allow for Channel Demonfire to be cast, if you do not switch targets you will not cast Demonfire as immolate is set to refresh on target swapping in the AOE macro. As with the Myth macro, rain of Fire will be cast at your cursor.
Sequences['Raid-ST'] = {
-- This Sequence was exported from GSE 2.1.02.
Author="Lorganion@Turalyon",
SpecID=267,
Talents = "1313222",
Default=1,
MacroVersions = {
[1] = {
StepFunction = "Priority",
KeyPress={
"/targetenemy [noharm][dead]",
"/petattack",
"/cast Soul Harvest",
"/use [mod:alt] Life Tap",
"/castsequence reset=target Immolate, null",
},
PreMacro={
},
"/castsequence [nochanneling] Immolate, Incinerate, Incinerate, Incinerate, Incinerate, Incinerate",
"/cast [nochanneling] Chaos Bolt",
"/cast Channel Demonfire",
"/cast [nochanneling] Conflagrate",
"/cast [nochanneling] Grimoire: Imp",
"/castsequence [nochanneling] Incinerate, Incinerate, Incinerate",
PostMacro={
},
KeyRelease={
},
},
},
}
Sequences['Raid-AOE'] = {
-- This Sequence was exported from GSE 2.1.02.
Author="Lorganion@Turalyon",
SpecID=267,
Talents = "13113222",
Default=1,
MacroVersions = {
[1] = {
StepFunction = "Priority",
KeyPress={
"/targetenemy [noharm][dead]",
"/petattack",
"/cast Soul Harvest",
"/use [mod:alt] Life Tap",
"/castsequence reset=target Immolate, null",
},
PreMacro={
},
"/cast [@cursor][nochanneling] Rain of Fire",
"/cast [nochanneling] Conflagrate",
"/cast [@cursor][nochanneling] Rain of Fire",
"/cast Channel Demonfire",
"/cast [nochanneling] Incinerate",
PostMacro={
},
KeyRelease={
},
},
},
}