GetWeather

From Multi Theft Auto: Wiki
Revision as of 09:38, 5 August 2007 by Norby89 (talk | contribs)
Jump to navigation Jump to search

This function returns the current weather id.

Syntax

int getWeather()

Returns

Returns an integer indicating the weather type that is currently active. This can vary from area to area of the map.

Example

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

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

See Also

Shared