Advertisement
Guest User

Untitled

a guest
May 29th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. /* INIT GANG WAR SYSTEM BY ARMA-SERVICES.DE */
  2. // CONFIGURATION
  3.  
  4. _zones =
  5. [ /* POSITION OF THE GANG ZONE, DISPLAYNAME, X, Y, CAPTURE REWARD, CAPTURE PROC. SPEED, CAPTURE TIME IN MIN*/
  6. [[3044.2373,53.133499,13150.947],"Kastro Kavala",200,200,10000,0.05,10,-1,grpNull,false],
  7. [[13491.001,12.684244,12025.646],"Makrynisi",600,200,2500,0.05,10,-1,grpNull,false],
  8. [[4562.3037,270.56433,15407.525],"Hill Magos",500,900,1500,0.05,10,-1,grpNull,false],
  9. [[10892.44,103.57076,8277.3721],"Southern Island",2300,3000,50000,0.05,10,-1,grpNull,false],
  10. [[8468.7969,111.30511,25067.83],"Atsalis",750,750,2500,0.05,10,-1,grpNull,false],
  11. [[14742.027,12.496978,11155.146],"Faronaki",500,500,2500,0.05,10,-1,grpNull,false],
  12. [[23685.621,76.033745,24236.68],"Agios Andreas",550,600,3000,0.05,10,-1,grpNull,false],
  13. [[5190.9453,244.15372,21043.688],"Hill Dreokastro",200,200,3000,0.05,10,-1,grpNull,false],
  14. [[21372.418,23.978228,11090.475],"KAktinarki",200,200,3000,0.05,10,-1,grpNull,false]
  15.  
  16. ];
  17.  
  18. // DO NOT TOUCH THE CODE BELOW
  19. {
  20. createMarker [_x select 1, _x select 0];
  21. (_x select 1) setMarkerColor "ColorRed";
  22. (_x select 1) setMarkerType "Empty";
  23. (_x select 1) setMarkerShape "ELLIPSE";
  24. (_x select 1) setMarkerSize [_x select 2,_x select 3];
  25. (_x select 1) setMarkerAlpha 0.5;
  26. } forEach _zones;
  27.  
  28. AS_GANG_zones = _zones;
  29. AS_GANG_fight = false;
  30. publicVariable "AS_GANG_fight";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement