Originally Posted by
Xelper
You just need to change everything that says "target" to "focus" and change the target in PQR to Focus. You can also make a copy of the ability first, so you have both abilities. Then add the new ability to your rotation under your current ability.
i made a new ability called Pummel-Focus. Spill ID: 6552 Delay: 0 Target: focus and used this
Code:
local buff = { 118,116,61305,28271,28272,61780,61721,2637,33786,5185,8936,50464,19750,82326,2061,9484,605,8129,331,8004,51505,403,77472,51514,5782,1120,48181,30108 }
local castingSpell, _, _, _, _, endTime = UnitCastingInfo("focus")
for i,v in ipairs(buff) do
if IsSpellInRange("Pummel", "focus") == 1 and PQR_IsOutOfSight("focus") == false and castingSpell == GetSpellInfo(v) and endTime/1000 - GetTime() < 0.5 then
if not UnitBuffID("focus", 31821) and not UnitBuffID("focus", 89485) then
return true
end
end
end
But dont seem to work :/