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...")
 
mNo edit summary
 
Line 20: Line 20:
)
)
</syntaxhighlight>
</syntaxhighlight>
[[pl:resetHeatHaze]]


==See Also==
==See Also==
{{World functions}}
{{World functions}}

Latest revision as of 17:11, 25 July 2016

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