24.06.2013, 12:47
A switch is the answer to your question. Also I'm pretty sure that you're checking vehicle models, not ids.
pawn Код:
switch(GetVehicleModel(GetPlayerVehicleID(playerid)))
{
case 448,462,408,574,609,498,403,435,400,414,456,482,414,455,482:
{
// do stuff
}
default:
{
// not one of these
}
}