Advertisement
Guest User

PMC Loadout

a guest
Nov 19th, 2019
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1.  
  2. comment "Exported from Arsenal by Cmdt. Akatsuki Ruisu";
  3.  
  4. comment "[!] UNIT MUST BE LOCAL [!]";
  5. if (!local this) exitWith {};
  6.  
  7. comment "Remove existing items";
  8. removeAllWeapons this;
  9. removeAllItems this;
  10. removeAllAssignedItems this;
  11. removeUniform this;
  12. removeVest this;
  13. removeBackpack this;
  14. removeHeadgear this;
  15. removeGoggles this;
  16.  
  17. comment "Add weapons";
  18. this addWeapon "SMA_M4afg_Tan_SM";
  19. this addPrimaryWeaponItem "SMA_30Rnd_556x45_M855A1";
  20. this addWeapon "CUP_hgun_Colt1911";
  21. this addHandgunItem "CUP_7Rnd_45ACP_1911";
  22.  
  23. comment "Add containers";
  24. this forceAddUniform "LOP_U_PMC_red_hi";
  25. this addVest "VSM_FAPC_Operator_OGA";
  26.  
  27. comment "Add items to containers";
  28. for "_i" from 1 to 4 do {this addItemToUniform "ACE_fieldDressing";};
  29. for "_i" from 1 to 2 do {this addItemToUniform "ACE_morphine";};
  30. this addItemToUniform "CUP_7Rnd_45ACP_1911";
  31. for "_i" from 1 to 3 do {this addItemToUniform "SMA_30Rnd_556x45_M855A1";};
  32. this addItemToVest "SmokeShell";
  33. this addItemToVest "HandGrenade";
  34. this addHeadgear "CUP_H_OpsCore_Tan";
  35. this addGoggles "VSM_FaceMask_black";
  36.  
  37. comment "Add items";
  38. this linkItem "ItemMap";
  39. this linkItem "ItemCompass";
  40. this linkItem "ItemWatch";
  41. this linkItem "TFAR_anprc152";
  42.  
  43. comment "Set identity";
  44. [this,"WhiteHead_29","ace_novoice"] call BIS_fnc_setIdentity;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement