Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private["_FinalZoneCenter","_startingzone","_mar_name"];
- sleep 5;
- _FinalZoneCenter = [9114.96,5402.52,0];
- _startingzone = 3000;
- _mar_name = createMarker ["ZoneMarker", _FinalZoneCenter];
- "ZoneMarker" setMarkerShape "ELLIPSE";
- "ZoneMarker" setMarkerBrush "GRID";
- "ZoneMarker" setMarkerColor "ColorBlue";
- "ZoneMarker" setMarkerSize [_startingzone,_startingzone];
- [nil,nil,rTitleText,"Safe Zone is Marked!","PLAIN",10] call RE;
- sleep 60;
- [nil,nil,rTitleText,"Zone will shrink in 2 mins","PLAIN",10] call RE;
- while{true}do
- {
- sleep 120;
- _startingzone = ((_startingzone) - (500));
- "ZoneMarker" setMarkerSize [_startingzone,_startingzone];
- };
Advertisement
Add Comment
Please, Sign In to add comment