GetVehicleLightState

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function returns the current state of the specified light on the vehicle.

Syntax

int getVehicleLightState ( vehicle theVehicle, int light )

OOP Syntax Help! I don't understand this!

Method: vehicle:getLightState(...)
Counterpart: setVehicleLightState


Required Arguments

  • theVehicle: the vehicle that you wish to know the light state of.
  • light: A whole number determining the individual light:
    • 0: Front left
    • 1: Front right
    • 2: Rear right
    • 3: Rear left

Returns

Returns 0 (working) or 1 (broken)

Example

newcar = createVehicle ( 520, 1024, 1024, 1024 )
state = getVehicleLightState ( newcar, 0 )
outputChatBox ( "The front-left light state on this car: " .. state )

See Also