OnClientPlayerVehicleEnter: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 27: Line 27:
addEventHandler("onClientPlayerVehicleEnter",getRootElement(),checkVehicles)
addEventHandler("onClientPlayerVehicleEnter",getRootElement(),checkVehicles)
</syntaxhighlight>
</syntaxhighlight>
</section>


==See Also==
==See Also==

Revision as of 10:33, 17 January 2012

Accessories-text-editor.png Script Example Missing Event OnClientPlayerVehicleEnter needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.


This event is fired when a player enters a vehicle.

Parameters

vehicle theVehicle, int seat
  • vehicle: 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

Click to collapse [-]
Client script
function checkVehicles()
	local theVehicle = source
	if (getVehicleName(theVehicle)) == "Banshee" then
		outputChatBox("You entered a Banshee!")
	else
		outputChatBox("This isn't a Banshee!")
	end
end
addEventHandler("onClientPlayerVehicleEnter",getRootElement(),checkVehicles)

See Also

Client player events


Client event functions