OnPlayerExitVehicle

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

This event is called when a player exits a Vehicle.

Syntax

onPlayerExitVehicle( player, vehicle )

Arguments

  • CPlayer player - The player instance, or, the one who is exiting the vehicle.
  • CVehicle player - The vehicle instance, or, the vehicle which is being exited by the player.

Example

function onPlayerExitVehicle( player, vehicle )
{
Message( player.Name + " has exited " + GetVehicleNameFromModel( vehicle.Model ) + "." );
}

Related Functions