Ok, I'm sure a lot of you have seen the thread with the interrupt /dump command. (will edit in the guys name after - cant remember it at the moment)
Basically, it will check to see if your target is casting and then, if it is, will interupt it. Here is the command;
/dump loadstring("local _, _, _, _, _, _, _, _, interruptAble = UnitCastingInfo(\"target\"); if UnitCastingInfo(\"target\") and not interruptAble then SpellStopCasting() CastSpellByName(\"Shield Bash\") end")()
Now, to get less-rabi very easily all you need to do is put that into a macro and hotbar it as the "1" key (do it on your second action bar, dedfault Shift-2). However, you wont be able to hit it fast enough when his transformation is casting at around 0.25 seconds as the average human reaction time is longer than that. To counter that I made a simple AutoIt script that will spam number 1 incredibly fast.
Code:
While 1
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
Send("1")
Sleep("0.5")
WEnd
For people who know how to use AutoIt this will be easy to understand. For those you don't, download AutoIt and put that into a text file. Save it as "whatever".au3 (make sure you select all file types).
The way we used it was;
- We got to the boss then I ran the script.
- We had a rogue interrupt the first cast and a retadin interrupt the second.
- At around 50% we had the rogue interrupt again and then we nuked him as hard as we could. While he was at 50% I went into my second actionbar so the constant spamming of "1" would now be spamming the macro.
- His cast time got to around 0.25 seconds but the script interrupted it every time.
This is just to help the people who haven't already got the achievement.
And make sure to change where it says "Shield Bash" to whatever interrupt you use.
Enjoy. :yuck: