rifleman.sqf 701 B

12345678910111213141516171819202122232425
  1. _unit = _this select 0;
  2. removeAllWeapons _unit;
  3. removeAllItems _unit;
  4. removeAllAssignedItems _unit;
  5. removeVest _unit;
  6. removeBackpack _unit;
  7. removeHeadgear _unit;
  8. removeGoggles _unit;
  9. sleep 0.5;
  10. _unit addVest "V_Chestrig_oli";
  11. _unit addItemToVest "FirstAidKit";
  12. for "_i" from 1 to 2 do {_unit addItemToVest "MiniGrenade";};
  13. for "_i" from 1 to 2 do {_unit addItemToVest "16Rnd_9x21_Mag";};
  14. for "_i" from 1 to 6 do {_unit addItemToVest "rhs_30Rnd_545x39_AK";};
  15. _unit addHeadgear "H_Cap_blk";
  16. _unit addGoggles "G_Balaclava_oli";
  17. _unit addWeapon "rhs_weap_ak74m_camo_npz";
  18. _unit addPrimaryWeaponItem "optic_ACO_grn";
  19. _unit addWeapon "hgun_P07_F";
  20. _unit linkItem "ItemMap";
  21. _unit linkItem "ItemCompass";