Advertisement
Guest User

Untitled

a guest
May 26th, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. _unit = _this select 0;
  2.  
  3. removeAllWeapons _unit;
  4. removeAllItems _unit;
  5. removeAllAssignedItems _unit;
  6. removeUniform _unit;
  7. removeVest _unit;
  8. removeBackpack _unit;
  9. removeHeadgear _unit;
  10. removeGoggles _unit;
  11.  
  12. _unit forceAddUniform "TRYK_U_B_3CD_Ranger_BDU";
  13. for "_i" from 1 to 2 do {_unit addItemToUniform "ACE_fieldDressing";};
  14. for "_i" from 1 to 2 do {_unit addItemToUniform "ACE_packingBandage";};
  15. _unit addItemToUniform "ACE_tourniquet";
  16. for "_i" from 1 to 2 do {_unit addItemToUniform "ACE_morphine";};
  17. for "_i" from 1 to 2 do {_unit addItemToUniform "ACE_quikclot";};
  18. _unit addItemToUniform "ACE_personalAidKit";
  19. for "_i" from 1 to 2 do {_unit addItemToUniform "ACE_elasticBandage";};
  20. for "_i" from 1 to 2 do {_unit addItemToUniform "ACE_CableTie";};
  21. for "_i" from 1 to 3 do {_unit addItemToUniform "RH_15Rnd_9x19_M9";};
  22. _unit addVest "TRYK_V_ArmorVest_Ranger";
  23. _unit addItemToVest "AV_anpvs7";
  24. _unit addItemToVest "ACE_EarPlugs";
  25. for "_i" from 1 to 8 do {_unit addItemToVest "RH_30Rnd_556x45_M855A1";};
  26. for "_i" from 1 to 2 do {_unit addItemToVest "rhs_mag_m67";};
  27. for "_i" from 1 to 2 do {_unit addItemToVest "rhs_mag_an_m8hc";};
  28. _unit addHeadgear "LOP_H_PASGTHelmet_cover_RACS";
  29. _unit addGoggles "TRYK_Shemagh_G";
  30.  
  31. _unit addWeapon "RH_M16A2";
  32. _unit addWeapon "RH_m9";
  33. _unit addWeapon "Binocular";
  34.  
  35. _unit linkItem "ItemMap";
  36. _unit linkItem "ItemCompass";
  37. _unit linkItem "ItemWatch";
  38. _unit linkItem "tf_anprc148jem_4";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement