SetJetpackMaxHeight: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{Client function}} This function can be used to change jetpacks max flying height. ==Syntax== <syntaxhighlight lang="lua"> bool setJetpackMaxHeight ( float Height ) </syntaxhighlight> ===Required Argumen...)
 
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
This function can be used to change jetpacks max flying height.
This function changes the maximum flying height of jetpack.


==Syntax==
==Syntax==
Line 9: Line 9:


===Required Arguments===
===Required Arguments===
*'''Height''': todo
*'''Height''': ''unknown, try values between -20 and 20''
 


===Returns===
===Returns===
Returns ''true'' if successful, ''false'' otherwise.
Returns ''true'' if successful, ''false'' otherwise.


==Example==
==Example==
 
<section name="Client" class="client" show="true">
TODO
<syntaxhighlight lang="lua">
 
--TODO
</syntaxhighlight>
</section>


==See Also==
==See Also==
{{Client_world_functions}}
{{Client_world_functions}}

Revision as of 12:14, 6 May 2009

This function changes the maximum flying height of jetpack.

Syntax

bool setJetpackMaxHeight ( float Height )

Required Arguments

  • Height: unknown, try values between -20 and 20


Returns

Returns true if successful, false otherwise.


Example

Click to collapse [-]
Client
--TODO

See Also