28.12.2018, 11:41
Quote:
|
You could use a loop to check whoever in the vehicle, then using GetPlayerVehicleSeat function to check whether seats are full or not.
|
Quote:
|
Mhm, I think this could help you:
Код:
stock getSeatStatus(const vID, const seatID)
{
for(new i = 0, j = GetPlayerPoolSize(); i <= j; i++)
{
if(GetPlayerVehicleID(i) == vID && GetPlayerVehicleSeat(i) == seatID)
return true;
}
return false;
}
|


