12.10.2011, 21:56
Vai precisar pegar os IDs de todos os veнculos do governo denovo e colocar aqui:
ou fazer igual o TurismoStaff.
pawn Код:
if((carid >= 12) && (carid <= 15)/* do id 12 ao 15*/ || carid == 168/*id 168*/ || (carid >= 282) && (carid <= 288)/* do id 282 ao 288*/)//Comentбrios mostrando o que estб escrito.
pawn Код:
new GovCars[QUANTIA_DE_CARROS];
// ...
GovCars[0] = AddStaticVehicleEx(....);
GovCars[1] = AddStaticVehicleEx(....);
GovCars[2] = AddStaticVehicleEx(....);
// ...
public IsAGovernmentCar(carid)
{
for (new cars = 0; cars < sizeof(GovCars); cars++)
{
if(carid == GovCars[cars])
{
return 1;
}
}
return 0;
}