pawn Код:
IsBike(vehicleid)
{
switch(vehicleid)
{
case 509, 481, 510: return 1;
}
return 0;
}
IsMotorBike(vehicleid)
{
switch(vehicleid)
{
case 581, 462, 521, 463, 522, 523, 461, 448, 471, 468, 586: return 1;
}
return 0;
}
IsBoat(vehicleid)
{
switch(vehicleid)
{
case 472, 473, 493, 495, 484, 430, 454, 453, 452, 446: return 1;
}
return 0;
}
IsTrain(vehicleid)
{
switch(vehicleid)
{
case 590, 569, 537, 538, 570, 449: return 1;
}
return 0;
}
IsRC(vehicleid)
{
switch(vehicleid)
{
case 441, 464, 465, 501, 564, 594: return 1;
}
return 0;
}
IsHeli(vehicleid)
{
switch(vehicleid)
{
case 417, 425, 447, 469, 487, 488, 497, 548, 563: return 1;
}
return 0;
}
IsPlane(vehicleid)
{
switch(vehicleid)
{
case 460, 476, 511, 512, 513, 519, 520, 553, 577, 592, 593: return 1;
}
return 0;
}