GetJetpackMaxHeight

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function gets the maximum height at which your jetpack can fly without failing to go higher.

Syntax

float getJetpackMaxHeight ( )

Returns

Returns a float containing the max jetpack height.

Example

Click to collapse [-]
Client

This example returns the max jetpack height to a player if they use the command 'jetpackmaxheight'.

function commandGetJetpackMaxHeight()
   local height = getJetpackMaxHeight() or "N/A"
   outputChatBox("Jetpack max height: "..height, 0, 255, 0)
end
addCommandHandler("jetpackmaxheight", commandGetJetpackMaxHeight)

See Also