GetWaveHeight: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Added oop syntax)
Line 7: Line 7:
float getWaveHeight()
float getWaveHeight()
</syntaxhighlight>
</syntaxhighlight>
{{OOP||[[water]]:getWaveHeight|waveHeight|setWaveHeight}}


===Returns===
===Returns===

Revision as of 17:50, 6 August 2016

This function returns the current wave height.

Syntax

float getWaveHeight()


OOP Syntax Help! I don't understand this!

Method: water:getWaveHeight(...)
Variable: .waveHeight
Counterpart: setWaveHeight


Returns

Returns the height as a float, false otherwise.

Example

Click to collapse [-]
Server

This example changes the wave height to the given amount.

function scriptWave ( thePlayer, command, height )
	local oldHeight = getWaveHeight()
	height = tonumber ( height )
	success = setWaveHeight ( height )
	if ( success ) then
		outputChatBox ( "The old wave height was: " .. oldHeight .. "; " .. getPlayerName ( thePlayer ) .. " set it to: " .. height )
	else
		outputChatBox ( "Invalid number." )
	end
end
addCommandHandler ( "setwave", scriptWave )

See Also