Update: Adding my new lvling macro to this location as an option for a 1 button macro. It has better starting burst using all the cool downs to start it off. You’ll find it at the bottom of the post.
Update: altered the timings of AHK buttons
Update: while this set of macros work without GSE, the GSE AOE macro runs better allowing Starfall to be first on the list to be cast for faster aoe affect. added the GSE Version at the bottom of the list for those who want to use it.
After much Testing I have a new setup using the in game macro system no addon needed.
Still uses 4 macros in the same order
Tallents: 3,?,?,?,1,1,3
-Builder
#showtooltip Solar Wrath
/cast [stance:0/1/2/3/5] Moonkin Form
/targetenemy [noharm][dead]
/castsequence reset=target Sunfire, Moonfire, null
/castsequence reset=3 Solar Wrath, Solar Wrath, Lunar Strike
/cast New Moon
-Burner
#showtooltip Starsurge
/cast [stance:0/1/2/3/5] Moonkin Form
/targetenemy [noharm][dead]
/castsequence reset=target Sunfire, Moonfire, null
/castsequence reset=3 Solar Wrath, Solar Wrath, Lunar Strike
/cast Starsurge
/cast Celestial Alignment
-AOE
#showtooltip Starfall
/cast [stance:0/1/2/3/5] Moonkin Form
/targetenemy [noharm][dead]
/castsequence reset=target Sunfire,moonfire,nul
/castsequence Lunar Strike
/cast [@cursor] Starfall
/cast New Moon
/cast Barkskin
-Moon&Sunfire
#showtooltip Sunfire
/cast [stance:0/1/2/3/5] Moonkin Form
/targetenemy [noharm][dead]
/castsequence Moonfire, Sunfire
Sequences['DreamKinAOE'] = {
-- This Sequence was exported from GSE 2.1.02.
Author="Gorimer@Baelgun",
SpecID=102,
Talents = "3???113",
Help = [[Use on 3+ targets. Best when used after macro DreamKinBurst, when you get a free Starfall from [Oneth's Intuition], or when at 100 Astral Power.]],
Default=1,
MacroVersions = {
[1] = {
StepFunction = "Priority",
LoopLimit=1,
KeyPress={
"/targetenemy [noharm][dead]",
"/cast [stance:0/1/2/3/5] Moonkin Form",
"/cast Barkskin",
},
PreMacro={
},
"/cast [@cursor] Starfall",
"/castsequence reset=target Moonfire, Sunfire, nul",
"/castsequence Lunar Strike",
PostMacro={
},
KeyRelease={
},
},
},
}
Here are my Auto Hot Key settings. using buttons 1-4 and using the macros in the order there listed. complimets go to.
Author: Backwardpawn, although it’s a pretty simple script I’m sure someones made it before.
Name: ‘Turbofire’ AutoHotKey Script
Date: 07/14/2009
#ifWinActive World of Warcraft
{
$1::
$^1::
$+1::
$!1::
Loop
{
if not GetKeyState("1", "P")
break
if GetKeyState("LCtrl", "P")
Send ^1
else if GetKeyState("LShift", "P")
Send +1
else if GetKeyState("LAlt", "P")
Send !1
else
Send 1
sleep 100
}
return
}
{
$2::
$^2::
$+2::
$!2::
Loop
{
if not GetKeyState("2", "P")
break
if GetKeyState("LCtrl", "P")
Send ^2
else if GetKeyState("LShift", "P")
Send +2
else if GetKeyState("LAlt", "P")
Send !2
else
Send 2
sleep 300
}
return
}
{
$3::
$^3::
$+3::
$!3::
Loop
{
if not GetKeyState("3", "P")
break
if GetKeyState("LCtrl", "P")
Send ^3
else if GetKeyState("LShift", "P")
Send +3
else if GetKeyState("LAlt", "P")
Send !3
else
Send 3
sleep 300
}
return
}
{
$4::
$^4::
$+4::
$!4::
Loop
{
if not GetKeyState("4", "P")
break
if GetKeyState("LCtrl", "P")
Send ^4
else if GetKeyState("LShift", "P")
Send +4
else if GetKeyState("LAlt", "P")
Send !4
else
Send 4
sleep 150
}
return
}
New Lvling macro Let me know what you think.
Sequences['DreamKin_lvling'] = {
-- This Sequence was exported from GSE 2.2.02.
Author="Gorimer@Baelgun",
SpecID=102,
Talents = "up to lvl 74 213?--- /75+ 313?113",
Help = [[lvl 1-74 use 213?--- gives you more burst dew to instant Lunar Strikes.
lvl 75+ use 313?113
You may also feel free to mix it up the only talents I don't include in this macro is the lvl 30,60 and lvl100 Fury of Elune
lvl 90 Blessing of the Ancients is a buff that you chose between one or the other.
IF your are wondering about the "Druids Go Boom" It just replaces a "Null " statment that stops the sequence.]],
Default=1,
MacroVersions = {
[1] = {
StepFunction = "Priority",
LoopLimit=3,
KeyPress={
"/targetenemy [noharm][dead]",
"/cast [stance:0/1/2/3/5] Moonkin Form",
"/castsequence reset=target Moonfire, Sunfire, Stellar Flare, Druids Go Boom",
},
PreMacro={
"/cast Warrior of Elune",
"/cast Celestial Alignment",
"/cast Astral Communion",
},
"/cast Starsurge",
"/cast New Moon",
"/castsequence reset=target Lunar Strike, Solar Wrath, Solar Wrath",
"/castsequence [@cursor] Starfall, Moonfire, Sunfire",
"/cast Solar Wrath",
PostMacro={
},
KeyRelease={
},
},
},
}