OnPlayerVehicleExit: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Added forcedByScript parameter)
Line 5: Line 5:
==Parameters==  
==Parameters==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
vehicle theVehicle, int seat, player jacker
vehicle theVehicle, int seat, player jacker, bool forcedByScript
</syntaxhighlight>  
</syntaxhighlight>  


Line 11: Line 11:
*'''seat''': an [[int]] representing the seat in which the player was before exiting.
*'''seat''': an [[int]] representing the seat in which the player was before exiting.
*'''jacker''': a [[player]] element representing the player who jacked the driver.
*'''jacker''': a [[player]] element representing the player who jacked the driver.
{{New feature/item|3.0154|1.5.3|11247|
*'''forcedByScript:''' a [[boolean]] representing whether the exit was forced using [[removePedFromVehicle]] or by the player.
}}


==Source==
==Source==
Line 32: Line 35:
addEventHandler ( "onPlayerVehicleExit", getRootElement(), removeHelmetOnExit )
addEventHandler ( "onPlayerVehicleExit", getRootElement(), removeHelmetOnExit )
</syntaxhighlight>
</syntaxhighlight>
==Changelog==
{{ChangelogHeader}}
{{ChangelogItem|1.5.3-9.11247|Added forcedByScript argument}}


{{See also/Server event|Player events}}
{{See also/Server event|Player events}}

Revision as of 02:24, 21 November 2018

This event is triggered when a player leaves a vehicle, for whatever reason.

Parameters

vehicle theVehicle, int seat, player jacker, bool forcedByScript
  • theVehicle: a vehicle element representing the vehicle in which the player exited from.
  • seat: an int representing the seat in which the player was before exiting.
  • jacker: a player element representing the player who jacked the driver.

Source

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

Example

This example adds a 'moto' helmet to a player when he gets on a nrg bike, and removes it when he gets off.

function addHelmetOnEnter ( vehicle, seat, jacked )
  if ( getVehicleID ( vehicle ) == 522 ) then -- if its a nrg
    addPedClothes ( source, "moto", "moto", 16 ) -- add the helmet
  end
end
addEventHandler ( "onPlayerVehicleEnter", getRootElement(), addHelmetOnEnter )

function removeHelmetOnExit ( vehicle, seat, jacked )
  if ( getVehicleID ( vehicle ) == 522 ) then -- if its a nrg
    removePedClothes ( source, 16 ) -- remove the helmet
  end
end
addEventHandler ( "onPlayerVehicleExit", getRootElement(), removeHelmetOnExit )

Changelog

Version Description
1.5.3-9.11247 Added forcedByScript argument

See Also

Player events


Event functions