Originally Posted by
googlebee
You can simply open the ability editor, and select the INTERUPT ability in the list.
You can then edit the percentages and timing.
-GB
Curious about this as well. Started arenas and slowly working my team up and I've already been getting tells about people saying I'm hacking because I've got the interrupter running (at the 1400 bracket nonetheless) and want to edit how it works. The first part reads as follows:
Code:
if PQR_SpellAvailable(6552) then
for y=1, 5 do
local aTarget = "arena"..tostring(y)
if UnitExists(aTarget)
and IsSpellInRange(GetSpellInfo(6552), aTarget) == 1
and PQR_UnitFacing("player", aTarget) then
local spellName, _, _, _, startCast, endCast, _, _, canInterrupt = UnitCastingInfo(aTarget)
for i=1, #InterruptSpells do
if GetSpellInfo(InterruptSpells[i]) == spellName and canInterrupt == false then
Nova_SpellReflect = false
if select(2, Nova_CastingInfo(aTarget)) >= 85 then
PQR_CustomTarget = aTarget
return true
end
end
end
end
end
I fail to see an area where it does a check about what percentage the cast it as before it attempts the interrupt. Unless its at the end there with the >= 85? This is for the arena portion, it just copies itself for target and focus as well. I'd like to make it like 70% through the cast then attempt to interrupt.