06.08.2013, 12:44
Hello .. I wanna do Attach3dTextLabelToVehicle but in less lines possible .. problem is there are about 10 cars and do i need to make functions for all vehicles separetely or i can make it in few lines..
I already made public function for detecting this cars
I already made public function for detecting this cars
pawn Код:
public IsAnsipaCar(carid)
{
if((carid >= 23) && (carid <= 35))
{
return 1;
}
return 0;
}