Honorbuddyuser1
New Member
- Joined
- Sep 19, 2014
- Messages
- 242
Are you stuck trying to learn how to play your character? Are you simply not logging on? Does the game feel unplayable when HB is down? Yup, same here. I have a solution for you.
It's an addon called GnomeSequencer. It allows you to make extremely long macros, basically turning a rotation into a single button click. If you have a proper mouse or are savvy with certain automation software you can even set the macro to repeat at a certain interval. I have mine set to spam the macro 8 times per second using my mouse software when I hold the button down.
Q: Where do I get GnomeSequencer?
A: http://www.wowinterface.com/downloads/info23234-GnomeSequencer.html
Q: How do I use it?
A:
Example macro that you will copy into the Sequences.lua file.
Sequences['MmSingleThrill'] = {
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 Rapid Fire
]],
'/cast [nochanneling] !Chimaera Shot',
'/castsequence [nochanneling] reset=8 Steady Shot,!Chimaera Shot',
'/cast [nochanneling] Aimed Shot',
'/cast [nochanneling] Steady Shot',
'/cast [nochanneling] !Kill Shot',
PostMacro = [[
/startattack
/petattack
/script UIErrorsFrame:Clear()
]],
}
In this example, the name of the macro will be MmSingleThrill
This is what you name the macro in game when creating a new macro and the addon will do the rest.
This is not my addon and I gain nothing from sharing it except the joy of helping others who may be struggling. If you have any issues with installation or using the macro, there are many online guides, youtube videos, and forums which can help. Enjoy.
It's an addon called GnomeSequencer. It allows you to make extremely long macros, basically turning a rotation into a single button click. If you have a proper mouse or are savvy with certain automation software you can even set the macro to repeat at a certain interval. I have mine set to spam the macro 8 times per second using my mouse software when I hold the button down.
Q: Where do I get GnomeSequencer?
A: http://www.wowinterface.com/downloads/info23234-GnomeSequencer.html
Q: How do I use it?
A:
- Download and install to your wow addons folder
- Rename "ExampleSequences.lua" to "Sequences.lua" and open the file in a text editor. Notepad works fine.
- Go to http://wowlazymacros.com/ and find an appropriate macro sequence for your class and build
- Copy the macro or macros into the Sequences.lua file making sure to keep the original format and have a space between sequences
- Create a new macro in WoW and name the macro whatever you see in brackets following Sequence in the top line of the macro you copied and pasted. Example below.
- Save the macro. No need to type anything other than name, the addon will do the rest.
- Spam your one button and enjoy.
Example macro that you will copy into the Sequences.lua file.
Sequences['MmSingleThrill'] = {
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 Rapid Fire
]],
'/cast [nochanneling] !Chimaera Shot',
'/castsequence [nochanneling] reset=8 Steady Shot,!Chimaera Shot',
'/cast [nochanneling] Aimed Shot',
'/cast [nochanneling] Steady Shot',
'/cast [nochanneling] !Kill Shot',
PostMacro = [[
/startattack
/petattack
/script UIErrorsFrame:Clear()
]],
}
In this example, the name of the macro will be MmSingleThrill
This is what you name the macro in game when creating a new macro and the addon will do the rest.
This is not my addon and I gain nothing from sharing it except the joy of helping others who may be struggling. If you have any issues with installation or using the macro, there are many online guides, youtube videos, and forums which can help. Enjoy.