OnPlayerToggleVehicleLight
From Onset Developer Wiki
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)