OnPlayerEnterVehicle

From Onset Developer Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
OnPlayerEnterVehicle

Type: Event
Context: Server & Client
Introduced: v1.0

Description

This event is called when a player enters a vehicle.

Syntax

OnPlayerEnterVehicle(player, vehicle, seat)

Parameters

  • player
    The player is entering a vehicle.
  • vehicle
    The vehicle in which he is getting in.
  • seat
    The seat of the vehicle.

Example

AddEvent("OnPlayerEnterVehicle", function(playerid, vehicle, seat)
    if seat ~= 0 then
        AddPlayerChat(playerid, "You have entered the vehicle "..vehicle.." as a passenger.")
    end
end)

See also