i am getting some serious lulls with this macro as well as the AOE one. It burst just fine but if the fight extends it autoattacks but mind you i don’t use AHK(manual) any insight?
[quote quote=50864]i am getting some serious lulls with this macro as well as the AOE one. It burst just fine but if the fight extends it autoattacks but mind you i don’t use AHK(manual) any insight?
[/quote]
The macro itself does not lock up. What you’re seeing is depleted energy, which causes the druid to do nothing but auto attack. Unfortunately, this is the case right now with the feral druid and their talents, but in patch 7.3, this will get better or even possibly go away.
(assuming you imported the macro correctly and have the latest version of GSE 2.0)
Makes sure your talents are as follows:
Single: 2211322
Aoe: 2211323
The AutoHotkey setup balances out the energy consumption, making it lock up less and in fewer intervals.
If feral druids had attacks that cost 0 energy, this would be the bread and butter.
575K DPS over 76.7 million damage to Raiders training dummy. iLevel 890, very nice work! thanks for the contribution, Feral has been abandoned lately hehe.
Edit: sigle target macro tested. It hit other test dummies a few times though.
never used autohotkey, can someone tell me how to set this up, heres what I have done but I think i’m doing it wrong.
1. Downloaded AHK 2. Created new script as above 3. Opened wow 4. created the above macro in GSE
Here is where i’m stuck, what key does the macro need to go on….is it the 0 key? What is the toggle key to make AHK spam? is it ctrl and the number one key that contains !
[/quote]
When I created the script I through in random options as far as keys. The above AHK script shows the on/off key as left ctrl and the output key is 0. Place your macro on the 0 slot in wow and hit ctrl.
To turn off, hit ctrl again. To kill the AHK script process, press Numpad0
[quote quote=53060]Great macro bro… But in AHK, how do I run the macro by holding the key instead of pressing once?
[/quote]
Script for key holding.
toggle = 0
#MaxThreadsPerHotkey 2
#ifWinActive World of Warcraft
{
$ctrl::
Toggle := !Toggle
While Toggle
{
sendinput, {0 down}
}
else
{
sendinput, {0 up}
}
return
}
Numpad0::ExitApp
[quote quote=53071]I was not able to find your AOE version… or is this both?
[/quote]
I ran the numbers and tried the combinations. Brutal slash still does more damage for single and aoe control tests and this macro should just be used for both situations.
[quote quote=53110]Awesome macro! Why no Ferocious Bite use?
[/quote]
Ferocious Bite is best used with 5 combo points and the macro isn’t going to know when you have 5 combo points. Also, the macro will not know when Rip needs to be refreshed either because people using Ferocious Bite need to talent into that.
I’m confused with this macro as in the actual macro link you have Talents = “2211121”, but then later down in reply to someone you then say Makes sure your talents are as follows:
Single: 2211322
Aoe: 2211323
so which talents is it as you have contradicted yourself???