Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. comment "Exported from Arsenal by SoulMasterOpus";
  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 "U_B_CTRG_1";
  15. this addItemToUniform "FirstAidKit";
  16. for "_i" from 1 to 2 do {this addItemToUniform "SmokeShell";};
  17. this addItemToUniform "SmokeShellGreen";
  18. this addVest "V_Chestrig_rgr";
  19. for "_i" from 1 to 3 do {this addItemToVest "30Rnd_65x39_caseless_mag";};
  20. this addItemToVest "30Rnd_65x39_caseless_mag_Tracer";
  21. this addItemToVest "MiniGrenade";
  22. this addBackpack "B_AssaultPack_rgr";
  23. this addItemToBackpack "Medikit";
  24. for "_i" from 1 to 4 do {this addItemToBackpack "FirstAidKit";};
  25. this addItemToBackpack "NVGoggles";
  26. this addHeadgear "H_Booniehat_khk_hs";
  27. this addGoggles "G_Bandanna_oli";
  28.  
  29. comment "Add weapons";
  30. this addWeapon "arifle_MX_F";
  31. this addPrimaryWeaponItem "muzzle_snds_H";
  32. this addPrimaryWeaponItem "acc_pointer_IR";
  33. this addPrimaryWeaponItem "optic_Hamr";
  34. this addWeapon "Binocular";
  35.  
  36. comment "Add items";
  37. this linkItem "ItemMap";
  38. this linkItem "ItemCompass";
  39. this linkItem "ItemWatch";
  40. this linkItem "ItemRadio";
  41. this linkItem "ItemGPS";
  42.  
  43. comment "Set identity";
  44. this setFace "GreekHead_A3_07";
  45. this setSpeaker "male06eng";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement