ResetHeatHaze

From Multi Theft Auto: Wiki
Revision as of 06:44, 21 January 2011 by Ccw (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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