local weatherId = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45}
local state = false
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand("goweather", function()
state = not state
end)
while true do
wait(0)
if state then
math.randomseed(os.time())
local rand = math.random(#weatherId)
wait(5000) -- задержка
forceWeatherNow(rand)
end
end
end