IsTrainDerailed: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ Category:Needs_Example {{Server client function}} This function will check if a train or tram is derailed. ==Syntax== <syntaxhighlight lang="lua"> bool isTrainDerailed ( vehicle vehicleT...)
 
No edit summary
Line 11: Line 11:
===Required Arguments===  
===Required Arguments===  
*'''vehicleToCheck:''' The vehicle that you wish to check is derailed.
*'''vehicleToCheck:''' The vehicle that you wish to check is derailed.


===Returns===
===Returns===
Returns ''true'' if the train is derailed, ''false'' if the train is still on the rails
Returns ''true'' if the train is derailed, ''false'' if the train is still on the rails
==Example==
<section name="Example" class="server" show="true">
<syntaxhighlight lang="lua">
-- TODO
</syntaxhighlight>
</section>


==See Also==
==See Also==
{{Vehicle_functions}}
{{Vehicle_functions}}

Revision as of 17:41, 22 February 2009

This function will check if a train or tram is derailed.

Syntax

bool isTrainDerailed ( vehicle vehicleToCheck )              

Required Arguments

  • vehicleToCheck: The vehicle that you wish to check is derailed.


Returns

Returns true if the train is derailed, false if the train is still on the rails


Example

Click to collapse [-]
Example
-- TODO


See Also