Mash Up AHK .300

link this macro cuase yall have helpec me so much wanted to give my version to see if it would help any one this is also a mash up of all the oncse ive seen so the credit goes to yall LOVE YALL GUYS

Sequences['HavocOwns'] = {
-- This Sequence was exported from GSE 2.0.14.
  Author="Owns@Tichondrius",
  SpecID=577,
  Talents = "2223312",
  Help = "New Talent build for high end Mythic+ and end content.",
  Default=1,
  Icon='ability_demonhunter_specdps',
  MacroVersions = {
    [1] = {
      StepFunction = "Priority",
      KeyPress={
        "/targetenemy [noharm][dead]",
      },
      PreMacro={
      },
        "/cast [nochanneling] Fury of the Illidari",
        "/cast [nochanneling] Nemesis",
        "/castsequence [nochanneling] reset=40  Eye Beam, Chaos Nova",
        "/castsequence [nochanneling] reset=9  Blade Dance, Throw Glaive",
        "/cast [nochanneling] Eye Beam",
        "/cast [nochanneling] Felblade",
        "/cast [nochanneling] Blade Dance",
        "/cast [nochanneling] Fel Barrage",
        "/cast [nochanneling] Chaos Strike",
        "/castsequence [nochanneling] Demon's Bite, Demon's Bite, Chaos Strike, Demon's Bite",
        "/castsequence [nochanneling] Demon's Bite, Demon's Bite",
      PostMacro={
      },
      KeyRelease={
      },
    },
}

Heres the AHK script i use to spam 2 so i can just hold it down

$2::
While GetKeyState("2","p"){
Send,,2
sleep 80ms
}
return

Hey there. Nice macro, getting on quite well with it. I have a couple of questions, what milli second speed would be best used, or just button mashed, also there are 2 versions? However just says v1 for all instances, what is the second for? Thanks for your time and effort with the macro.

I will try it latter and i will post the results here. However, wich ilvl you are? And how much dps are you achieving with this macro?

How do you switch from Priority [1] to sequential [2]?

Huge burst then leveled off to about 400k on the training dummy.
ilvl 870 with AHK set to 80. I tried AHK at 300 and the DPS fell off about 50k.

I didn’t try v2. But yeah I’m gonna use the crap out of this. thanks!!!

REALLY 80 WORKED BETTER THAN ,300 NICE GLAD IT WORD V,2 WASNT SUPPOSED TO BE THERE BTW THAT WAS MY BAD

So noticed you had some abilities in there “Demons Bite” so removed that and yeah this is what i came up with, Also removed macro 2.

Sequences['HavocOwns'] = {
-- This Sequence was exported from GSE 2.0.14.
  Author="Owns@Tichondrius",
  SpecID=577,
  Talents = "2223312",
  Help = "New Talent build for high end Mythic+ and end content.",
  Default=1,
  Icon='ability_demonhunter_specdps',
  MacroVersions = {
    [1] = {
      StepFunction = "Priority",
      KeyPress={
        "/targetenemy [noharm][dead]",
      },
      PreMacro={
      },
        "/cast [nochanneling] Fury of the Illidari",
        "/cast [nochanneling] Nemesis",
        "/castsequence [nochanneling] reset=40  Eye Beam, Chaos Nova",
        "/castsequence [nochanneling] reset=9  Blade Dance, Throw Glaive",
        "/castsequence [nochanneling] reset=9  Blade Dance, Throw Glaive",
        "/cast [nochanneling] Eye Beam",
        "/cast [nochanneling] Felblade",
        "/cast [nochanneling] Blade Dance",
        "/cast [nochanneling] Fel Barrage",
        "/cast [nochanneling] Chaos Strike",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

Guys can u help me how to set that ms 80 on Autohotkey im not sure even ms but how to set it

in your auto hotkey script set the sleep to 80 like this

$2::
While GetKeyState("2","p"){
Send,,2
sleep 80ms
}
return

i added demon bite incase for the 2nd tier someone wanted to go with something else other than demonblades

#IfWinActive, World of Warcraft
Loop
{
ControlSend,1,World of Warcraft
sleep 50ms
}
return

Capslock::
Suspend
Pause,1
return

Try this bro press Caps to start and nothing else

be sure to double click on your ahk script so it turns on AutoHotKey with should show up int hte notification icons section on your task bar then go in the game and press the button that you set up like for instance

$2::
While GetKeyState("2","p"){
Send,,2
sleep 80ms
}
return

this code sends the number 2 button while you hold down the number 2 button if you want to change it just change the “2” on each line to the key you would like to spam

Titus,

Is there a way to get your autohotkey script to work with Numpad1? Ive tried but it but cant seem to get it to work.

Thanks

Use Punchkey for your Auto Keypressing…
https://sourceforge.net/projects/punchkey/

It was was programmed with AHK. Much easyier to use.