Guest User

ff7_ALiVE_staticData.sqf

a guest
Sep 12th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 3.01 KB | None | 0 0
  1. /* ----------------------------------------------------------------------
  2.  
  3.     Usage : In ALiVE_Require module init.
  4.  
  5.     _null = [] execVM "ff7_ALiVE_staticData.sqf";
  6.  
  7. ---------------------------------------------------------------------- */
  8.  
  9. waitUntil {!isNil "ALiVE_STATIC_DATA_LOADED"};
  10.  
  11.  
  12. // ---------- CQB unit blacklist
  13.  
  14. ALiVE_MIL_CQB_CUSTOM_UNITBLACKLIST =
  15. [
  16.     "C_journalist_F",
  17.     "C_scientist_F",
  18.     "C_man_w_worker_F",
  19.     "C_Nikos",
  20.     "C_Nikos_aged",
  21.     "C_Orestes",
  22.     "C_man_hunter_1_F",
  23.  
  24.     "O_Survivor_F",
  25.     "O_Soldier_unarmed_F",
  26.     "O_Story_CEO_F",
  27.     "O_Story_Colonel_F",
  28.  
  29.     "O_T_Diver_F",
  30.     "O_T_Diver_Exp_F",
  31.     "O_T_Diver_TL_F",
  32.     "O_T_Helicrew_F",
  33.     "O_T_Helipilot_F",
  34.     "O_T_Crew_F",
  35.  
  36.     "O_G_Survivor_F",
  37.     "O_G_Soldier_unarmed_F",
  38.  
  39.     "O_V_Soldier_Viper_hex_F",
  40.     "O_V_Soldier_Viper_F",
  41.  
  42.     "I_Survivor_F",
  43.     "I_Soldier_unarmed_F",
  44.  
  45.     "I_G_Survivor_F",
  46.     "I_G_Soldier_unarmed_F",
  47.  
  48.     "I_C_Helipilot_F",
  49.     "I_C_Pilot_F"
  50. ];
  51.  
  52.  
  53. // ---------- Unit placemant blacklist
  54.  
  55. ALiVE_PLACEMENT_CUSTOM_UNITBLACKLIST =
  56. [
  57.  
  58.     "C_journalist_F",
  59.     "C_scientist_F",
  60.     "C_man_w_worker_F",
  61.     "C_Nikos",
  62.     "C_Nikos_aged",
  63.     "C_Orestes",
  64.     "C_man_hunter_1_F",
  65.  
  66.     "O_diver_F",
  67.     "O_diver_exp_F",
  68.     "O_diver_TL_F",
  69.     "O_Survivor_F",
  70.     "O_Story_CEO_F",
  71.     "O_Story_Colonel_F",
  72.     "O_Soldier_unarmed_F",
  73.     "O_helicrew_F",
  74.     "O_helipilot_F",
  75.     "O_Pilot_F",
  76.     "O_crew_F",
  77.  
  78.     "O_T_Diver_F",
  79.     "O_T_Diver_Exp_F",
  80.     "O_T_Diver_TL_F",
  81.     "O_T_Helicrew_F",
  82.     "O_T_Helipilot_F",
  83.     "O_T_Pilot_F",
  84.     "O_T_Crew_F",
  85.  
  86.     "O_G_Survivor_F",
  87.     "O_G_Soldier_unarmed_F",
  88.  
  89.     "O_V_Soldier_Viper_hex_F",
  90.     "O_V_Soldier_Viper_F",
  91.  
  92.     "I_diver_F",
  93.     "I_diver_exp_F",
  94.     "I_diver_TL_F",
  95.     "I_Survivor_F",
  96.     "I_Story_Colonel_F",
  97.     "I_Soldier_unarmed_F",
  98.     "I_pilot_F",
  99.     "I_helipilot_F",
  100.     "I_helicrew_F",
  101.     "I_crew_F",
  102.  
  103.     "I_G_Survivor_F",
  104.     "I_G_Soldier_unarmed_F",
  105.  
  106.     "I_C_Soldier_Camo_F"
  107. ];
  108.  
  109.  
  110. // ---------- Vehicle placemant blacklist
  111.  
  112. ALiVE_PLACEMENT_CUSTOM_VEHICLEBLACKLIST =
  113. [
  114.     "ivory_m3_testgrid",
  115.     "ivory_m3_gts_csathdfw",
  116.     "ivory_m3",
  117.     "ivory_m3_candyred",
  118.     "ivory_m3_crispyblue",
  119.     "ivory_m3_icywhite",
  120.     "ivory_m3_gts",
  121.  
  122.     "ivory_lp560",
  123.     "ivory_lp560_blueruthless",
  124.     "ivory_lp560_carbon",
  125.     "ivory_lp560_csathdfw",
  126.     "ivory_lp560_galaxy",
  127.     "ivory_lp560_italia",
  128.     "ivory_lp560_redsavage",
  129.     "ivory_lp560_testgrid",
  130.     "ivory_gt500_testgrid",
  131.     "ivory_gt500_blackgray",
  132.     "ivory_gt500_grayblack",
  133.     "ivory_gt500_redwhite",
  134.     "ivory_gt500",
  135.     "ivory_gt500_whiteblue",
  136.  
  137.     "ivory_wrx_testgrid",
  138.     "ivory_wrx_cop_slicktop",
  139.     "ivory_wrx_blackgray",
  140.     "ivory_wrx_candy",
  141.     "ivory_wrx_csathdfw",
  142.     "ivory_wrx_med_ems",
  143.     "ivory_wrx_graystripe",
  144.     "ivory_wrx_redblack",
  145.     "ivory_wrx_civ_utility",
  146.     "ivory_wrx_cop_marked",
  147.     "ivory_wrx_cop_unmarked",
  148.     "ivory_wrx",
  149.     "ivory_wrx_white"
  150. ];
  151.  
  152.  
  153. // ---------- Group placemant blacklist
  154.  
  155. ALiVE_PLACEMENT_CUSTOM_GROUPBLACKLIST =
  156. [
  157.     "OIA_SPGPlatoon_Scorcher",
  158.     "OIA_TankPlatoon",
  159.     "OIA_TankPlatoon_AA",
  160.  
  161.     "O_T_SPGPlatoon_Scorcher",
  162.     "O_T_TankPlatoon",
  163.     "O_T_TankPlatoon_AA",
  164.  
  165.     "HAF_TankPlatoon",
  166.     "HAF_TankPlatoon_AA"
  167. ];
Add Comment
Please, Sign In to add comment