GetJetpackMaxHeight: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} This function gets the maximum height at which your jetpack can fly without failing to go higher. ==Syntax== <syntaxhighlight lang="lua"> float getJetpackMaxHeight ...")
 
No edit summary
 
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Server client function}}
This function gets the maximum height at which your jetpack can fly without failing to go higher.
This function gets the maximum height at which your jetpack can fly without failing to go higher.



Latest revision as of 12:35, 21 December 2011

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