loadout_cr.sqf 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ///////////////////////////////////////////////////////////////
  2. // 501st Legion - Loadout Script
  3. // File: loadout_cr.sqf
  4. // By: CC Cruisie
  5. // Creation Date: 01/15/2018
  6. //
  7. // Change Log:
  8. // 1-16-2018: Comment Out therma+
  9. // 2-27-2018: Fixed the Helmet
  10. //
  11. ///////////////////////////////////////////////////////////////
  12. ///////////// /\/ ( ) T E S ///////////////////////////////////
  13. // Place this code in the init.sqf.
  14. // nameofbox addAction ["Clone Recruit Loadout", "scripts\loadouts\loadout_cr.sqf"];
  15. //
  16. // Place this code in the init field of selected unit:
  17. // this disableai "move"; nop = [this] execVM "scripts\loadouts\loadout_cr.sqf";
  18. ///////////////////////////////////////////////////////////////
  19. //_unit = _this select 0;
  20. if (!local _unit) exitWith {};
  21. // removeAllWeapons _unit;
  22. // removeAllItems _unit;
  23. // removeAllAssignedItems _unit;
  24. // removeUniform _unit;
  25. // removeVest _unit;
  26. // removeBackpack _unit;
  27. // removeHeadgear _unit;
  28. // removeGoggles _unit;
  29. // _unit forceAddUniform "SWOP_Clonetrooper_F_CombatUniform";
  30. // _unit addVest "SWOP_Clonetrooper_armor";
  31. // _unit addHeadgear "SWOP_Clonetcadet_helmet";
  32. // _unit addGoggles "SWOP_Clones_HUD";
  33. //comment "Exported from Arsenal by CC Cruisie";
  34. removeAllWeapons player;
  35. removeAllItems player;
  36. removeAllAssignedItems player;
  37. removeUniform player;
  38. removeVest player;
  39. removeBackpack player;
  40. removeHeadgear player;
  41. removeGoggles player;
  42. //comment "Add containers";
  43. player forceAddUniform "SWOP_Clonetrooper_F_CombatUniform";
  44. //player addItemToUniform "ACE_fieldDressing";
  45. //player addItemToUniform "ACE_packingBandage";
  46. //player addItemToUniform "ACE_morphine";
  47. //player addItemToUniform "ACE_tourniquet";
  48. //for "_i" from 1 to 2 do {player addItemToUniform "SWOP_termDet_G";};
  49. player addVest "SWOP_Clonetrooper_armor";
  50. player addHeadgear "SWOP_Clonetrooper_helmet";
  51. player addGoggles "SWOP_Clones_HUD";
  52. //comment "Add weapons";
  53. //comment "Add items";
  54. player linkItem "ItemMap";
  55. player linkItem "ItemCompass";
  56. player linkItem "tf_microdagr";
  57. player linkItem "tf_anprc152_4";
  58. player linkItem "ItemGPS";
  59. //comment "Set identity";
  60. //player setFace "TanoanHead_A3_02";
  61. //player setSpeaker "ace_novoice";