Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1.  
  2. comment "Exported from Arsenal by Sgt. Howie";
  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 "OPTRE_MA5C";
  19. this addPrimaryWeaponItem "muzzle_snds_65_TI_blk_F";
  20. this addPrimaryWeaponItem "OPTRE_MA5C_SmartLink";
  21. this addPrimaryWeaponItem "OPTRE_32Rnd_762x51_Mag";
  22. this addWeapon "potato_vz99_carryWeapon";
  23. this addWeapon "OPTRE_M6C";
  24. this addHandgunItem "OPTRE_M6C_compensator";
  25. this addHandgunItem "OPTRE_M6C_Scope";
  26. this addHandgunItem "OPTRE_12Rnd_127x40_Mag";
  27.  
  28. comment "Add containers";
  29. this forceAddUniform "OPCAN_Reach_ODST";
  30. this addVest "OPCAN_Vest_ODSTS_Blue";
  31. this addBackpack "OPTRE_ILCS_Rucksack_Heavy";
  32.  
  33. comment "Add binoculars";
  34. this addWeapon "ACE_VectorDay";
  35.  
  36. comment "Add items to containers";
  37. for "_i" from 1 to 5 do {this addItemToUniform "ACE_morphine";};
  38. this addItemToUniform "ACE_bloodIV_250";
  39. for "_i" from 1 to 4 do {this addItemToUniform "ACE_CableTie";};
  40. for "_i" from 1 to 5 do {this addItemToUniform "AMP_Door_Wedge";};
  41. this addItemToUniform "ACE_DefusalKit";
  42. this addItemToUniform "ACE_Fortify";
  43. for "_i" from 1 to 5 do {this addItemToUniform "ACE_epinephrine";};
  44. this addItemToUniform "ACE_EntrenchingTool";
  45. for "_i" from 1 to 2 do {this addItemToUniform "ACE_IR_Strobe_Item";};
  46. this addItemToUniform "ACE_Clacker";
  47. this addItemToUniform "ACE_Flashlight_XL50";
  48. this addItemToUniform "ACE_MapTools";
  49. this addItemToUniform "MineDetector";
  50. this addItemToUniform "ACE_surgicalKit";
  51. for "_i" from 1 to 4 do {this addItemToUniform "adv_aceSplint_splint";};
  52. this addItemToUniform "ACE_EarPlugs";
  53. for "_i" from 1 to 10 do {this addItemToUniform "OPTRE_Biofoam";};
  54. for "_i" from 1 to 4 do {this addItemToUniform "ACE_tourniquet";};
  55. for "_i" from 1 to 5 do {this addItemToUniform "OPTRE_12Rnd_127x40_Mag";};
  56. for "_i" from 1 to 2 do {this addItemToVest "ACE_M84";};
  57. for "_i" from 1 to 10 do {this addItemToVest "OPTRE_32Rnd_762x51_Mag";};
  58. for "_i" from 1 to 2 do {this addItemToBackpack "potato_vz99_HE";};
  59. for "_i" from 1 to 2 do {this addItemToBackpack "potato_vz99_HE_multi";};
  60. this addHeadgear "OPCAN_CH252D_Blue";
  61.  
  62. comment "Add items";
  63. this linkItem "ItemMap";
  64. this linkItem "ItemCompass";
  65. this linkItem "tf_microdagr";
  66. this linkItem "tf_anprc152_2";
  67. this linkItem "ItemGPS";
  68. this linkItem "OPTRE_NVG";
  69.  
  70. comment "Set identity";
  71. [this,"WhiteHead_02","ace_novoice"] call BIS_fnc_setIdentity;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement