Advertisement
Guest User

Untitled

a guest
Aug 10th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. comment "Exported from Arsenal by Jones";
  2.  
  3. comment "Remove existing items";
  4. removeAllWeapons this;
  5. removeAllItems this;
  6. removeAllAssignedItems this;
  7. removeUniform this;
  8. removeVest this;
  9. removeBackpack this;
  10. removeHeadgear this;
  11. removeGoggles this;
  12.  
  13. comment "Add containers";
  14. this forceAddUniform "rhs_uniform_flora";
  15. this addVest "V_TacVest_camo";
  16. this addBackpack "B_Carryall_oucamo";
  17. for "_i" from 1 to 7 do {this addItemToBackpack "ACE_Banana";};
  18. this addItemToBackpack "ACE_Cellphone";
  19. this addItemToBackpack "ACE_DeadManSwitch";
  20. for "_i" from 1 to 3 do {this addItemToBackpack "rhs_100Rnd_762x54mmR";};
  21. this addItemToBackpack "rhs_rpg7_PG7V_mag";
  22. for "_i" from 1 to 2 do {this addItemToBackpack "ClaymoreDirectionalMine_Remote_Mag";};
  23. for "_i" from 1 to 2 do {this addItemToBackpack "APERSMine_Range_Mag";};
  24. this addItemToBackpack "APERSTripMine_Wire_Mag";
  25. this addHeadgear "rhs_6b28_green";
  26. this addGoggles "G_Shades_Green";
  27.  
  28. comment "Add weapons";
  29. this addWeapon "rhs_weap_pkm";
  30. this addWeapon "rhs_weap_rpg7";
  31. this addWeapon "Binocular";
  32.  
  33. comment "Add items";
  34. this linkItem "ItemMap";
  35. this linkItem "ItemCompass";
  36. this linkItem "ItemWatch";
  37. this linkItem "TFAR_fadak";
  38.  
  39. comment "Set identity";
  40. this setFace "Default";
  41. this setSpeaker "male01eng";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement