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.
GetPlayerSurfingVehicleID
Description
Get the ID of the vehicle that the player is surfing (stuck to the roof of).
Name | Description |
---|---|
playerid | The ID of the player you want to know the surfing vehicle ID of. |
Returns
The ID of the vehicle that the player is surfing. If they are not surfing a vehicle or the vehicle they are surfing has no driver, INVALID_VEHICLE_ID
.
If the player specified is not connected, INVALID_VEHICLE_ID
also.
Examples
new surfingVehicleId = GetPlayerSurfingVehicleID(playerid);
if (surfingVehicleId == INVALID_VEHICLE_ID)
{
SendClientMessage(playerid, COLOR_RED, "You are not surfing.");
}
Related Functions
- GetPlayerVehicleID: Get the ID of the vehicle the player is in.
- GetPlayerVehicleSeat: Check what seat a player is in.
- GetPlayerSurfingObjectID: Gets the ID of the object the player is surfing on.
- GetPlayerSurfingOffsets: Gets a player's surfing offsets.