OnPlayerStartEnterVehicle: Difference between revisions
From Onset Developer Wiki
No edit summary |
mNo edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 8: | Line 8: | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua> | |||
AddEvent("OnPlayerStartEnterVehicle", function(vehicleId, seatId) | |||
if seatId == 0 then | |||
print("Entered as a driver.") | |||
end | |||
end) | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
{{ | {{VehicleClientEvents}} |
Latest revision as of 08:42, 16 January 2020
Description
Called when a player presses the key to start entering a vehicle. You can return false in this event to stop the player from entering.
Syntax
OnPlayerStartEnterVehicle(vehicle, seat)
- vehicle
The vehicle identifier. - seat
The vehicle seat in which the player tries to get in.
Example
AddEvent("OnPlayerStartEnterVehicle", function(vehicleId, seatId)
if seatId == 0 then
print("Entered as a driver.")
end
end)