Сорян,сейчас скину
В тебе, скинул бы хоть лог и сам код для приличия
//-------------MAIN---------------
03A4: name_thread "Sw1zzy"
local KEY_UP = 0x64
local KEY_DOWN = 0x66
local KEY_DEFAULT = 0x65
local dWeather = 12
function main()
while not isSampAvailable() do wait(100) end
forceWeatherNow(12)
while true do wait(0)
if isKeyJustPressed(KEY_DEFAULT) then
forceWeatherNow(12)
dWeather = 12
printStringNow("Pogoda: "..dWeather, 1337)
end
if isKeyJustPressed(KEY_UP) and dWeather < 46 then
dWeather = dWeather + 1
forceWeatherNow(dWeather)
printStringNow("Pogoda: "..dWeather, 1337)
end
if isKeyJustPressed(KEY_DOWN) and dWeather > 0 then
dWeather = dWeather - 1
forceWeatherNow(dWeather)
printStringNow("Pogoda: "..dWeather,1337)
end
end
end