OnPlayerEnterVehicle

From SA-MP Wiki

Jump to: navigation, search

OnPlayerEnterVehicle


This callback is called when a player starts to enter a vehicle, meaning the player is not in vehicle yet at the time this callback is called.


Parameters:
(playerid, vehicleid, ispassenger)
playeridID of the player who attempts to enter a vehicle.
vehicleidID of the vehicle the player is attempting to enter.
ispassenger0 if entering as driver. 1 if entering as passenger.


This function does not return a specific value.


Here's an example that prints the model of vehicle you're entering to the chatbox.

public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
    new string[128];
    format(string, sizeof(string), "You are entering vehicle %i",vehicleid);
    SendClientMessage(playerid, 0xFFFFFFFF, string);
    return 1;
}

Related Callbacks

The following callbacks might be useful as well, as they're related to this callback in one way or another.


Related Functions

The following functions might be useful, as they're related to this callback in one way or another.

Personal tools