Skip to main content

GetVehicleSeats

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

Gets the number of seats in the vehicle.

NameDescription
modelidID of the vehicle model.

Return Values

Returns the number of seats.

255 if the model is invalid.

Examples

new vehicleid = GetPlayerVehicleID(playerid);
new modelid = GetVehicleModel(vehicleid);
new seats = GetVehicleSeats(modelid);

new string[64];
format(string, sizeof(string), "Number of seats in this vehicle: %d", seats);
SendClientMessage(playerid, -1, string);