13.05.2012, 23:15
Okay, what you need to do is create the vehicles like this first:-
This is what I've thought, would have provided the full code but sorry I am not on computer.
-FalconX
pawn Код:
//on top - change the max taxi limit to your own
#define MAX_TAXI (10)
new taxi[MAX_TAXI];
//now create them in the gamemodeinit
taxi[0] = AddStaticVehicle(...);
taxi[1] = AddStaticVehicle(...);
//and so on till your required number. Now what you have to do is make a loop:-
for(new f; f < MAX_TAXI; f++)
// and rest of the code.
-FalconX