31.07.2015, 19:10
Try this:
on the top of the script
Under the spawn car command
Then under the respawn command
I'm not sure but try
on the top of the script
PHP код:
new bool:Spawned[MAX_VEHICLES];
PHP код:
//Beside the create vehicle type
//new car = CreateVehicle(.....
Spawned[car] = true;
PHP код:
for(new x = 0; x < MAX_VEHICLES;x++)
{
if(Spawned[x] == true)
{
SetVehicleToRespawn(x);
}
}