OnPlayerVehicleExit: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Added forcedByScript parameter)
(Updated parameters)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Server event}}
{{Server event}}
This event is triggered when a player leaves a vehicle, for whatever reason.
This event is triggered when a [[player]] leaves a vehicle, for whatever reason.


==Parameters==  
==Parameters==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
vehicle theVehicle, int seat, player jacker, bool forcedByScript
vehicle theVehicle, int seat, ped jacker, bool forcedByScript
</syntaxhighlight>  
</syntaxhighlight>  


*'''theVehicle''': a [[vehicle]] element representing the vehicle in which the player exited from.
*'''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.
*'''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]] or [[ped]] element representing who jacked the driver.
{{New feature/item|3.0154|1.5.3|11247|
{{New feature/item|3.0154|1.5.3|11247|
*'''forcedByScript:''' a [[boolean]] representing whether the exit was forced using [[removePedFromVehicle]] or by the player.
*'''forcedByScript:''' a [[boolean]] representing whether the exit was forced using [[removePedFromVehicle]] or by the player.
Line 26: Line 26:
   end
   end
end
end
addEventHandler ( "onPlayerVehicleEnter", getRootElement(), addHelmetOnEnter )
addEventHandler ( "onPlayerVehicleEnter", root, addHelmetOnEnter )


function removeHelmetOnExit ( vehicle, seat, jacked )
function removeHelmetOnExit ( vehicle, seat, jacked )
Line 33: Line 33:
   end
   end
end
end
addEventHandler ( "onPlayerVehicleExit", getRootElement(), removeHelmetOnExit )
addEventHandler ( "onPlayerVehicleExit", root, removeHelmetOnExit )
</syntaxhighlight>
</syntaxhighlight>



Latest revision as of 22:19, 1 February 2021

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

Parameters

vehicle theVehicle, int seat, ped 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 or ped element representing 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", root, 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", root, removeHelmetOnExit )

Changelog

Version Description
1.5.3-9.11247 Added forcedByScript argument

See Also

Player events


Event functions