28.11.2013, 12:03
Try this loop instead,
pawn Код:
for(new i = 0; i < 7; i++) // Players Loop - Just for 8 players(starting with 0)
{
if(i > 3) // 5th+ player..
{
PutPlayerInVehicle(i, Vehl, i-4); //put players in the second vehicle
}
else // 4th- player..
{
PutPlayerInVehicle(i, Veh, i); //put players in the first vehicle
}
}