getWaveHeight
Client-side
Server-side
Shared
Pair: setWaveHeight
Manual Review Required
Please finish this page using the corresponding Old Wiki article. Go to Contribution guidelines for more information.
This function returns the current wave height.
OOP Syntax Help! I don't understand this!
- Method:Water.)(...)
Syntax
float getWaveHeight ( )Returns
- float: value
Returns the height as a float , false otherwise.
Code Examples
shared
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." ) endendaddCommandHandler ( "setwave", scriptWave )