Advertisement
Guest User

Untitled

a guest
Sep 19th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. Init.sqf
  2.  
  3. call compile preprocessFile "staticData.sqf";
  4.  
  5. ---------------------------------------------------------------------------------------------
  6. staticData.sqf
  7.  
  8. waitUntil {!isNil "ALiVE_STATIC_DATA_LOADED"};
  9.  
  10.  
  11. /*
  12. * Mil logistics convoy transport vehicles per faction
  13. */
  14.  
  15. ALIVE_factionDefaultTransport = [] call ALIVE_fnc_hashCreate;
  16. [ALIVE_factionDefaultTransport, "OPF_F", ["O_Truck_02_transport_F","O_Truck_02_covered_F"]] call ALIVE_fnc_hashSet;
  17. [ALIVE_factionDefaultTransport, "OPF_G_F", ["O_G_Van_01_transport_F"]] call ALIVE_fnc_hashSet;
  18. [ALIVE_factionDefaultTransport, "IND_F", ["I_Truck_02_covered_F","I_Truck_02_transport_F"]] call ALIVE_fnc_hashSet;
  19. [ALIVE_factionDefaultTransport, "BLU_F", ["B_Truck_01_transport_F","B_Truck_01_covered_F"]] call ALIVE_fnc_hashSet;
  20. [ALIVE_factionDefaultTransport, "BLU_G_F", ["B_G_Van_01_transport_F"]] call ALIVE_fnc_hashSet;
  21. [ALIVE_factionDefaultTransport, "CIV_F", ["C_Van_01_transport_F"]] call ALIVE_fnc_hashSet;
  22.  
  23. /*
  24. * Mil logistics air transport vehicles per faction
  25. */
  26.  
  27. ALIVE_factionDefaultAirTransport = [] call ALIVE_fnc_hashCreate;
  28. [ALIVE_factionDefaultAirTransport, "OPF_F", ["O_Heli_Attack_02_F","O_Heli_Light_02_F"]] call ALIVE_fnc_hashSet;
  29. [ALIVE_factionDefaultAirTransport, "OPF_G_F", ["I_Heli_light_03_unarmed_F"]] call ALIVE_fnc_hashSet;
  30. [ALIVE_factionDefaultAirTransport, "IND_F", ["I_Heli_light_03_unarmed_F","I_Heli_Transport_02_F"]] call ALIVE_fnc_hashSet;
  31. [ALIVE_factionDefaultAirTransport, "BLU_F", ["B_Heli_Transport_01_camo_F","B_Heli_Transport_01_camo_F"]] call ALIVE_fnc_hashSet;
  32. [ALIVE_factionDefaultAirTransport, "BLU_G_F", ["I_Heli_light_03_unarmed_F"]] call ALIVE_fnc_hashSet;
  33. [ALIVE_factionDefaultAirTransport, "CIV_F", []] call ALIVE_fnc_hashSet;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement