OnClientVehicleStartExit: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 17: Line 17:


==Example==
==Example==
{{Example}}
This example outputs to the player that he's leaving the drivers seat.
<syntaxhighlight lang="lua">addEventHandler("onClientVehicleStartExit",root,function(player,seat,door)
if(seat==0)and(door==0)then
outputChatBox("You are leaving the drivers seat.",player)
end
end)</code]


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

Revision as of 05:07, 27 April 2012

This event is triggered when a player starts exiting a vehicle. Once the exiting animation completes, onClientVehicleExit is triggered.

Parameters

player thePlayer, int seat, int door
  • thePlayer: the player who started exiting the vehicle.
  • seat: the number of the seat that the player was sitting on.
  • door: the number of the door that the player is using to leave.

Source

The source of this event is the vehicle that the player started to exit.

Example

This example outputs to the player that he's leaving the drivers seat. <syntaxhighlight lang="lua">addEventHandler("onClientVehicleStartExit",root,function(player,seat,door) if(seat==0)and(door==0)then outputChatBox("You are leaving the drivers seat.",player) end end)</code]

See Also

Client vehicle events


Client event functions