function main()
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand("timer",function() timer = not timer end)
while true do wait(0)
if timer and os.date("%M") == 59 then
sampAddChatMessage("До PayDay минута!",0xFF0000)
timer = false
end
end
end