Hi, I'm writing a Holy Pally profile and am using the following code to apply Eternal Flame:
PHP Code:
{ "Eternal Flame", {
"player.holypower >= 3",
"!lowest.buff(Eternal Flame)",
"lowest.range < 40",
"lowest.health <= 75"},
"lowest"},
Now, with that it is checking to see who the 'lowest' HP raid member is, if that person already has the buff, it will move to the next thing in the priority. Is there a function that can be written to have Eternal Flame cast on the lowest raid/party member that doesn't have the buff currently? So if 2 raid members are under the health threshold and the lower of the 2 has the buff already, cast it on the other.
Thanks in advance!