This is the best method if you have other characters using mana potions on you.
If I were you I would buy a house and do it on a floor nobody can see you at so you will not get reported.
lua code:utanaVidTime = os.clock()
exuraVitaTime = os.clock()
Module.New("Cast Spells", function()
if (os.clock() - utanaVidTime >= math.random(1.60, 2.15)) then
if (Self.Mana() >= 440) then
Self.Say("utana vid")
end
utanaVidTime = os.clock()
end
if (os.clock() - exuraVitaTime >= math.random(0.60, 1.15)) then
if (Self.Mana() >= 160) then
Self.Say("exura vita")
end
exuraVitaTime = os.clock()
end
end)