KAKAN

For anik

Feb 15th, 2016
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
D 0.37 KB | None | 0 0
  1. const iTime = 10000;
  2.  
  3. function onScriptLoad() {
  4.     NewTimer( "ReSpawnVehicles", iTime, 0 );
  5. }
  6.  
  7. function ReSpawnVehicles() {
  8.     local vehs = GetVehicleCount(), i, veh;
  9.     for (i = 1; i < vehs; i++) {
  10.         veh = FindVehicle(i);
  11.         if ( veh && veh.Driver == null ) { //Check if vehicle exists and it has no driver
  12.             veh.Respawn();
  13.         }
  14.     }
  15. }
Add Comment
Please, Sign In to add comment