GetWeather: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 17: Line 17:
==See Also==
==See Also==
{{World functions}}
{{World functions}}
[[Category:Incomplete]]

Revision as of 00:49, 27 January 2007

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.

weatherId = getWeather ()
outputChatBox ( "The current weather id is " .. weatherId )

See Also

Shared