GetAircraftMaxHeight: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Documented function)
 
No edit summary
 
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Server client function}}
This function gets the maximum height at which aircraft can fly without their engines turning off.
This function gets the maximum height at which aircraft can fly without their engines turning off.



Latest revision as of 13:11, 9 August 2011

This function gets the maximum height at which aircraft can fly without their engines turning off.

Syntax

float getAircraftMaxHeight ( )

Returns

Returns a float containing the max aircraft height.

Example

Click to collapse [-]
Client

This example returns the max aircraft height to a player if they use the command 'aircraftmaxheight'.

function commandGetAircraftMaxHeight()
   local height = getAircraftMaxHeight() or "N/A"
   outputChatBox("Aircraft max height: "..height, 0, 255, 0)
end
addCommandHandler("aircraftmaxheight", commandGetAircraftMaxHeight)

See Also