Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. comment "Exported from Arsenal by BIGM";
  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_Soldier_F";
  15. this addItemToUniform "FirstAidKit";
  16. this addItemToUniform "SmokeShell";
  17. this addItemToUniform "Chemlight_blue";
  18. this addItemToUniform "20Rnd_762x51_Mag";
  19. this addVest "V_PlateCarrierSpec_rgr";
  20. for "_i" from 1 to 4 do {this addItemToVest "FirstAidKit";};
  21. this addItemToVest "SmokeShellGreen";
  22. this addItemToVest "Chemlight_blue";
  23. for "_i" from 1 to 5 do {this addItemToVest "20Rnd_762x51_Mag";};
  24. this addBackpack "B_ViperHarness_blk_F";
  25. for "_i" from 1 to 6 do {this addItemToBackpack "FirstAidKit";};
  26. for "_i" from 1 to 19 do {this addItemToBackpack "20Rnd_762x51_Mag";};
  27. this addHeadgear "H_HelmetSpecB";
  28. this addGoggles "G_Balaclava_TI_G_tna_F";
  29.  
  30. comment "Add weapons";
  31. this addWeapon "srifle_DMR_03_woodland_F";
  32. this addPrimaryWeaponItem "muzzle_snds_B_khk_F";
  33. this addPrimaryWeaponItem "acc_pointer_IR";
  34. this addPrimaryWeaponItem "optic_LRPS_tna_F";
  35. this addPrimaryWeaponItem "bipod_01_F_khk";
  36.  
  37. comment "Add items";
  38. this linkItem "ItemMap";
  39. this linkItem "ItemCompass";
  40. this linkItem "ItemWatch";
  41. this linkItem "ItemRadio";
  42. this linkItem "NVGoggles_INDEP";
  43.  
  44. comment "Set identity";
  45. this setFace "AfricanHead_02";
  46. this setSpeaker "male01gre";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement