GetWeather: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 12: Line 12:


==Example==
==Example==
<section name="Server" class="server" show="true">
<section name="Server and Client" class="both" show="true">
This example outputs the current weather ID in that chat box.
This example outputs the current weather ID in that chat box.
<syntaxhighlight lang="lua">local weatherID = getWeather()
<syntaxhighlight lang="lua">local weatherID = getWeather()

Revision as of 15:21, 4 August 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

Click to collapse [-]
Server and Client

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

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

See Also