Magia Tempo

Descrição

Fale o nome da magia, a cada 5 segundos.

Autor: Luiz

                
1
2
3
4
5
6
7
8
9
10
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)