ResetHeatHaze: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Server client function}} This function restores the default heat haze. ==Syntax== <syntaxhighlight lang="lua"> bool resetHeatHaze() </syntaxhighlight> ===Returns=== Returns ''true'' if the h...")
(No difference)

Revision as of 06:44, 21 January 2011

This function restores the default heat haze.

Syntax

bool resetHeatHaze()

Returns

Returns true if the heat haze was reset correctly, false otherwise.

Example

This example resets the heat haze.

addCommandHandler("reset2000",
  function()
    resetHeatHaze()
  end
)

See Also