SetWaveHeight: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (fix oop)
 
(3 intermediate revisions by 3 users not shown)
Line 7: Line 7:
bool setWaveHeight ( float height )
bool setWaveHeight ( float height )
</syntaxhighlight>
</syntaxhighlight>
{{OOP||[[Water]].setWaveHeight||getWaveHeight}}


===Required Arguments===  
===Required Arguments===  
Line 19: Line 21:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function scriptWave ( thePlayer, command, height )
function scriptWave ( thePlayer, command, height )
  local oldHeight = getWaveHeight()
local oldHeight = getWaveHeight()
  height = tonumber ( height )
height = tonumber ( height )
  success = setWaveHeight ( height )
success = setWaveHeight ( height )
  if ( success ) then
if ( success ) then
    outputChatBox ( "The old wave height was: " .. oldHeight .. "; " .. getClientName ( thePlayer ) .. " set it to: " .. height )
outputChatBox ( "The old wave height was: " .. oldHeight .. "; " .. getPlayerName ( thePlayer ) .. " set it to: " .. height )
  else outputChatBox ( "Invalid number." )
else
  end
outputChatBox ( "Invalid number." )
end
end
end
addCommandHandler ( "setwave", scriptWave )
addCommandHandler ( "setwave", scriptWave )
Line 32: Line 35:


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

Latest revision as of 15:07, 7 August 2016

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