GetJetpackMaxHeight

From Multi Theft Auto: Wiki
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 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