Advertisement
NoBody0100

Untitled

Feb 8th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. comment "Remove existing items";
  2. removeAllWeapons this;
  3. removeAllItems this;
  4. removeAllAssignedItems this;
  5. removeUniform this;
  6. removeVest this;
  7. removeBackpack this;
  8. removeHeadgear this;
  9. removeGoggles this;
  10.  
  11. comment "Add containers";
  12. this forceAddUniform "BWA3_Uniform_Helipilot";
  13. this addItemToUniform "ItemcTabHCam";
  14. this addItemToUniform "ACE_MapTools";
  15. this addItemToUniform "ACE_morphine";
  16. this addItemToUniform "ACE_tourniquet";
  17. this addItemToUniform "ACE_EarPlugs";
  18. this addItemToUniform "ACE_microDAGR";
  19. this addItemToUniform "ACE_IR_Strobe_Item";
  20. for "_i" from 1 to 4 do {this addItemToUniform "ACE_fieldDressing";};
  21. for "_i" from 1 to 3 do {this addItemToUniform "ACE_packingBandage";};
  22. for "_i" from 1 to 3 do {this addItemToUniform "ACE_elasticBandage";};
  23. for "_i" from 1 to 3 do {this addItemToUniform "ACE_quikclot";};
  24. this addItemToUniform "ACE_Flashlight_XL50";
  25. this addVest "V_USAF_Vest";
  26. for "_i" from 1 to 5 do {this addItemToVest "SmokeShellRed";};
  27. for "_i" from 1 to 5 do {this addItemToVest "SmokeShellGreen";};
  28. for "_i" from 1 to 6 do {this addItemToVest "CUP_30Rnd_9x19_MP5";};
  29. this addBackpack "tf_rt1523g";
  30. this addItemToBackpack "BWA3_Knighthelm";
  31. this addHeadgear "BWA3_Beret_HFlieger";
  32. this addGoggles "G_Aviator";
  33.  
  34. comment "Add weapons";
  35. this addWeapon "CUP_smg_MP5SD6";
  36. this addWeapon "Binocular";
  37.  
  38. comment "Add items";
  39. this linkItem "ItemMap";
  40. this linkItem "ItemCompass";
  41. this linkItem "Itemwatch";
  42. this linkItem "tf_anprc152_2";
  43. this linkItem "ItemcTab";
  44. this linkItem "CUP_NVG_PVS7";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement