Magia Tempo

Descrição

Fale o nome da magia, a cada 5 segundos.

Autor: Luiz

                addTextEdit("magiatempo", storage.magiatempo or "Nome da magia", function(widget, text)
    storage.magiatempo = text
end)

macro(1000, "Magia Tempo", function()
if not storage.tempomagia or storage.tempomagia <= os.time() then
  say(storage.magiatempo)
  storage.tempomagia = os.time() + 5 -- Cooldown para usar novamente. 5s
  end
end)