08.10.2010, 14:31
You have to break the for loop, because it runs again and again, as long as i < sizeof(Vozila)
So just add
break;
at the end of both of your for loops and it should only spawn one vehicle
So just add
break;
at the end of both of your for loops and it should only spawn one vehicle