Advertisement
PatchWorkExe

Cadet

Jun 22nd, 2018
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. comment "Exported from Arsenal by CL-2424 "Patches"";
  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 "SWOP_Clonetrooper_P1_F_CombatUniform";
  15. this addItemToUniform "ACE_EntrenchingTool";
  16. this addItemToUniform "ACE_Flashlight_XL50";
  17. this addVest "SWOP_Clonetrooper_P1_armor";
  18. for "_i" from 1 to 20 do {this addItemToVest "ACE_packingBandage";};
  19. for "_i" from 1 to 20 do {this addItemToVest "ACE_morphine";};
  20. for "_i" from 1 to 20 do {this addItemToVest "ACE_epinephrine";};
  21. for "_i" from 1 to 20 do {this addItemToVest "ACE_elasticBandage";};
  22. this addBackpack "SWOP_B_CloneBackpack";
  23. for "_i" from 1 to 10 do {this addItemToBackpack "SWOP_DC15ABlasterRifle_Mag";};
  24. for "_i" from 1 to 10 do {this addItemToBackpack "SWOP_DC17Pistol_Mag";};
  25. for "_i" from 1 to 5 do {this addItemToBackpack "DCStun_Mag";};
  26. for "_i" from 1 to 5 do {this addItemToBackpack "SWOP_termDet_Gm";};
  27. for "_i" from 1 to 5 do {this addItemToBackpack "SWOP_SCAR_EMP_GrenadeGM";};
  28. this addItemToBackpack "SWOP_bacta_G";
  29. for "_i" from 1 to 5 do {this addItemToBackpack "SmokeShell";};
  30. for "_i" from 1 to 5 do {this addItemToBackpack "SWOP_DC15ABlasterRifle_Full_Mag";};
  31. this addHeadgear "SWOP_Clonetrooper_helmet_p1";
  32.  
  33. comment "Add weapons";
  34. this addWeapon "SWOP_DC15ABlasterRifle";
  35. this addWeapon "SWOP_DC17Pistol";
  36. this addWeapon "ElectroBinocularsG_F";
  37.  
  38. comment "Add items";
  39. this linkItem "ItemMap";
  40. this linkItem "ItemCompass";
  41. this linkItem "tf_microdagr";
  42. this linkItem "tf_anprc152_2";
  43. this linkItem "ItemGPS";
  44. this linkItem "OPTRE_NVG";
  45.  
  46. comment "Set identity";
  47. this setFace "WhiteHead_09";
  48. this setSpeaker "male01eng";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement