ahah très drôle, dommage que chez moi le timer soit completement ouf xD
une piste pour une exemple d'1 minute :
function love.load()
local start = love.timer.getTime() -- millisecondes
local TimeForSearch = 60 * 3600
local endTimer = start + TimeForSearch
end
--
function love.update(dt)
local timer = love.timer.getTime()
if timer >= TimeForSearch then
----
end
end