18.11.2016, 12:33
I think I know what you mean, maybe you could do like:
Just a quick idea, correct me if this wasn't what you meant
pawn Код:
stock RandomVehicle(vehicleid)
{
switch(random(10))
{
case 0:
{
vehicleid = 560;
}//Choose the vehicle id's you want to include
case 1: // etc.
}
}
RandomVehicle(EIsystem[0][gBonusModel]);