19.03.2015, 08:43
Its because you first ask if the vehicle is a cop vehicle...
Well, and all IsAHENRYCar are Cop Vehicles...so this get ignored...
So change your IsACopCar function:
Greekz
Well, and all IsAHENRYCar are Cop Vehicles...so this get ignored...
So change your IsACopCar function:
Код:
IsACopCar(carid) { for(new v = 0; v < sizeof(LSPDVehicles); v++) { if(v == 17 || v == 18 || v == 26 || v == 27) continue; if(carid == LSPDVehicles[v]) return 1; } return 0; }