IsVehicleLocked: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 7: Line 7:


===Required Arguments===
===Required Arguments===
*'''vehicle''': The vehicle that you need to obtain the locked status of.
*'''vehicle''': The [[vehicle]] that you need to obtain the locked status of.


==Example==
==Example==

Revision as of 03:05, 20 May 2006

Description

This function returns a boolean value (true / false) depending on whether the specified vehicle is locked.

Syntax

isVehicleLocked ( vehicle )

Required Arguments

  • vehicle: The vehicle that you need to obtain the locked status of.

Example

newcar = createVehicle ( 520, 1024, 1024, 1024 )
if isVehicleLocked ( newcar )
  outputChatBox ( "Vehicle is locked." )
else
  outputChatBox ( "Vehicle is unlocked." )
end