choppra

Untitled

Apr 13th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. private["_FinalZoneCenter","_startingzone","_mar_name"];
  2.  
  3. sleep 5;
  4.  
  5. _FinalZoneCenter = [9114.96,5402.52,0];
  6. _startingzone = 3000;
  7.  
  8. _mar_name = createMarker ["ZoneMarker", _FinalZoneCenter];
  9. "ZoneMarker" setMarkerShape "ELLIPSE";
  10. "ZoneMarker" setMarkerBrush "GRID";
  11. "ZoneMarker" setMarkerColor "ColorBlue";
  12. "ZoneMarker" setMarkerSize [_startingzone,_startingzone];
  13. [nil,nil,rTitleText,"Safe Zone is Marked!","PLAIN",10] call RE;
  14. sleep 60;
  15. [nil,nil,rTitleText,"Zone will shrink in 2 mins","PLAIN",10] call RE;
  16.  
  17. while{true}do
  18. {
  19.  
  20. sleep 120;
  21. _startingzone = ((_startingzone) - (500));
  22. "ZoneMarker" setMarkerSize [_startingzone,_startingzone];
  23.  
  24. };
Advertisement
Add Comment
Please, Sign In to add comment