RU/setWeather: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with '__NOTOC__ {{RU/Server client function}} This function instantly sets the current weather id to the given value. To change the weather gradually, see setWeatherBlended. …')
 
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{RU/Server client function}}
{{RU/Server client function}}
This function instantly sets the current [[weather]] id to the given value.  
Эта функция устанавливает новый id [[RU/weather|погоды]].  


To change the weather gradually, see [[setWeatherBlended]].
Если вы хотите, чтобы погода изменялась постепенно, смотри [[RU/setWeatherBlended|setWeatherBlended]].


==Использование==
==Использование==

Revision as of 18:15, 7 March 2010

Эта функция устанавливает новый id погоды.

Если вы хотите, чтобы погода изменялась постепенно, смотри setWeatherBlended.

Использование

bool setWeather ( int weatherID )

необходимые параметры

  • weatherID: The new weather id. Valid values are 0 to 255 inclusive.

Что возвращается

Returns true if the weather was set succesfully, false if an invalid weatherID was specified.

Пример

Этот пример изменяет погоду в игре на туманную

setWeather ( 9 )
outputChatBox ( "Weather changed to foggy!" )

Смотри также