Hey guys. any examples of timer? I want to make for example after some time, something updates, for example after 30 minutes updates tables in database
Citizen.CreateThread(function()
while true do
Citizen.Wait(30601000)
– do something here
end
end)
?