GetWaveHeight: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (→Example) |
||
Line 16: | Line 16: | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function scriptWave ( thePlayer, command, height ) | 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 | end | ||
addCommandHandler ( "setwave", scriptWave ) | addCommandHandler ( "setwave", scriptWave ) |
Revision as of 12:28, 27 August 2009
This function returns the current wave height.
Syntax
float getWaveHeight()
Returns
Returns the height as a float, false otherwise.
Example
Click to collapse [-]
ServerThis 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
- createWater
- getWaterColor
- getWaterVertexPosition
- getWaveHeight
- resetWaterColor
- resetWaterLevel
- setWaterColor
- setWaterLevel
- setWaterVertexPosition
- setWaveHeight