ResetWaterColor: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 21: Line 21:


==See Also==
==See Also==
{{Client world functions}}
{{Client water functions}}

Revision as of 10:32, 19 May 2009

This function reset the water color of the GTA world to default.

Syntax

bool resetWaterColor ()

Returns

Returns true if water color was reset correctly, false otherwise.

Example

This example adds a command resetwatercolor with which a player can reset the water colour.

function changeWaterBackToNormal ()
    resetWaterColor ()
end
addCommandHandler ( "resetwatercolor", changeWaterBackToNormal )

See Also