{$lua}
if syntaxcheck then return end
[ENABLE]
local function asyncTimer(count,text)
local start = os.clock()
local current = 0
while current < count do
current = os.clock() - start
--print(current)
end
speakEnglish(text)
return true
end
function countDown(count,text)
createThread(function(thread)
if asyncTimer(count,text) then
thread.Destroy()
end
end)
end
countDown(30,'expired')
[DISABLE]