24.07.2014, 20:21
A function is a better choice.
pawn Код:
IsPoliceCar(model)
{
switch(model) { case 596, 597, 598, 599, 601, 427: { return 1; } }
return 0;
}