Advertisement
Guest User

Untitled

a guest
May 1st, 2015
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. /////////////////////////////////////////////////
  2. //--Vehicles prohibited from being spawned in--//
  3. /////////////////////////////////////////////////
  4. ALiVE_PLACEMENT_VEHICLEBLACKLIST =
  5. [
  6. "O_UAV_02_F",
  7. "O_UAV_02_CAS_F",
  8. "O_UAV_01_F",
  9. "O_UGV_01_F",
  10. "O_UGV_01_rcws_F",
  11. "B_UAV_01_F",
  12. "B_UAV_02_F",
  13. "B_UAV_02_CAS_F",
  14. "B_UGV_01_F",
  15. "B_UGV_01_rcws_F",
  16. "B_Parachute_02_F",
  17. "I_Parachute_02_F",
  18. "O_Parachute_02_F",
  19. "Parachute",
  20. "Parachute_02_base_F",
  21. "ParachuteBase",
  22. "ParachuteEast",
  23. "ParachuteG",
  24. "ParachuteWest",
  25. "C_Kart_01_Blu_F",
  26. "C_Kart_01_F",
  27. "C_Kart_01_F_Base",
  28. "C_Kart_01_Fuel_F",
  29. "C_Kart_01_Red_F",
  30. "C_Kart_01_Vrana_F"
  31.  
  32. ];
  33. ///////////////////////////////
  34. ////Ambient placed vehicles////
  35. ///////////////////////////////
  36.  
  37. ALIVE_sideDefaultSupports = [] call ALIVE_fnc_hashCreate;
  38. [ALIVE_sideDefaultSupports, "EAST", ["classname1","classname2"]] call ALIVE_fnc_hashSet;
  39. [ALIVE_sideDefaultSupports, "WEST", ["classname1","classname2"]] call ALIVE_fnc_hashSet;
  40. [ALIVE_sideDefaultSupports, "CIV", ["classname1","classname2"]] call ALIVE_fnc_hashSet;
  41.  
  42. //////////////////////////////////
  43. ////Ambient placed supply boxes////
  44. ///////////////////////////////////
  45.  
  46. ALIVE_sideDefaultSupplies = [] call ALIVE_fnc_hashCreate;
  47. [ALIVE_sideDefaultSupplies, "EAST", ["classname1","classname2"]] call ALIVE_fnc_hashSet;
  48. [ALIVE_sideDefaultSupplies, "WEST", ["classname1","classname"]] call ALIVE_fnc_hashSet;
  49.  
  50. /////////////////////////////////////////////////////////
  51. ////Land Vehicles used for Military Logistics Convoys////
  52. /////////////////////////////////////////////////////////
  53.  
  54. ALIVE_sideDefaultTransport = [] call ALIVE_fnc_hashCreate;
  55. [ALIVE_sideDefaultTransport, "EAST", ["classname1","classname2"]] call ALIVE_fnc_hashSet;
  56. [ALIVE_sideDefaultTransport, "WEST", ["classname1","classname2"]] call ALIVE_fnc_hashSet;
  57.  
  58. ///////////////////////////////////////////////////////////////
  59. ////Air Vehicles used for Military Logistics Air Insertions////
  60. ///////////////////////////////////////////////////////////////
  61.  
  62. ALIVE_sideDefaultAirTransport = [] call ALIVE_fnc_hashCreate;
  63. [ALIVE_sideDefaultAirTransport, "EAST", ["classname1","classname2"]] call ALIVE_fnc_hashSet;
  64. [ALIVE_sideDefaultAirTransport, "WEST", ["classname1","classname2"]] call ALIVE_fnc_hashSet;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement