
Originally Posted by
Drumbomb
So I've tried a few different ways of making the most out of training ml. Basically I'm looking for a way to cast utana vid and then instantly exura vita after this as they dont share gcd.
The self healer will not do this, will only spam one over the other and utana vid needs to be cast first.
Also having everything spam constantly slows down manapotting, not sure if there a way to change that or make it smoother.
With the implement of ultimate potions you lose mana quicker than you gain, which is why I need vita in there and mas flam is as well.
Any suggestions / ideas? Appreciate it

lua code:
Self.ManaPercent = function ()
return math.abs(Self.Mana() / (Self.MaxMana() * 0.01))
end
Module.New('WasteMana', function()
if Self.ManaPercent() >= 95 then -- Mana parcent if higher cast both spells.
Self.Cast('Utana Vid', 500)
wait(200)
Self.Cast('Exura Vita',160)
end
end)
I added the wait(200), idk if u delete this can cast both spells, try it and tell me smth, i didnt test it.