hi i hope you can help me
I want to set PQR so that it only heals people with the name xxxxxxx
is this possible and if so how
sry for my bad english
Code:
if Nova_WordOfGloryCheck
and select(5, Nova_UnitInfo('player')) >= 3 then
if IsPlayerSpell(114163) then
if select(2, GetSpellCooldown(114163)) == 0 then
if members[1].HP < Nova_WordOfGlory then
CastSpellByName(GetSpellInfo(114163), members[1].Unit)
return true
end
end
elseif PQR_SpellAvailable(85673) then
if members[1].HP < 80 then
CastSpellByName(GetSpellInfo(85673), members[1].Unit)
return true
end
end
end
end
d