28.12.2018, 11:15
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;
}

