Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. comment "Exported from Arsenal by Frankie";
  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_LIB_US_Corp";
  15. this addVest "V_LIB_US_Vest_Garand";
  16. for "_i" from 1 to 15 do {this addItemToVest "LIB_8Rnd_762x63";};
  17. for "_i" from 1 to 2 do {this addItemToVest "LIB_US_Mk_2";};
  18. this addBackpack "B_LIB_US_Backpack";
  19. for "_i" from 1 to 10 do {this addItemToBackpack "FirstAidKit";};
  20. this addHeadgear "H_LIB_US_Helmet_Net_os";
  21. this addGoggles "G_LIB_Watch1";
  22.  
  23. comment "Add weapons";
  24. this addWeapon "LIB_M1_Garand";
  25. this addWeapon "Binocular";
  26.  
  27. comment "Add items";
  28. this linkItem "ItemMap";
  29. this linkItem "ItemCompass";
  30. this linkItem "ItemWatch";
  31.  
  32. comment "Set identity";
  33. this setFace "LIB_bykov_IF";
  34. this setSpeaker "male03eng";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement