Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1.  
  2. comment "Exported from Arsenal by парсек";
  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 "ARMST_ACR_tan";
  19. this addPrimaryWeaponItem "FHQ_optic_ACOG";
  20. this addPrimaryWeaponItem "ARMST_STANAG2310_20s_LR";
  21.  
  22. comment "Add containers";
  23. this forceAddUniform "elite_loner2";
  24. this addVest "Armst_armed_seva_stalk5";
  25. this addBackpack "armst_tark_backpack_3";
  26.  
  27. comment "Add items to containers";
  28. for "_i" from 1 to 2 do {this addItemToVest "armst_item_medkit2";};
  29. this addItemToVest "armst_item_medkit";
  30. this addItemToVest "AGM_Morphine";
  31. for "_i" from 1 to 2 do {this addItemToVest "ARMST_handwarmer";};
  32. for "_i" from 1 to 2 do {this addItemToVest "ARMST_kosyak";};
  33. for "_i" from 1 to 2 do {this addItemToVest "AGM_Epipen";};
  34. this addItemToVest "Armst_item_can";
  35. this addItemToVest "Armst_item_bred";
  36. this addItemToVest "AGM_Bloodbag";
  37. for "_i" from 1 to 9 do {this addItemToVest "ARMST_batteries";};
  38. this addItemToVest "ARMST_tetrad";
  39. this addItemToVest "ARMST_ART_cristall";
  40. this addItemToVest "ARMST_ART_tapeworm";
  41. this addItemToVest "ARMST_ART_moonlight";
  42. this addItemToBackpack "armst_item_medkit2";
  43. for "_i" from 1 to 2 do {this addItemToBackpack "ARMST_bumaga";};
  44. for "_i" from 1 to 3 do {this addItemToBackpack "Armst_item_kolbasa";};
  45. for "_i" from 1 to 3 do {this addItemToBackpack "ARMST_handwarmer";};
  46. for "_i" from 1 to 4 do {this addItemToBackpack "Armst_item_waterbottle";};
  47. for "_i" from 1 to 4 do {this addItemToBackpack "armst_spicki";};
  48. this addItemToBackpack "ARMST_mp3";
  49. for "_i" from 1 to 10 do {this addItemToBackpack "ARMST_batteries";};
  50. this addItemToBackpack "Armst_item_can";
  51. this addItemToBackpack "armst_det_svarog";
  52. this addItemToBackpack "DETECTOR_DBG06M";
  53. for "_i" from 1 to 7 do {this addItemToBackpack "ARMST_STANAG2310_20s_LR";};
  54. for "_i" from 1 to 2 do {this addItemToBackpack "DAPSTALKERS_BOLTS";};
  55. this addHeadgear "armst_gluhar";
  56. this addGoggles "armst_gluhar_visor";
  57.  
  58. comment "Add items";
  59. this linkItem "ItemMap";
  60. this linkItem "ItemCompass";
  61. this linkItem "ItemWatch";
  62. this linkItem "tf_anprc148jem";
  63. this linkItem "armst_item_pda";
  64. this linkItem "armst_cloak_1";
  65.  
  66. comment "Set identity";
  67. [this,"WhiteHead_12","male04gre"] call BIS_fnc_setIdentity;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement