Advertisement
Guest User

szar

a guest
May 29th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. waitUntil {!isNull player};
  2.  
  3. _unit = __this select 0;
  4.  
  5. comment "Exported from Arsenal by realee";
  6.  
  7. comment "Remove existing items";
  8. removeAllWeapons _unit;
  9. removeAllItems _unit;
  10. removeAllAssignedItems _unit;
  11. removeUniform _unit;
  12. removeVest _unit;
  13. removeBackpack _unit;
  14. removeHeadgear _unit;
  15. removeGoggles _unit;
  16.  
  17. comment "Add containers";
  18. _unit forceAddUniform "LOP_U_IT_Fatigue_01";
  19. for "_i" from 1 to 4 do {_unit addItemToUniform "rhs_30Rnd_762x39mm";};
  20. _unit addVest "V_TacVest_brn";
  21. for "_i" from 1 to 2 do {_unit addItemToVest "AGM_Bandage";};
  22. _unit addItemToVest "AGM_Morphine";
  23. for "_i" from 1 to 2 do {_unit addItemToVest "rhs_30Rnd_762x39mm";};
  24. _unit addItemToVest "SmokeShell";
  25. _unit addBackpack "B_AssaultPack_ocamo";
  26. _unit addItemToBackpack "rhsusf_100Rnd_762x51";
  27. _unit addItemToBackpack "HandGrenade";
  28. _unit addHeadgear "LOP_H_Shemag_IT";
  29.  
  30. comment "Add weapons";
  31. _unit addWeapon "rhs_weap_akms";
  32.  
  33. comment "Add items";
  34. _unit linkItem "ItemMap";
  35. _unit linkItem "ItemCompass";
  36. _unit linkItem "ItemWatch";
  37. _unit linkItem "tf_anprc152_3";
  38.  
  39. comment "Set identity";
  40. _unit setFace "PersianHead_A3_02";
  41. _unit setSpeaker "AGM_NoVoice";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement