ResetWaterColor
From Multi Theft Auto: Wiki
This function reset the water color of the GTA world to default.
Syntax
bool resetWaterColor ( )
OOP Syntax Help! I don't understand this!
- Method: Water.resetColor(...)
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 )