Advertisement
NoBody0100

Untitled

Feb 8th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 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 "U_B_PilotCoveralls";
  13. for "_i" from 1 to 4 do {this addItemToUniform "ACE_fieldDressing";};
  14. this addItemToUniform "ACE_morphine";
  15. this addItemToUniform "ItemcTabHCam";
  16. this addItemToUniform "ACE_MapTools";
  17. for "_i" from 1 to 3 do {this addItemToUniform "ACE_packingBandage";};
  18. for "_i" from 1 to 3 do {this addItemToUniform "ACE_elasticBandage";};
  19. this addItemToUniform "ACE_tourniquet";
  20. for "_i" from 1 to 3 do {this addItemToUniform "ACE_quikclot";};
  21. this addItemToUniform "ACE_IR_Strobe_Item";
  22. this addItemToUniform "ACE_Flashlight_XL50";
  23. this addItemToUniform "ACE_EarPlugs";
  24. this addVest "V_USAF_Vest";
  25. for "_i" from 1 to 8 do {this addItemToVest "BWA3_40Rnd_46x30_MP7";};
  26. for "_i" from 1 to 5 do {this addItemToVest "SmokeShellRed";};
  27. for "_i" from 1 to 5 do {this addItemToVest "SmokeShellGreen";};
  28. this addBackpack "tf_rt1523g";
  29. this addItemToBackpack "CUP_NVG_PVS7";
  30. this addItemToBackpack "BWA3_Beret_HFlieger";
  31. this addHeadgear "JS_S_FA18X_PilotHelmet";
  32. this addGoggles "G_Aviator";
  33.  
  34. comment "Add weapons";
  35. this addWeapon "BWA3_MP7";
  36. this addHandgunItem "BWA3_muzzle_snds_MP7";
  37. this addHandgunItem "CUP_acc_ANPEQ_2";
  38. this addHandgunItem "BWA3_optic_EOTech";
  39. this addWeapon "Binocular";
  40.  
  41. comment "Add items";
  42. this linkItem "ItemMap";
  43. this linkItem "ItemCompass";
  44. this linkItem "Itemwatch";
  45. this linkItem "tf_anprc152_2";
  46. this linkItem "ItemcTab";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement