Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. comment "Exported from Arsenal by Mario Flanders";
  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_I_GhillieSuit";
  15. for "_i" from 1 to 3 do {this addItemToUniform "16Rnd_9x21_Mag";};
  16. for "_i" from 1 to 3 do {this addItemToUniform "30Rnd_65x39_caseless_mag";};
  17. this addVest "V_HarnessO_gry";
  18. this addBackpack "B_Carryall_khk";
  19. this addItemToBackpack "Medikit";
  20. for "_i" from 1 to 5 do {this addItemToBackpack "16Rnd_9x21_Mag";};
  21. for "_i" from 1 to 15 do {this addItemToBackpack "30Rnd_65x39_caseless_mag";};
  22. this addHeadgear "H_MilCap_dgtl";
  23.  
  24. comment "Add weapons";
  25. this addWeapon "arifle_MX_Black_F";
  26. this addPrimaryWeaponItem "optic_DMS";
  27. this addWeapon "hgun_Rook40_F";
  28. this addWeapon "Rangefinder";
  29.  
  30. comment "Add items";
  31. this linkItem "ItemMap";
  32. this linkItem "ItemCompass";
  33. this linkItem "ItemWatch";
  34. this linkItem "ItemGPS";
  35. this linkItem "NVGoggles_INDEP";
  36.  
  37. comment "Set identity";
  38. this setFace "WhiteHead_20";
  39. this setSpeaker "male04gre";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement