timesync/client/weather.lua

18 lines
372 B
Lua

print("^2[weather]^7 Client weather sync loaded")
local weather = "CLEAR"
RegisterNetEvent("weather:sync", function(w)
weather = w
ClearOverrideWeather()
ClearWeatherTypePersist()
SetWeatherTypeNowPersist(weather)
end)
CreateThread(function()
while true do
SetWeatherTypeNowPersist(weather)
Wait(10000)
end
end)