Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1.  
  2. comment "Exported from Arsenal by Plikonius";
  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 "rhs_weap_savz58p";
  19. this addPrimaryWeaponItem "rhs_30Rnd_762x39mm_Savz58";
  20. this addWeapon "rhs_weap_pb_6p9";
  21. this addHandgunItem "rhs_acc_6p9_suppressor";
  22. this addHandgunItem "rhs_mag_9x18_8_57N181S";
  23.  
  24. comment "Add containers";
  25. this forceAddUniform "LOP_U_IRAQ_M93_3cd_02";
  26. this addVest "UK3CB_TKA_I_V_6Sh92_Des";
  27.  
  28. comment "Add binoculars";
  29. this addWeapon "rhssaf_zrak_rd7j";
  30.  
  31. comment "Add items to containers";
  32. this addItemToUniform "ACE_epinephrine";
  33. for "_i" from 1 to 2 do {this addItemToUniform "ACE_morphine";};
  34. for "_i" from 1 to 2 do {this addItemToUniform "ACE_tourniquet";};
  35. for "_i" from 1 to 2 do {this addItemToUniform "ACE_CableTie";};
  36. for "_i" from 1 to 2 do {this addItemToUniform "ACE_EarPlugs";};
  37. this addItemToUniform "ACE_personalAidKit";
  38. for "_i" from 1 to 18 do {this addItemToUniform "ACE_packingBandage";};
  39. this addItemToUniform "ACE_MapTools";
  40. for "_i" from 1 to 2 do {this addItemToVest "ACE_CableTie";};
  41. this addItemToVest "ACE_EarPlugs";
  42. this addItemToVest "rhs_weap_rsp30_red";
  43. this addItemToVest "rhs_mag_rgd5";
  44. this addHeadgear "PO_H_M1_TAN";
  45. this addGoggles "G_Aviator";
  46.  
  47. comment "Add items";
  48. this linkItem "ItemMap";
  49. this linkItem "ItemCompass";
  50. this linkItem "ACE_Altimeter";
  51.  
  52. comment "Set identity";
  53. [this,"RussianHead_1","ace_novoice"] call BIS_fnc_setIdentity;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement