GetWeather

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function returns the current Weather ID.

Syntax

int, int getWeather()

Returns

Returns two integers indicating the weather type that is currently active. The first integer says what weather is currently considered to be active. The second integer is the weather id that is being blended into if any, otherwise it is nil.

Example

This example outputs the current weather ID in that chat box.

local weatherID = getWeather()
outputChatBox ( "The current weather ID is " .. weatherID )

See Also