Remove the #define pattern and have it as a function:
pawn Код:
GetVehicleNameEx(modelid)
{
new v_name[18];
if (400 <= modelid <= 611) strcat(v_name, ImenaVozila[modelid - 400]);
return v_name;
}
and you don't need the brackets around each name of the vehicles.