template1.sqf 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. _objects_to_build = [
  2. ["Land_HBarrierBig_F",[-15,-8,0],90],
  3. ["Land_HBarrierBig_F",[-15,-16.5,0],90],
  4. ["Land_HBarrierBig_F",[-15,-25,0],90],
  5. ["Land_HBarrierBig_F",[-15,8,0],90],
  6. ["Land_HBarrierBig_F",[-15,16.5,0],90],
  7. ["Land_HBarrierBig_F",[-15,25,0],90],
  8. ["Land_HBarrierBig_F",[15,-8,0],90],
  9. ["Land_HBarrierBig_F",[15,-16.5,0],90],
  10. ["Land_HBarrierBig_F",[15,-25,0],90],
  11. ["Land_HBarrierBig_F",[15,8,0],90],
  12. ["Land_HBarrierBig_F",[15,16.5,0],90],
  13. ["Land_HBarrierBig_F",[15,25,0],90],
  14. ["Land_HBarrierBig_F",[11,30,0],0],
  15. ["Land_HBarrierBig_F",[4,30,0],0],
  16. ["Land_HBarrierBig_F",[-4,30,0],0],
  17. ["Land_HBarrierBig_F",[-11,30,0],0],
  18. ["Land_HBarrierBig_F",[11,-30,0],0],
  19. ["Land_HBarrierBig_F",[4,-30,0],0],
  20. ["Land_HBarrierBig_F",[-4,-30,0],0],
  21. ["Land_HBarrierBig_F",[-11,-30,0],0],
  22. ["Land_Cargo_Patrol_V3_F",[-10,-26,0],0],
  23. ["Land_Cargo_HQ_V3_F",[4,-20,0],0],
  24. ["Land_Cargo_House_V3_F",[-9,24,0],0],
  25. ["Land_Cargo_House_V3_F",[-1,24,0],0],
  26. ["Land_Cargo_Patrol_V3_F",[10,24,0],180],
  27. ["Land_CncBarrierMedium4_F",[-21,-5,0],180],
  28. ["Land_CncBarrierMedium4_F",[-21,5,0],180],
  29. ["Land_CncBarrierMedium4_F",[21,-5,0],180],
  30. ["Land_CncBarrierMedium4_F",[21,5,0],180],
  31. ["Land_Razorwire_F",[-22,-7,0],180],
  32. ["Land_Razorwire_F",[-22,7,0],180],
  33. ["Land_Razorwire_F",[19,-7,0],180],
  34. ["Land_Razorwire_F",[19,7,0],180],
  35. ["Land_Tank_rust_F",[-9,10,0],180],
  36. ["Land_Tank_rust_F",[-9,14,0],180],
  37. ["Land_Tank_rust_F",[-9,6,0],180],
  38. [opfor_flag,[-14,-5,0],180],
  39. [opfor_flag,[-14,5,0],180],
  40. [opfor_flag,[14,-5,0],90],
  41. ["Land_BarGate_F",[20,0,0],90],
  42. ["Land_BarGate_F",[-13,0,0],270],
  43. [opfor_mrap,[7,-7,0],60]
  44. ];
  45. _objectives_to_build = [
  46. [opfor_fuel_truck,[10,8,0],185],
  47. [opfor_fuel_truck,[5,8.5,0],190],
  48. [opfor_fuel_truck,[0,9,0],192],
  49. [opfor_ammo_truck,[-9,-8,0],10],
  50. [opfor_ammo_truck,[-3,-8,0],15]
  51. ];
  52. _defenders_to_build = [
  53. [opfor_marksman,[11,26.5,4.5],0],
  54. [opfor_marksman,[-11,-26.5,4.5],180],
  55. [opfor_heavygunner,[9,26.5,4.5],0],
  56. [opfor_heavygunner,[-9,-26.5,4.5],180],
  57. [opfor_rifleman,[12,23,4.5],90],
  58. [opfor_rifleman,[-12,-23,4.5],270],
  59. [opfor_sentry,[6,-20,1],0],
  60. [opfor_sentry,[3,-23,1],90],
  61. [opfor_rifleman,[3,-20,1],180],
  62. [opfor_officer,[6,-23,1],270],
  63. [opfor_officer,[3,-18,1],180],
  64. [opfor_sentry,[6,-18,1],270],
  65. [opfor_rifleman,[-9,25,1],180],
  66. [opfor_sentry,[-11,25,1],180],
  67. [opfor_rifleman,[-1,25,1],180],
  68. [opfor_sentry,[-3,25,1],180],
  69. [opfor_sentry,[0,-5,0],0],
  70. [opfor_sentry,[2,5,0],180]
  71. ];
  72. _base_corners = [
  73. [30,40,0],
  74. [30,-40,0],
  75. [-30,-40,0],
  76. [-30,40,0]
  77. ];
  78. [ _objects_to_build, _objectives_to_build, _defenders_to_build, _base_corners ]