Advertisement
Guest User

Untitled

a guest
Mar 6th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. comment "Exported from Arsenal by Killa";
  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_BG_Guerilla1_1";
  15. for "_i" from 1 to 3 do {this addItemToUniform "FirstAidKit";};
  16. this addItemToUniform "Chemlight_blue";
  17. this addItemToUniform "Chemlight_yellow";
  18. this addItemToUniform "Chemlight_red";
  19. this addVest "V_37_EPOCH";
  20. for "_i" from 1 to 3 do {this addItemToVest "11Rnd_45ACP_Mag";};
  21. for "_i" from 1 to 15 do {this addItemToVest "20rnd_762_magazine";};
  22. for "_i" from 1 to 3 do {this addItemToVest "HandGrenade";};
  23. this addItemToVest "APERSTripMine_Wire_Mag";
  24. this addBackpack "B_TacticalPack_rgr";
  25. this addHeadgear "H_74_EPOCH";
  26. this addGoggles "G_Bandanna_aviator";
  27.  
  28. comment "Add weapons";
  29. this addWeapon "sr25_epoch";
  30. this addPrimaryWeaponItem "muzzle_sr25S_epoch";
  31. this addPrimaryWeaponItem "acc_pointer_IR";
  32. this addPrimaryWeaponItem "optic_MRCO";
  33. this addWeapon "hgun_Pistol_heavy_01_F";
  34. this addHandgunItem "muzzle_snds_acp";
  35. this addHandgunItem "optic_MRD";
  36. this addWeapon "Rangefinder";
  37.  
  38. comment "Add items";
  39. this linkItem "ItemMap";
  40. this linkItem "ItemCompass";
  41. this linkItem "ItemWatch";
  42. this linkItem "EpochRadio3";
  43. this linkItem "ItemGPS";
  44. this linkItem "NVG_EPOCH";
  45.  
  46. comment "Set identity";
  47. this setFace "WhiteHead_20";
  48. this setSpeaker "Male02GRE";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement