24.05.2014, 10:50
Try this
define RespawnTime "2000" //You can change time to respawn vehicles here!
define RespawnTime "2000" //You can change time to respawn vehicles here!
Quote:
public RespawnVehicles() { for(new c = 0; c < MAX_VEHICLES; c++) { if(c != INVALID_VEHICLE_ID) { if(IsVehicleEmpty©) SetVehicleToRespawn©; } } return 1; } |
Quote:
public OnGameModeInit() { SetTimer("RespawnVehicles", RespawnTime, 1); return 1; } |