OnPlayerEnterVehicle
From SA-MP Wiki
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.
(playerid, vehicleid, ispassenger)
| playerid | ID of the player who attempts to enter a vehicle. |
| vehicleid | ID of the vehicle the player is attempting to enter. |
| ispassenger | 0 if entering as driver. 1 if entering as passenger. |
| Returns | This function doesn't 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; }
| Note: This callback is called when a player BEGINS to enter a vehicle, not when they HAVE entered it. See OnPlayerStateChange. |
Related Callbacks
The following callbacks might be useful as well, as they're related to this callback in one way or another.
- OnPlayerExitVehicle: Called when a player leaves a vehicle.
- OnPlayerStateChange: Called when a player changes state.
Related Functions
The following functions might be useful, as they're related to this callback in one way or another.
- PutPlayerInVehicle: Put a player in a vehicle.
- GetPlayerVehicleSeat: Check what seat a player is in.
