marksman.sqf 757 B

1234567891011121314151617181920212223242526
  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_BandollierB_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 "20Rnd_762x51_Mag";};
  15. _unit addHeadgear "H_Booniehat_oli";
  16. _unit addGoggles "G_Balaclava_lowprofile";
  17. _unit addWeapon "srifle_DMR_03_woodland_F";
  18. _unit addPrimaryWeaponItem "optic_Hamr";
  19. _unit addPrimaryWeaponItem "bipod_03_F_oli";
  20. _unit addWeapon "hgun_P07_F";
  21. _unit linkItem "ItemMap";
  22. _unit linkItem "ItemCompass";