View Single Post
12-19-05, 04:44 PM   #10
Gello
A Molten Giant
AddOn Author - Click to view addons
Join Date: Jan 2005
Posts: 521
Do you mean if you drop below 80% mana while in combat?

Trigger: UNIT_MANA
Delay:0
Script: if UnitAffectingCombat("player") and (UnitMana("player")/UnitManaMax("player"))<.8 then EquipSet() end

If you mean when you're below 80% when PLAYER_REGEN_DISABLED fires:

Trigger: PLAYER_REGEN_DISABLED
Delay: 0
Script: if (UnitMana("player")/UnitManaMax("player"))<.8 then EquipSet() end
  Reply With Quote