Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. Private ["_time"];
  2.  
  3. _time = 1080; //How often you want this to run (time in sec) ///18 Mins set....runs 2-3 mins fast so its rought 15mins///
  4.  
  5. _function = {
  6.  
  7. {
  8. _position = position _x;
  9. if ((typeOf _x) in ["Exile_Bike_MountainBike","Exile_Bike_OldBike"]) then
  10. {
  11. if([_position, 100] call ExileClient_util_world_isAlivePlayerInRange) exitwith {};
  12. deleteVehicle _x;
  13. };
  14. } forEach vehicles;
  15.  
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement