25.01.2010, 16:43
You could also use switch.
pawn Код:
stock IsACopCar(vehicleid)
{
switch (vehicleid)
{
case 427, 523, 596, 597, 598, 599, 601: return 1;
}
return 0;
}