SetWeather

From Multi Theft Auto: Wiki
Revision as of 13:41, 20 May 2006 by EAi (talk | contribs)
Jump to navigation Jump to search

Description

This function sets the current weather id to the given value.

Syntax

bool setWeather ( int weatherID )

Required Arguments

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

Returns

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

Example

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

Template:World Functions