Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1.  
  2. comment "Exported from Arsenal by Rick372";
  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 "gtr_weap_L119A2_CBN_grip3";
  19. this addPrimaryWeaponItem "hlc_muzzle_SF3P_556";
  20. this addPrimaryWeaponItem "CUP_acc_ANPEQ_15_Black_Top";
  21. this addPrimaryWeaponItem "rhsusf_acc_ACOG_RMR";
  22. this addPrimaryWeaponItem "rhs_mag_30Rnd_556x45_Mk318_Stanag";
  23. this addPrimaryWeaponItem "rhsusf_acc_rvg_blk";
  24. this addWeapon "hlc_pistol_P226R_Elite";
  25. this addHandgunItem "hlc_acc_DBALPL_FL";
  26. this addHandgunItem "hlc_15Rnd_9x19_B_P226";
  27.  
  28. comment "Add containers";
  29. this forceAddUniform "UK3CB_BAF_U_Smock_MTP";
  30. this addVest "VSM_CarrierRig_Operator_Multicam";
  31. this addBackpack "KIT_BAG_Alpin_TAN";
  32.  
  33. comment "Add binoculars";
  34. this addWeapon "rhsusf_bino_lerca_1200_tan";
  35.  
  36. comment "Add items to containers";
  37. for "_i" from 1 to 2 do {this addItemToUniform "30Rnd_556x45_Stanag";};
  38. this addItemToVest "ItemcTabHCam";
  39. this addItemToVest "ACE_Flashlight_MX991";
  40. for "_i" from 1 to 2 do {this addItemToVest "ACE_Can_Franta";};
  41. for "_i" from 1 to 4 do {this addItemToVest "ACE_bodyBag";};
  42. for "_i" from 1 to 9 do {this addItemToVest "rhs_mag_20Rnd_556x45_M196_Stanag_Tracer_Red";};
  43. this addItemToBackpack "ACE_EarPlugs";
  44. for "_i" from 1 to 2 do {this addItemToBackpack "ACE_epinephrine";};
  45. for "_i" from 1 to 3 do {this addItemToBackpack "ACE_elasticBandage";};
  46. for "_i" from 1 to 4 do {this addItemToBackpack "ACE_quikclot";};
  47. for "_i" from 1 to 5 do {this addItemToBackpack "ACE_fieldDressing";};
  48. for "_i" from 1 to 5 do {this addItemToBackpack "ACE_morphine";};
  49. for "_i" from 1 to 4 do {this addItemToBackpack "ACE_MRE_CreamChickenSoup";};
  50. this addItemToBackpack "ACE_rope15";
  51. for "_i" from 1 to 2 do {this addItemToBackpack "ACE_tourniquet";};
  52. for "_i" from 1 to 3 do {this addItemToBackpack "ACE_WaterBottle";};
  53. this addItemToBackpack "ACE_wirecutter";
  54. for "_i" from 1 to 4 do {this addItemToBackpack "hlc_15Rnd_9x19_B_P226";};
  55. this addItemToBackpack "rhs_mag_20Rnd_556x45_M196_Stanag_Tracer_Red";
  56. this addHeadgear "VSM_OPS_2_multicam";
  57. this addGoggles "UK3CB_BAF_G_Tactical_Clear";
  58.  
  59. comment "Add items";
  60. this linkItem "ItemMap";
  61. this linkItem "ItemCompass";
  62. this linkItem "ItemWatch";
  63. this linkItem "TFAR_anprc152";
  64. this linkItem "ItemGPS";
  65. this linkItem "usp_l3_pvs31_low";
  66.  
  67. comment "Set identity";
  68. [this,"WhiteHead_20","ace_novoice"] call BIS_fnc_setIdentity;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement