Havoc DH Macro

Hello All

Updatet 29/1

Here is my atempt to make a Havoc macro, I push my button manualy.
Im lvl 110 and item lvl 810.
My dps on a class hall training dummy is 150-164k.

I would aprisiate if any could help me make it better :slight_smile:

Macro:

Sequences['DH_Havoc'] = {
  Author="Jimmy",  
  SpecID=577,
  Talents = "2313321",
  Default=1,
  Icon='ability_demonhunter_specdps',
  MacroVersions = {
    [1] = {
      StepFunction = "Sequential",
      KeyPress={
        "/targetenemy [noharm][dead]",
        "/cast [nochanneling] Nemesis",
      },
      PreMacro={
      },
      "/castsequence [nochanneling] Felblade, Demon's Bite",
      "/cast [nochanneling] !Fury of the Illidari",
      "/cast [nochanneling] !Eye Beam",
      "/cast [nochanneling] Chaos Strike",
      "/cast [nochanneling] Blade Dance",
      "/cast [nochanneling] Chaos Strike",
      "/cast [nochanneling] Demon's Bite",
      "/cast [nochanneling] Throw Glaive",
      "/cast [nochanneling] Demon's Bite",
      "/cast [nochanneling] !Eye Beam",
      "/cast [nochanneling] Blade Dance",
      PostMacro={
      },
      KeyRelease={
        "/cast [nochanneling] Felblade",
      },
    },
  },
}

Jimmy

This might work better


`Sequences[‘DHH’] = {
SpecID = 577,
Author = “Jimmy”,
Talents = “2,3,1,3,3,2,1”,
Default=1,
Icon=‘ability_demonhunter_specdps’,
MacroVersions = {
[1] = {
StepFunction = “Sequential”,
KeyPress={
“/targetenemy [noharm][dead]”,
“/cast [combat] Nemesis”,
“/cast [combat] Chaos Blades”,
},
PreMacro={
},
/cast [nochanneling] Felblade,
/cast [nochanneling] !Fury of the Illidari,
/cast [nochanneling] Chaos Strike,
/cast [nochanneling] Blade Dance,
/cast [nochanneling] Chaos Strike,
/cast [nochanneling] Demon’s Bite,
/cast [nochanneling] Throw Glaive,
/cast [nochanneling] Demon’s Bite,
/cast !Eye Beam,

ok ty ill try to test it :slight_smile:

Jimmy

wont import

Sequences['DHH'] = {
  SpecID = 577,
  Author = "Jimmy",
  Talents = "2,3,1,3,3,2,1",
  Default=1,
  Icon='ability_demonhunter_specdps',
  MacroVersions = {
    [1] = {
      StepFunction = "Sequential",
      KeyPress={
"/targetenemy [noharm][dead]",
"/cast [combat] Nemesis",
"/cast [combat] Chaos Blades",
      },
      PreMacro={
      },
      "/cast [nochanneling] Felblade",
      "/cast [nochanneling] !Fury of the Illidari",
      "/cast [nochanneling] Chaos Strike",
      "/cast [nochanneling] Blade Dance",
      "/cast [nochanneling] Chaos Strike",
      "/cast [nochanneling] Demon’s Bite",
      "/cast [nochanneling] Throw Glaive",
      "/cast [nochanneling] Demon’s Bite",
      "/cast !Eye Beam",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

Here is what JonnyCool added above, it is complete and in code block. this should import correctly.

Sequences['DHH'] = {
  SpecID = 577,
  Author = "Jimmy",
  Talents = "2,3,1,3,3,2,1",
  Default=1,
  Icon='ability_demonhunter_specdps',
  MacroVersions = {
    [1] = {
      StepFunction = "Sequential",
      KeyPress={
        "/targetenemy  [noharm][dead]",
        "/cast [combat] Nemesis",
        "/cast [combat] Chaos Blades",
      },
      PreMacro={
      },
        "/cast [nochanneling] Felblade",
        "/cast [nochanneling] Fury of the Illidari",
        "/cast [nochanneling] Chaos Strike",
        "/cast [nochanneling] Blade Dance",
        "/cast [nochanneling] Chaos Strike",
        "/cast [nochanneling] Demon’s Bite",
        "/cast [nochanneling] Throw Glaive",
        "/cast [nochanneling] Demon’s Bite",
        "/cast !Eye Beam",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

-Beef

Thanks to Mr.Dexz and Beef I was half asleep when I posted that but you guys saw where I was going:)

[quote quote=40418]wont import
[/quote]

Sequences['DHH'] = {
SpecID = 577,
Author = "Jimmy",
Talents = "2,3,1,3,3,2,1",
Default=1,
Icon='ability_demonhunter_specdps',
MacroVersions = {
[1] = {
StepFunction = "Sequential",
KeyPress={
"/targetenemy  [noharm][dead]",
"/cast [combat] Nemesis",
"/cast [combat] Chaos Blades",
},
PreMacro={
},
"/cast [nochanneling] Felblade",
"/cast [nochanneling] Fury of the Illidari",
"/cast [nochanneling] Chaos Strike",
"/cast [nochanneling] Blade Dance",
"/cast [nochanneling] Chaos Strike",
"/cast [nochanneling] Demon’s Bite",
"/cast [nochanneling] Throw Glaive",
"/cast [nochanneling] Demon’s Bite",
"/cast !Eye Beam",
PostMacro={
},
KeyRelease={
},
},
},
}

Should import now

yes now it did ty

hi,
do u have a gse macro for methamorphose?

No i hawe a macro like this:

#showtooltip Metamorphosis
/cast [@player] Metamorphosis

Jimmy

does “@player” work, it doesn’t seem to trigger the ability as “@cursor” does.

it dos work but i toke it out of the macro

Jimmy