lua code:function ManaPercent()
return math.abs(Self.Mana() / (Self.MaxMana() * 0.01))
end
Module.New('WasteMana', function(wmana)
if ManaPercent() >= 95 then -- Mana parcent if higher cast both spells.
Self.Cast('Utana Vid', 500)
wait(200)
Self.Cast('Exura Vita',160)
end
wmana:Delay(100)
end)