OnPlayerToggleVehicleLight

From Onset Developer Wiki
OnPlayerToggleVehicleLight

Type: Event
Context: Client
Introduced: v1.1.0

Description

Called when a (local) player presses the key to switch the vehicle light on/off.

Syntax

OnPlayerToggleVehicleLight(vehicle, toggle)
  • vehicle
    The vehicle identifier.
  • toggle
    true if the player will turn on the light, false otherwise.

Example

AddEvent("OnPlayerToggleVehicleLight", function(vehicle, toggle)
    if toggle == true then
        return false -- do not allow the player to turn on the light
    end
end)

See also