onClientVehicleEnter | Multi Theft Auto: Wiki Skip to content

onClientVehicleEnter

Client-side
Server-side
Shared

This event gets fired when a player or ped enters a vehicle.

Parameters

ped thePed, int seat
  • thePed: the player or ped that entered the vehicle
  • seat: the number of the seat that the ped is now sitting on. 0 = driver, higher numbers are passenger seats.

Source

element: The source of the event is the vehicle that the ped entered.

Code Examples

client

This code updates a GUI label with the name of the vehicle the local player is in.

lblVehicle = guiCreateLabel(10, 200, 150, 20, "Currently on foot", false)
addEventHandler("onClientVehicleEnter", getRootElement(),
function(thePlayer, seat)
if thePlayer == getLocalPlayer() then
guiSetText(lblVehicle, "Currently in a " .. getVehicleName(source))
end
end
)
addEventHandler("onClientVehicleExit", getRootElement(),
function(thePlayer, seat)
if thePlayer == getLocalPlayer() then
guiSetText(lblVehicle, "Currently on foot")
end
end
)

See Also

Vehicle Functions