Advertisement
Guest User

Untitled

a guest
Sep 5th, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. if (!airdrop_enable) exitWith {};
  2. if (airdrop_goingon) exitWith {};
  3. //if({side _x == civilian} count playableUnits < 10) exitWith {};
  4. airdrop_goingon = true;
  5. _dest = [14677.3,16692.2,0];
  6. sleep 1;
  7.  
  8. // AIRDROP STARTEN
  9. [5,"<t size='1.2'><t color='#FF0000'>Airdrop-Mission</t></t><br/><br/><t size='1'>A helicopter is going to drop a Supplycrate in 15 minutes! The drop-location will be transmitted soon!</t>"] remoteExecCall ["life_fnc_broadcast",0];
  10. sleep 300;
  11. _marker = createMarker ["Airdropmarker", _dest];
  12. "Airdropmarker" setMarkerColor "ColorRed";
  13. "Airdropmarker" setMarkerType "Empty";
  14. "Airdropmarker" setMarkerShape "ELLIPSE";
  15. "Airdropmarker" setMarkerSize [500,500];
  16. _markerText = createMarker ["Airdropmarkertext", _dest];
  17. "Airdropmarkertext" setMarkerColor "ColorBlack";
  18. "Airdropmarkertext" setMarkerText "Airdrop-Mission";
  19. "Airdropmarkertext" setMarkerType "mil_warning";
  20.  
  21. [5,"<t size='1.2'><t color='#FF0000'>Airdrop-Mission</t></t><br/><br/><t size='1'>10 minutes until the helicopter will drop the supplies! Check your map for the drop-location!</t>"] remoteExecCall ["life_fnc_broadcast",0];
  22. sleep 300;
  23. [5,"<t size='1.2'><t color='#FF0000'>Airdrop-Mission</t></t><br/><br/><t size='1'>5 minutes until the helicopter will drop the supplies!</t>"] remoteExecCall ["life_fnc_broadcast",0];
  24. sleep 60;
  25. [5,"<t size='1.2'><t color='#FF0000'>Airdrop-Mission</t></t><br/><br/><t size='1'>4 minutes until the helicopter will drop the supplies!</t>"] remoteExecCall ["life_fnc_broadcast",0];
  26. sleep 60;
  27. [5,"<t size='1.2'><t color='#FF0000'>Airdrop-Mission</t></t><br/><br/><t size='1'>3 minutes until the helicopter will drop the supplies!</t>"] remoteExecCall ["life_fnc_broadcast",0];
  28. sleep 60;
  29. [5,"<t size='1.2'><t color='#FF0000'>Airdrop-Mission</t></t><br/><br/><t size='1'>2 minutes until the helicopter will drop the supplies!</t>"] remoteExecCall ["life_fnc_broadcast",0];
  30. sleep 60;
  31. [5,"<t size='1.2'><t color='#FF0000'>Airdrop-Mission</t></t><br/><br/><t size='1'>1 minute until the helicopter will drop the supplies!</t>"] remoteExecCall ["life_fnc_broadcast",0];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement