local Enabled, Start, Duration = false, 0, 5
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('wait.start', function(arg)
if arg:match('(%d+)') then
Enabled, Start = true, tonumber(arg)
sampAddChatMessage('Таймер запущен на '..Duration..' сек.', -1)
end
end)
while true do
wait(0)
if Enabled then
if Start + Duration - os.clock() <= 0 then
Enabled = false
sampAddChatMessage('Прошло '..Duration..' сек.', -1)
end
end
end
end