GetVehicleLightState

From Onset Developer Wiki
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.
GetVehicleLightState

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Get the vehicle's light state.

Syntax

GetVehicleLightState(vehicle)

Parameters

  • vehicle
    The vehicle identifier.

Return Value

  • Returns true on success.

Example

AddCommand("lights", function(playerid)
    local vehicle = GetPlayerOccupiedVehicle(playerid)
    if vehicle == 0 then
        return AddPlayerChat(playerid, "You must be in a vehicle!")
    end

    local state = not GetVehicleLightEnabled(vehicle)
    SetVehicleLightEnabled(vehicle, state)
    return AddPlayerChat(playerid, "Vehicle headlights changed to: " .. (state and "on" or "off") .. "!")
end)

See also