7.3 Papa Havoc

Important: Use talents 3323333 for best results


Sequences['Havoc'] = {
-- This Sequence was exported from GSE 2.2.02.
  Author="Soulfide@Draka",
  SpecID=577,
  Talents = "3323333",
  Help = [[Recommended
Ctrl for Metamorphosis
Alt for Eye Beam
shift for Chaos Strike]],
  Default=1,
  MacroVersions = {
    [1] = {
     Combat=true,
      StepFunction = "Sequential",
      KeyPress={
        "/cast [mod:alt,nochanneling] Eye Beam",
        "/cast [mod:ctrl,@player] Metamorphosis",
        "/cast [mod:shift] Chaos Strike",
        "/cast Nemesis",
        "/cast Blur",
        " ",
      },
      PreMacro={
      },
        "/cast [combat] Fury of the Illidari",
        "/cast Chaos Strike",
        "/cast [combat] Blade Dance",
        "/castsequence Demon's Bite, Demon's Bite",
        "/cast Throw Glaive",
        "/cast Chaos Strike",
        "/cast [combat] Blade Dance",
        "/cast [nochanneling] Eye Beam",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}


rush macro (not as good)


Sequences['Havoc_rush_BETA'] = {
-- This Sequence was exported from GSE 2.2.02.
  Author="Soulfide@Draka",
  SpecID=577,
  Talents = "3323333",
  Help = [[WIP
Ctrl for Metamorphosis
Alt for Eye Beam
shift for Chaos Strike]],
  Default=1,
  MacroVersions = {
    [1] = {
     Combat=true,
      StepFunction = "Sequential",
      KeyPress={
        "/cast [mod:alt,nochanneling] Eye Beam",
        "/cast [mod:ctrl,@player] Metamorphosis",
        "/cast [mod:shift] Chaos Strike",
        "/cast Nemesis",
        "/cast Blur",
      },
      PreMacro={
      },
        "/cast [combat] Fury of the Illidari",
        "/cast Chaos Strike",
        "/cast [combat] Blade Dance",
        "/castsequence Demon's Bite, Demon's Bite",
        "/cast Throw Glaive",
        "/cast Chaos Strike",
        "/cast [combat] Blade Dance",
        "/cast [nochanneling] Eye Beam",
        "/castsequence Fel Rush, Vengeful Retreat",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

Link to my addon https://wow.curseforge.com/projects/papapancakes-macro-collection-gnomesequencer/files

Hello Papapancake1

what would you reckomend using in ms for AHK?

Jimmy

[quote quote=54694]Hello Papapancake1
what would you reckomend using in ms for AHK?
Jimmy
[/quote]
100ms most likely

ok ty :slight_smile:

Jimmy

Updated macro to the current version

gonna be a really retarded question but how do i set up AHK for wow? sorry im a noob at this

[quote quote=54828]gonna be a really retarded question but how do i set up AHK for wow? sorry im a noob at this
[/quote]

Download: https://autohotkey.com/
right click desktop
select new and find ahk script in the list
open it with a text editor :https://notepad-plus-plus.org/
paste this


#MaxThreadsPerHotkey 3

numpad5::
Toggle := !Toggle
Loop
{
	If (!Toggle)
		Break
	Send 1
	Sleep 83 ; Make this number higher for slower clicks, lower for faster.
}
Return

on the “numpad5” line you can change it with List of Keys (Keyboard, Mouse and Joystick) | AutoHotkey
The “send 1” line is where your spell will fire so in this case it spams the number 1

The macro clips eye beam?? is that as you intend it, if not you might wanna try using /cast [nochanneling] before each line not just eye beam itself. I wasnt sure if the eye beam was just to trigger meta if so maybe thats intended to work that way.

[quote quote=55186]The macro clips eye beam?? is that as you intend it, if not you might wanna try using /cast [nochanneling] before each line not just eye beam itself. I wasnt sure if the eye beam was just to trigger meta if so maybe thats intended to work that way.
[/quote]

I wanted it to happen on its own sometimes and if it doesnt i hold alt.

very good! Thank you!