IsTrainDerailed

From Multi Theft Auto: Wiki
Revision as of 13:48, 12 October 2011 by Justus H. (talk | contribs) (isTrainDerailed)
Jump to navigation Jump to search

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
function checkDerailed(player)
    if isPedInVehicle(player) and getVehicleType(getPedOccupiedVehicle(player) then --is the player in a vehicle and is it a train?
        if isTrainDerailed(getPedOccupiedVehicle(player)) then --is the train derailed?
            outputChatBox("Your train is derailed", player) --outputs a message
        end
    end
end

See Also