PlayerLeaveVehicle

From RAGE Multiplayer Wiki
Revision as of 23:32, 20 April 2020 by MrPancakers2 (talk | contribs) (Added parameters to JS syntax)

Triggers when the player exits the vehicle.

Client-Side Event

 C#  JavaScript



C# Syntax

public delegate void OnPlayerLeaveVehicleDelegate();

Parameters

This event has no parameters

Example

The example below send a chat message to the player when they exit a vehicle.

Events.OnPlayerLeaveVehicle += OnPlayerLeaveVehicle();
public void OnPlayerLeaveVehicle()
{
    RAGE.Chat.Output("You exited a vehicle");
}


JavaScript Syntax

Parameters

  • vehicle: Object
  • seat: Int

Example

This example outputs a chat message when the player start's to leave from the car and their seat ID.

Client-Side
mp.events.add("playerLeaveVehicle", (vehicle, seat) => {
    mp.gui.chat.push(`You are now leaving the vehicle from seat ${seat}`);
})


See Also

Checkpoint

Colshape

Entity

Player

Streaming

Vehicle

Waypoint