跳至主要内容

OnPlayerEnterVehicle

Description

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.

NameDescription
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.

Returns

It is always called first in filterscripts.

Examples

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

Notes

提示
  • This callback is called when a player BEGINS to enter a vehicle, not when they HAVE entered it. See OnPlayerStateChange.
  • This callback is still called if the player is denied entry to a vehicle (e.g. it is locked or full) but only as a passenger.

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

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