warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
GetVehicleDriver
warning
This function was added in omp v1.1.0.2612 and will not work in earlier versions!
Description
Get the playerid of the person driving the vehicle.
Parameters
Name | Description |
---|---|
vehicleid | The ID of the vehicle to get the driver of. |
Returns
Returns the driver ID (player ID).
INVALID_PLAYER_ID
- The vehicle has no driver.
Examples
public OnPlayerExitVehicle(playerid, vehicleid)
{
new driverid = GetVehicleDriver(vehicleid);
if (driverid != INVALID_PLAYER_ID)
{
SendClientMessage(driverid, -1, "Someone is exiting your vehicle.");
}
return 1;
}
Related Functions
- GetVehicleLastDriver: Get the last driver of a vehicle.