16 lines
317 B
Lua
16 lines
317 B
Lua
print("^2[time]^7 Client time sync loaded")
|
|
|
|
local h, m = 12, 0
|
|
|
|
RegisterNetEvent("time:sync", function(hour, minute)
|
|
h, m = hour, minute
|
|
NetworkOverrideClockTime(h, m, 0)
|
|
end)
|
|
|
|
CreateThread(function()
|
|
while true do
|
|
NetworkOverrideClockTime(h, m, 0)
|
|
Wait(1000)
|
|
end
|
|
end)
|