04.10.2012, 15:09
How i can edit this code, for more than 1 ID using.
Example:
Original code:
Example:
Код:
if(GetVehicleModel(currentveh) == 420, 421, 422, 433)
{
DestroyVehicle(currentveh);
return 0;
}
Код:
if(GetVehicleModel(currentveh) == 420)
{
DestroyVehicle(currentveh);
return 0;
}

