Page 1 of 1

Help with a spammable Hemo macro

PostPosted: Thu Dec 17, 2015 7:09 am
by Bluefear
Specced Hemo this week for BGs. I usually use this macro to bind my auto attack to Sinister Strike, so I can press SS to auto a new target, even with no energy (taken from Oto's guide):

/cast Sinister Strike
/script if not IsCurrentAction(11) then UseAction(11) end;

Where auto attack is bound to the 11th action bar slot

If I use the same macro, but with hemorrhage:

/cast Hemorrhage
/script if not IsCurrentAction(11) then UseAction(11) end;

It will only cast hemorrhage under 2 conditions: If the hemorrhage debuff is not currently on the target, or if I have de-selected and re-selected the target I am attacking

I tried using just /cast Hemorrhage and found the same to be true.

/run CastSpellByName ("Hemorrhage") works the same way

Does anyone have a spammable macro line for Hemorrhage so I can bind it to the above script?


edit: it works if I put in /cast Hemorrhage(Rank 3)
guess I'll just leave this here in case anyone else is having the same problem

Re: Help with a spammable Hemo macro

PostPosted: Sun Dec 20, 2015 5:36 pm
by Ohhgee
This is the most reliable option. Use this and place auto-attack on your bars in slot 60. I believe slot 60 is the far right of bottom right action bar, but my memory could be failing me. You can find charts online to show the number of all the action bar slots

Code: Select all
/script if not IsCurrentAction(60) then UseAction(60) end;
/cast Hemorrhage(Rank 3)