GetVehiclePoolSize
From SA-MP Wiki
Description:
Gets the highest vehicleid currently in use on the server.
This function has no parameters.
Return Values:
The highest vehicleid currently in use on the server or 0 if there are no created vehicles.
Example Usage:
RepairAllVehicles() { for(new i = 1, j = GetVehiclePoolSize(); i <= j; i++) // vehicleids start at 1 { RepairVehicle(i); } }
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- GetPlayerPoolSize: Gets the highest playerid connected to the server.