Advertisement
Guest User

staticdata.sqf

a guest
Aug 28th, 2016
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. /*
  2. * Custom transport,support, and ammo classes for factions
  3. * Used by MP,MCP,ML to place support vehicles and ammo boxes
  4. * If no faction specific settings are found will fall back to side
  5. */
  6.  
  7. If !(isServer) exitWith {};
  8.  
  9. waitUntil {!isNil "ALiVE_STATIC_DATA_LOADED"};
  10.  
  11.  
  12. /*
  13. * Mil logistics convoy transport vehicles per faction
  14. */
  15.  
  16. ALIVE_factionDefaultTransport = [] call ALIVE_fnc_hashCreate;
  17. [ALIVE_factionDefaultTransport, "caf_ag_me_t", ["CUP_O_LR_Transport_TKM","CUP_O_LR_MG_TKM","CUP_O_LR_SPG9_TKM","CUP_C_UAZ_Open_TK_CIV","CUP_C_LR_Transport_CTK","CUP_C_UAZ_Unarmed_TK_CIV","CUP_C_Skoda_White_CIV","CUP_C_Skoda_Red_CIV","CUP_C_Skoda_Blue_CIV","CUP_C_Skoda_Green_CIV","CUP_C_Datsun","CUP_C_Datsun_Plain","CUP_C_Datsun_4seat","CUP_C_Datsun_Tubeframe","CUP_C_Ural_Civ_01","CUP_C_Ural_Open_Civ_01","CUP_C_Ural_Civ_03","CUP_C_Ural_Open_Civ_03","CUP_C_Ural_Civ_02"]] call ALIVE_fnc_hashSet;
  18. [ALIVE_factionDefaultTransport, "caf_ag_me_civ", ["CUP_C_UAZ_Open_TK_CIV","CUP_C_LR_Transport_CTK","CUP_C_UAZ_Unarmed_TK_CIV","CUP_C_Skoda_White_CIV","CUP_C_Skoda_Red_CIV","CUP_C_Skoda_Blue_CIV","CUP_C_Skoda_Green_CIV","CUP_C_Datsun","CUP_C_Datsun_Plain","CUP_C_Datsun_4seat","CUP_C_Datsun_Tubeframe","CUP_C_Ural_Civ_01","CUP_C_Ural_Open_Civ_01","CUP_C_Ural_Civ_03","CUP_C_Ural_Open_Civ_03","CUP_C_Ural_Civ_02","CUP_C_Ural_Open_Civ_02"]] call ALIVE_fnc_hashSet;
  19.  
  20. /*
  21. * ALiVE Compositions
  22. */
  23.  
  24.  
  25. ALIVE_compositions = [] call ALIVE_fnc_hashCreate;
  26. [ALIVE_compositions, "HQ", ["smallHQOutpost1","largeMedicalHQ1"]] call ALIVE_fnc_hashSet;
  27. [ALIVE_compositions, "camps", ["smallConvoyCamp1","smallMilitaryCamp1","smallMortarCamp1","mediumAACamp1","mediumMilitaryCamp1","mediumMGCamp1","mediumMGCamp2","mediumMGCamp3"]] call ALIVE_fnc_hashSet;
  28. [ALIVE_compositions, "communications", ["communicationCamp1"]] call ALIVE_fnc_hashSet;
  29. [ALIVE_compositions, "fuel", ["smallFuelStation1","mediumFuelSilo1"]] call ALIVE_fnc_hashSet;
  30. [ALIVE_compositions, "constructionSupplies", ["bagFenceKit1","hbarrierKit1","hbarrierKit2","hbarrierWallKit1","hbarrierWallKit2"]] call ALIVE_fnc_hashSet;
  31. [ALIVE_compositions, "crashsites", ["smallOspreyCrashsite1","smallAH99Crashsite1","mediumc192Crash1"]] call ALIVE_fnc_hashSet;
  32. [ALIVE_compositions, "objectives", ["largeMilitaryOutpost1","mediumMilitaryOutpost1","hugeSupplyOutpost1","hugeMilitaryOutpost1"]] call ALIVE_fnc_hashSet;
  33. [ALIVE_compositions, "other", ["smallATNest1","smallMGNest1","smallRoadblock1","largeGarbageCamp1"]] call ALIVE_fnc_hashSet;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement