OnClientPlayerVehicleEnter: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Client event}}
{{Client event}}
__NOTOC__
__NOTOC__
This event is fired when a player or ped enters a vehicle.
This event is fired when a player has entered a vehicle.


==Parameters==
==Parameters==
Line 11: Line 11:


==Source==
==Source==
The [[event system#Event source|source]] of this event is the [[player]] or [[ped]] that entered the vehicle.
The [[event system#Event source|source]] of this event is the [[player]] that entered the vehicle.


==Example==
==Example==
This will check if the car you entered is a Banshee or not.
This example will tell you the name of the vehicle you enter.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function checkVehicles()
function checkVehicles(theVehicle)
local theVehicle = getPedOccupiedVehicle(source)
outputChatBox("You entered a "..getVehicleName(theVehicle).."!")
if (getVehicleName(theVehicle)) == "Banshee" then
outputChatBox("You entered a Banshee!")
else
outputChatBox("This isn't a Banshee!")
end
end
end
addEventHandler("onClientPlayerVehicleEnter",getRootElement(),checkVehicles)
addEventHandler("onClientPlayerVehicleEnter", localPlayer, checkVehicles)
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
'''<big>Related</big>'''
</br>
[[onClientVehicleStartEnter]]
</br>
[[onClientVehicleExit]]
===Client player events===
===Client player events===
{{Client_player_events}}
{{Client_player_events}}
===Client event functions===
===Client event functions===
{{Client_event_functions}}
{{Client_event_functions}}

Latest revision as of 18:31, 29 November 2020

This event is fired when a player has entered a vehicle.

Parameters

vehicle theVehicle, int seat
  • theVehicle: the vehicle that the player entered
  • seat: the seat that the player now is on. Driver's seat = 0, higher numbers are passenger seats.

Source

The source of this event is the player that entered the vehicle.

Example

This example will tell you the name of the vehicle you enter.

function checkVehicles(theVehicle)
	outputChatBox("You entered a "..getVehicleName(theVehicle).."!")
end
addEventHandler("onClientPlayerVehicleEnter", localPlayer, checkVehicles)

See Also

Related
onClientVehicleStartEnter
onClientVehicleExit

Client player events


Client event functions