Advertisement
Guest User

MTP Loadout Commander

a guest
Nov 19th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1.  
  2. comment "Exported from Arsenal by Cmdt. Akatsuki Ruisu";
  3.  
  4. comment "[!] UNIT MUST BE LOCAL [!]";
  5. if (!local this) exitWith {};
  6.  
  7. comment "Remove existing items";
  8. removeAllWeapons this;
  9. removeAllItems this;
  10. removeAllAssignedItems this;
  11. removeUniform this;
  12. removeVest this;
  13. removeBackpack this;
  14. removeHeadgear this;
  15. removeGoggles this;
  16.  
  17. comment "Add weapons";
  18. this addWeapon "hlc_rifle_honeybadger";
  19. this addPrimaryWeaponItem "muzzle_HBADGER";
  20. this addPrimaryWeaponItem "rhsusf_acc_su230a_c";
  21. this addPrimaryWeaponItem "29rnd_300BLK_STANAG";
  22. this addWeapon "hlc_pistol_P226R_40";
  23. this addHandgunItem "hlc_acc_DBALPL";
  24. this addHandgunItem "HLC_optic_ATT";
  25. this addHandgunItem "hlc_12Rnd_40SW_B_P226";
  26.  
  27. comment "Add containers";
  28. this forceAddUniform "VSM_Multicam_BDU_Camo";
  29. this addVest "V_Rangemaster_belt";
  30. this addBackpack "unv_mtp_big_rt1523g";
  31.  
  32. comment "Add binoculars";
  33. this addWeapon "Binocular";
  34.  
  35. comment "Add items to containers";
  36. this addItemToUniform "ItemcTabHCam";
  37. for "_i" from 1 to 2 do {this addItemToUniform "ACE_IR_Strobe_Item";};
  38. for "_i" from 1 to 4 do {this addItemToUniform "ACE_morphine";};
  39. this addItemToUniform "ACE_EarPlugs";
  40. for "_i" from 1 to 3 do {this addItemToUniform "ACE_tourniquet";};
  41. for "_i" from 1 to 6 do {this addItemToUniform "ACE_packingBandage";};
  42. for "_i" from 1 to 3 do {this addItemToUniform "29rnd_300BLK_STANAG";};
  43. this addItemToVest "SMA_supp1b_556";
  44. this addItemToVest "ACE_NVG_Gen4";
  45. for "_i" from 1 to 2 do {this addItemToVest "hlc_12Rnd_40SW_B_P226";};
  46. this addHeadgear "H_Beret_02";
  47. this addGoggles "rhs_googles_black";
  48.  
  49. comment "Add items";
  50. this linkItem "ItemMap";
  51. this linkItem "ItemCompass";
  52. this linkItem "TFAR_microdagr";
  53. this linkItem "TFAR_anprc152";
  54. this linkItem "ItemAndroid";
  55.  
  56. comment "Set identity";
  57. [this,"WhiteHead_29","ace_novoice"] call BIS_fnc_setIdentity;
  58. [this,"Spetsnaz223rdDetachment"] call BIS_fnc_setUnitInsignia;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement