OnPlayerToggleVehicleLight: Difference between revisions
From Onset Developer Wiki
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..." |
(No difference)
|
Revision as of 16:57, 8 March 2020
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)