getWeather | Multi Theft Auto: Wiki Skip to content

getWeather

Client-side
Server-side
Shared

Manual Review Required

Please finish this page using the corresponding Old Wiki article. Go to Contribution guidelines for more information.


This function returns the current Weather ID.

Syntax

int,​ int getWeather ( )

Returns

  • int: value1
  • int: value2

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 .

Code Examples

shared

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

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

See Also

World Functions