thatwouldbestealing
Member
- Joined
- Oct 22, 2012
- Messages
- 510
- Reaction score
- 11
Hey guys,
Just thought I'd throw out a suggestion which has helped me attend raid nights when HB is down:
So there's an Addon for WoW called GnomeSequencer. It's not click and play, but there is a fairly active forum for its purpose.
So what does it do?
It gives you a magic, one button, "I win" macro (or many, see below), but via the addon is much more advanced than standard macros. It (as I understand) chains macros together into one button via the addon's .lua (yes, you have to edit the lua file yourself, which is where the forum for it comes in handy).
Here's an example, for a Brewmaster monk:
With that bit of script your Monk tank has a single button that can be spammed ad nauseum, and barring suicide tanking it will pretty much keep you alive and fairly competitive. The addon pretty much gives you your entire rotation automated, but instead of being spammed by a bot, it's you spamming the key for it. Similarly with the WWMonk button above, I see fairly ok DPS. Enough to look passable. NB: I prefer to keep cooldowns outside of these buttons, that's just my style, but you can find scripts that do everything inc CDs. A common practice is to have Single Target (ST) and AoE variants, but for many classes a one-button function is enough to pass Raid nights if you enjoy manually doing CDs (as you should!). *wink*
Once you have setup your Sequences.lua (you can have as many functions as you like, for all your classes -and specs!), you then run WoW, make a new Macro and give the macro the same name as your function in Sequences.lua -using the example above, I would make a macro called "Brew" or "Wwmonk".
The contents of the 'Brew' macro looks like this:
*Remember, this macro is saved as "Brew" and refers to the 'Brew' function in Sequences.lua!
*You can have as many functions as you like (BrewSingleTarget, BrewAoE, BrewCDs, BrewOhhhhSheeeet) -etc!
Get the addon:
GnomeSequencer - WoW Interface
Get scripts for your class from this forum:
http://wowlazymacros.com/
"How to guide for GnomeSequencer"
http://wowlazymacros.com/forums/topic/gnome-sequencer-for-idiots/
TLDR:
Finally, best of all, this is 100% legit and bot free --you can even take this into PTRs.
~G
Just thought I'd throw out a suggestion which has helped me attend raid nights when HB is down:
So there's an Addon for WoW called GnomeSequencer. It's not click and play, but there is a fairly active forum for its purpose.
So what does it do?
It gives you a magic, one button, "I win" macro (or many, see below), but via the addon is much more advanced than standard macros. It (as I understand) chains macros together into one button via the addon's .lua (yes, you have to edit the lua file yourself, which is where the forum for it comes in handy).
Here's an example, for a Brewmaster monk:
Code:
Sequences['[B]Brew[/B]'] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/targetenemy [noharm][dead]
]],
'/cast [combat] Rushing Jade Wind',
'/castsequence [combat] reset=8 Keg Smash,Jab,Jab',
'/castsequence [combat] Chi Explosion',
'/castsequence [combat] reset=22 Keg Smash,Elusive Brew',
'/cast [combat] Keg Smash',
'/cast [combat] Jab',
'/cast [combat] Expel Harm',
'/cast [combat] Chi Explosion',
'/cast [combat] Tiger Palm',
'/cast [combat] Chi Wave',
'/cast [combat] Touch of Death',
PostMacro = [[
/use [combat] Serenity
/use [combat] 13
/startattack
]],
}
Sequences['[B]Wwmonk[/B]'] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/targetenemy [noharm][dead]
]],
'/castsequence [nochanneling] Jab,Jab,Jab,Tiger Palm,Tiger Palm',
'/cast [nochanneling] Rising Sun Kick',
'/cast [combat] Fists of Fury',
'/cast [nochanneling] Jab',
'/cast [nochanneling] Chi Wave',
'/cast [nochanneling] Blackout Kick',
'/cast [nochanneling] Jab',
'/cast [nochanneling] Tiger Palm',
'/cast [nochanneling] Leg Sweep',
'/castsequence [nochanneling] Jab, Jab, Energizing Brew',
'/cast [nochanneling] Expel Harm',
'/castsequence [nochanneling] Jab,Jab,Jab,Jab,Tigereye Brew',
PostMacro = [[
/use [combat] Serenity
/use [combat] 13
/use Energizing Brew
/use Tigereye Brew
/use Touch of Death
/startattack
/script UIErrorsFrame:Hide();
]],
}
With that bit of script your Monk tank has a single button that can be spammed ad nauseum, and barring suicide tanking it will pretty much keep you alive and fairly competitive. The addon pretty much gives you your entire rotation automated, but instead of being spammed by a bot, it's you spamming the key for it. Similarly with the WWMonk button above, I see fairly ok DPS. Enough to look passable. NB: I prefer to keep cooldowns outside of these buttons, that's just my style, but you can find scripts that do everything inc CDs. A common practice is to have Single Target (ST) and AoE variants, but for many classes a one-button function is enough to pass Raid nights if you enjoy manually doing CDs (as you should!). *wink*
Once you have setup your Sequences.lua (you can have as many functions as you like, for all your classes -and specs!), you then run WoW, make a new Macro and give the macro the same name as your function in Sequences.lua -using the example above, I would make a macro called "Brew" or "Wwmonk".
The contents of the 'Brew' macro looks like this:
Code:
#showtooltip
/click Brew
*You can have as many functions as you like (BrewSingleTarget, BrewAoE, BrewCDs, BrewOhhhhSheeeet) -etc!
Get the addon:
GnomeSequencer - WoW Interface
Get scripts for your class from this forum:
http://wowlazymacros.com/
"How to guide for GnomeSequencer"
http://wowlazymacros.com/forums/topic/gnome-sequencer-for-idiots/
TLDR:
- Download GS to Wow > Interface > Addons
- Get your script from forum
- Add your script to ExampleSequences.lua, rename ExampleSequences.lua > Sequences.lua
- Run wow, make a macro with same name as your GS script, eg: Brew (refer to guide or above example)!
- Never miss Raid Night because of HB ever again!
Finally, best of all, this is 100% legit and bot free --you can even take this into PTRs.
~G