08.06.2011, 19:32
and how do I as a command to be restrictive in some models of cars (bicycles)?
stock IsBikeVehicle(vehicleid)
{
switch(GetVehicleModel(vehicleid))
{
case
581,509,481,462,521,463,//bikes
510,522,461,448,471,468,586:
return true;
}
return false;
}