Advertisement
NoBody0100

Untitled

Feb 8th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 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_HeliPilotCoveralls";
  13. this addItemToUniform "ACE_MapTools";
  14. this addItemToUniform "ACE_morphine";
  15. this addItemToUniform "ACE_tourniquet";
  16. this addItemToUniform "ACE_EarPlugs";
  17. for "_i" from 1 to 4 do {this addItemToUniform "ACE_fieldDressing";};
  18. for "_i" from 1 to 3 do {this addItemToUniform "ACE_packingBandage";};
  19. for "_i" from 1 to 3 do {this addItemToUniform "ACE_elasticBandage";};
  20. for "_i" from 1 to 3 do {this addItemToUniform "ACE_quikclot";};
  21. this addItemToUniform "ACE_Flashlight_XL50";
  22. this addItemToUniform "ACE_microDAGR";
  23. this addItemToUniform "ACE_IR_Strobe_Item";
  24. this addVest "V_USAF_Vest";
  25. this addItemToVest "ItemcTabHCam";
  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 8 do {this addItemToVest "CUP_30Rnd_9x19_MP5";};
  29. this addBackpack "tf_rt1523g_rhs";
  30. this addItemToBackpack "H_PilotHelmetHeli_B";
  31. this addItemToBackpack "CUP_NVG_PVS7";
  32. this addHeadgear "H_Beret_02";
  33. this addGoggles "CUP_FR_NeckScarf2";
  34.  
  35. comment "Add weapons";
  36. this addWeapon "CUP_smg_MP5SD6";
  37. this addWeapon "Binocular";
  38.  
  39. comment "Add items";
  40. this linkItem "ItemMap";
  41. this linkItem "ItemCompass";
  42. this linkItem "tf_microdagr";
  43. this linkItem "tf_anprc152_3";
  44. this linkItem "ItemcTab";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement