Advertisement
Moricky

Arma 3 Arsenal - AAF Spartan Demo Specialist

Jul 1st, 2014
593
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. // Exported from Arsenal by KarelMoricky
  2. _unit = player;
  3.  
  4. // Remove existing items
  5. removeAllWeapons _unit;
  6. removeAllItems _unit;
  7. removeAllAssignedItems _unit;
  8. removeUniform _unit;
  9. removeVest _unit;
  10. removeBackpack _unit;
  11. removeHeadgear _unit;
  12. removeGoggles _unit;
  13.  
  14. // Add containers
  15. _unit forceAddUniform "U_I_CombatUniform";
  16. for "_i" from 1 to 4 do {_unit addItemToUniform "30Rnd_556x45_Stanag";};
  17. _unit addItemToUniform "16Rnd_9x21_Mag";
  18. _unit addVest "V_PlateCarrierIA2_dgtl";
  19. for "_i" from 1 to 6 do {_unit addItemToVest "HandGrenade";};
  20. for "_i" from 1 to 2 do {_unit addItemToVest "I_IR_Grenade";};
  21. for "_i" from 1 to 2 do {_unit addItemToVest "SmokeShell";};
  22. for "_i" from 1 to 2 do {_unit addItemToVest "Chemlight_green";};
  23. for "_i" from 1 to 3 do {_unit addItemToVest "16Rnd_9x21_Mag";};
  24. _unit addBackpack "B_TacticalPack_oli";
  25. for "_i" from 1 to 2 do {_unit addItemToBackpack "SatchelCharge_Remote_Mag";};
  26. for "_i" from 1 to 4 do {_unit addItemToBackpack "DemoCharge_Remote_Mag";};
  27. _unit addHeadgear "H_Cap_headphones";
  28. _unit addGoggles "G_Bandanna_oli";
  29.  
  30. // Add weapons
  31. _unit addWeapon "arifle_Mk20C_F";
  32. _unit addPrimaryWeaponItem "muzzle_snds_M";
  33. _unit addPrimaryWeaponItem "acc_flashlight";
  34. _unit addPrimaryWeaponItem "optic_MRCO";
  35. _unit addWeapon "hgun_P07_F";
  36.  
  37. // Add items
  38. _unit linkItem "ItemMap";
  39. _unit linkItem "ItemCompass";
  40. _unit linkItem "ItemWatch";
  41. _unit linkItem "ItemRadio";
  42. _unit linkItem "ItemGPS";
  43.  
  44. // Set identity
  45. _unit setFace "GreekHead_A3_03";
  46. _unit setSpeaker "Male03GRE";
  47. [_unit,"TFAegis"] call bis_fnc_setUnitInsignia;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement