Originally Posted by
Elitetech
lol @blizzards lazyness.. Wtb enragetracking :/
I was thinking about that, at the moment we only really get an enrage we have to do anything about on Icehowl atm.
Would this work:
Code:
/run i=1 while(i<=40)do a={UnitBuff("target", i)} if (a[5]=="Magic") then break else i=i+1 end end; if i<=40 and IsUsableSpell("Tranquilizing Shot") and IsSpellInRange("Tranquilizing Shot", "target")==1 and GetSpellCooldown("Tranquilizing Shot")==0 then CastSpellByName("Tranquilizing Shot") end
Edit, time for a stupid question, but how do I get it to check if it's my debuff on a target. I'm assuming this would fail if another SV hunter was in the raid.
Code:
/run if GetSpellCooldown("Explosive Shot")==0 and UnitDebuff("target", "Explosive Shot")==nil and IsUsableSpell("Explosive Shot") and IsSpellInRange("Explosive Shot", "target")==1 then CastSpellByName("Explosive Shot") end