Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 0 0
  1. comment "Exported from Arsenal by Alex";
  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_CombatUniform_mcam";
  15. this addItemToUniform "ACE_MapTools";
  16. for "_i" from 1 to 4 do {this addItemToUniform "SmokeShell";};
  17. this addItemToUniform "SmokeShellYellow";
  18. this addItemToUniform "Chemlight_red";
  19. this addVest "V_Chestrig_khk";
  20. for "_i" from 1 to 5 do {this addItemToVest "ACE_fieldDressing";};
  21. for "_i" from 1 to 2 do {this addItemToVest "ACE_elasticBandage";};
  22. for "_i" from 1 to 2 do {this addItemToVest "ACE_quikclot";};
  23. for "_i" from 1 to 2 do {this addItemToVest "ACE_atropine";};
  24. for "_i" from 1 to 2 do {this addItemToVest "ACE_adenosine";};
  25. for "_i" from 1 to 2 do {this addItemToVest "ACE_EarPlugs";};
  26. for "_i" from 1 to 2 do {this addItemToVest "ACE_epinephrine";};
  27. this addItemToVest "ACE_MapTools";
  28. for "_i" from 1 to 2 do {this addItemToVest "ACE_morphine";};
  29. for "_i" from 1 to 2 do {this addItemToVest "ACE_packingBandage";};
  30. for "_i" from 1 to 3 do {this addItemToVest "SmokeShell";};
  31. this addItemToVest "MiniGrenade";
  32. for "_i" from 1 to 8 do {this addItemToVest "30Rnd_65x39_caseless_mag_Tracer";};
  33. for "_i" from 1 to 2 do {this addItemToVest "30Rnd_65x39_caseless_mag";};
  34. this addBackpack "B_AssaultPack_cbr";
  35. for "_i" from 1 to 8 do {this addItemToBackpack "ACE_epinephrine";};
  36. for "_i" from 1 to 2 do {this addItemToBackpack "ACE_EarPlugs";};
  37. for "_i" from 1 to 10 do {this addItemToBackpack "ACE_bloodIV_250";};
  38. for "_i" from 1 to 7 do {this addItemToBackpack "ACE_bloodIV_500";};
  39. for "_i" from 1 to 20 do {this addItemToBackpack "ACE_morphine";};
  40. for "_i" from 1 to 3 do {this addItemToBackpack "ACE_bloodIV";};
  41. this addItemToBackpack "ACE_personalAidKit";
  42. for "_i" from 1 to 30 do {this addItemToBackpack "ACE_fieldDressing";};
  43. this addHeadgear "H_HelmetB_sand";
  44. this addGoggles "G_Aviator";
  45.  
  46. comment "Add weapons";
  47. this addWeapon "arifle_MXC_Black_F";
  48. this addPrimaryWeaponItem "acc_pointer_IR";
  49. this addPrimaryWeaponItem "ACE_optic_Hamr_PIP";
  50. this addWeapon "hgun_ACPC2_F";
  51. this addWeapon "Binocular";
  52.  
  53. comment "Add items";
  54. this linkItem "ItemMap";
  55. this linkItem "ItemCompass";
  56. this linkItem "tf_microdagr";
  57. this linkItem "tf_anprc152_4";
  58. this linkItem "ItemGPS";
  59. this linkItem "NVGoggles_OPFOR";
  60.  
  61. comment "Set identity";
  62. this setFace "Default";
  63. this setSpeaker "ACE_NoVoice";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement