SetWaveHeight

From Multi Theft Auto: Wiki
Revision as of 15:07, 7 August 2016 by Qaisjp (talk | contribs) (fix oop)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function sets the wave height to the desired value, the default is 0.

Syntax

bool setWaveHeight ( float height )


OOP Syntax Help! I don't understand this!

Method: Water.setWaveHeight(...)
Counterpart: getWaveHeight


Required Arguments

  • height: A float between 0 and 100.

Returns

Returns a boolean value true or false that tells you if it was successful or not.

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