IsPlayerInAnyVehicle

IsPlayerInAnyVehicle

Description:
Function IsPlayerInAnyVehicle check if a player is inside any vehicle (as a driver or passenger)


Parameters:
(playerid)
int playerid The ID of the player to check.


Return Values:
  • 1: The player is in a vehicle.
  • 0: The player is not in a vehicle.


Examples:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if(strcmp(cmdtext, "/invehicle", true) == 0)
    {
        if(IsPlayerInAnyVehicle(playerid)) SendClientMessage(playerid, 0x00FF00AA, "You're in a vehicle.");
        return 1;
    }
    return 0;
}


Related Functions
The following functions may be useful, as they are related to this function in one way or another.