Originally Posted by
noxim
Hi,
Using the Sub PVP profife and I'm trying to keep recuperate up but it's not working:
if GetNumPartyMembers() == 0
and UnitBuffID("player",73651) == nil
and 100 * UnitHealth("player") / UnitHealthMax("player") < 80
and GetComboPoints("player", "target") > 1
then return true end
Any idea what's wrong it never comes up....
Well I got it to work with this
if UnitBuffID("player",73651) == nil
and GetComboPoints("player", "target") > 1
then return true end
Is that the right way to go about it?