30.04.2009, 12:30
I added some new cars in my script(LSPD,SFPD and LVPD Cars) . But I want to make it that ONLY the cops to drive them, so I must modify the kind of the car(Like the IsATaxiCar, IsAnAmbulance etc.). The problem is: HOW can I?!
How can I make the Car Type of the cars to Cop Car Types?!
Sorry for my bad English.
pawn Код:
public IsACopCar(carid)
{
if (CarInfo[carid][cType]==CARTYPE_COP) return 1;
return 0;
}
Sorry for my bad English.