GetVehicleLightState: Difference between revisions

From Onset Developer Wiki
 
Line 11: Line 11:


== Example ==
== Example ==
<syntaxhighlight lang="Lua>
AddCommand("lights", function(playerid)
AddCommand("lights", function(playerid)
     local vehicle = GetPlayerOccupiedVehicle(playerid)
     local vehicle = GetPlayerOccupiedVehicle(playerid)
Line 21: Line 22:
     return AddPlayerChat(playerid, "Vehicle headlights changed to: " .. (state and "on" or "off") .. "!")
     return AddPlayerChat(playerid, "Vehicle headlights changed to: " .. (state and "on" or "off") .. "!")
end)
end)
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
{{Template:VehicleFunctions}}
{{Template:VehicleFunctions}}

Latest revision as of 16:06, 27 May 2021

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