at.sqf 836 B

1234567891011121314151617181920212223242526272829
  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_rgr";
  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_762x39mm";};
  15. _unit addBackpack "rhs_rpg_empty";
  16. for "_i" from 1 to 4 do {_unit addItemToBackpack "rhs_rpg7_PG7VL_mag";};
  17. _unit addHeadgear "H_Cap_grn";
  18. _unit addGoggles "G_Bandanna_aviator";
  19. _unit addWeapon "rhs_weap_akm";
  20. _unit addWeapon "rhs_weap_rpg7";
  21. _unit addSecondaryWeaponItem "rhs_acc_pgo7v";
  22. _unit addWeapon "hgun_P07_F";
  23. _unit linkItem "ItemMap";
  24. _unit linkItem "ItemCompass";