OnPlayerToggleVehicleLight

From Onset Developer Wiki
Revision as of 16:57, 8 March 2020 by BlueMountains (talk | contribs) (Created page with "{{Info|Event|Client|1.0}} {{FuncDescription|Called when a (local) player presses the key to switch the vehicle light on/off.}} {{FuncSyntax|OnPlayerToggleVehicleLight(vehicl...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
OnPlayerToggleVehicleLight

Type: Event
Context: Client
Introduced: v1.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