Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. comment "Exported from Arsenal by Chris Kyle";
  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_O_T_Soldier_F";
  15. for "_i" from 1 to 3 do {this addItemToUniform "FirstAidKit";};
  16. this addItemToUniform "30Rnd_65x39_caseless_green";
  17. this addVest "V_PlateCarrierSpec_rgr";
  18. this addItemToVest "FirstAidKit";
  19. for "_i" from 1 to 4 do {this addItemToVest "30Rnd_65x39_caseless_green";};
  20. this addBackpack "B_ViperHarness_ghex_F";
  21. this addItemToBackpack "FirstAidKit";
  22. for "_i" from 1 to 5 do {this addItemToBackpack "30Rnd_65x39_caseless_green";};
  23. this addHeadgear "H_HelmetLeaderO_ghex_F";
  24. this addGoggles "G_Balaclava_TI_G_tna_F";
  25.  
  26. comment "Add weapons";
  27. this addWeapon "arifle_ARX_blk_F";
  28. this addPrimaryWeaponItem "muzzle_snds_65_TI_blk_F";
  29. this addPrimaryWeaponItem "optic_Hamr";
  30. this addPrimaryWeaponItem "bipod_03_F_blk";
  31. this addWeapon "Rangefinder";
  32.  
  33. comment "Add items";
  34. this linkItem "ItemMap";
  35. this linkItem "ItemCompass";
  36. this linkItem "ItemWatch";
  37. this linkItem "ItemGPS";
  38. this linkItem "O_NVGoggles_ghex_F";
  39.  
  40. comment "Set identity";
  41. this setFace "Custom";
  42. this setSpeaker "male03eng";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement