Advertisement
comradezoned

USMCMed Template

Feb 9th, 2020
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 3.14 KB | None | 0 0
  1.  
  2. comment "Exported from Arsenal by ComradeZoned";
  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 "rhs_weap_svds";
  19. this addPrimaryWeaponItem "rhs_acc_pso1m21";
  20. this addPrimaryWeaponItem "rhs_10Rnd_762x54mmR_7N1";
  21. this addWeapon "rhs_weap_pp2000_folded";
  22. this addHandgunItem "rhsusf_acc_premier_anpvs27";
  23. this addHandgunItem "rhs_mag_9x19mm_7n21_20";
  24.  
  25. comment "Add containers";
  26. this forceAddUniform "rhs_uniform_FROG01_d";
  27. this addVest "rhsusf_spc_corpsman";
  28. this addBackpack "VSM_AOR1_Backpack_Kitbag";
  29.  
  30. comment "Add binoculars";
  31. this addWeapon "Binocular";
  32.  
  33. comment "Add items to containers";
  34. this addItemToUniform "Chemlight_green";
  35. this addItemToUniform "MiniGrenade";
  36. for "_i" from 1 to 5 do {this addItemToUniform "rhs_10Rnd_762x54mmR_7N14";};
  37. for "_i" from 1 to 2 do {this addItemToVest "30Rnd_65x39_caseless_mag_Tracer";};
  38. for "_i" from 1 to 2 do {this addItemToVest "HandGrenade";};
  39. for "_i" from 1 to 2 do {this addItemToVest "B_IR_Grenade";};
  40. this addItemToVest "SmokeShell";
  41. this addItemToVest "SmokeShellGreen";
  42. this addItemToVest "SmokeShellBlue";
  43. this addItemToVest "SmokeShellOrange";
  44. this addItemToVest "Chemlight_green";
  45. for "_i" from 1 to 7 do {this addItemToVest "rhs_10Rnd_762x54mmR_7N14";};
  46. for "_i" from 1 to 5 do {this addItemToBackpack "ACE_bloodIV_500";};
  47. for "_i" from 1 to 5 do {this addItemToBackpack "ACE_splint";};
  48. for "_i" from 1 to 5 do {this addItemToBackpack "ACE_salineIV_500";};
  49. for "_i" from 1 to 5 do {this addItemToBackpack "ACE_plasmaIV_500";};
  50. for "_i" from 1 to 4 do {this addItemToBackpack "ACE_morphine";};
  51. for "_i" from 1 to 5 do {this addItemToBackpack "ACE_quikclot";};
  52. for "_i" from 1 to 3 do {this addItemToBackpack "ACE_fieldDressing";};
  53. for "_i" from 1 to 3 do {this addItemToBackpack "ACE_adenosine";};
  54. for "_i" from 1 to 5 do {this addItemToBackpack "ACE_personalAidKit";};
  55. for "_i" from 1 to 5 do {this addItemToBackpack "ACE_epinephrine";};
  56. for "_i" from 1 to 3 do {this addItemToBackpack "ACE_packingBandage";};
  57. for "_i" from 1 to 3 do {this addItemToBackpack "ACE_elasticBandage";};
  58. for "_i" from 1 to 2 do {this addItemToBackpack "ACE_surgicalKit";};
  59. for "_i" from 1 to 2 do {this addItemToBackpack "ACE_MRE_BeefStew";};
  60. for "_i" from 1 to 2 do {this addItemToBackpack "ACE_Can_RedGull";};
  61. for "_i" from 1 to 3 do {this addItemToBackpack "ACE_Banana";};
  62. for "_i" from 1 to 3 do {this addItemToBackpack "ACE_tourniquet";};
  63. for "_i" from 1 to 2 do {this addItemToBackpack "ACE_EarPlugs";};
  64. this addItemToBackpack "MRAWS_HE_F";
  65. for "_i" from 1 to 2 do {this addItemToBackpack "rhs_mag_9x19mm_7n31_44";};
  66. this addHeadgear "VSM_Mich2000_2_aor1";
  67.  
  68. comment "Add items";
  69. this linkItem "ItemMap";
  70. this linkItem "ItemCompass";
  71. this linkItem "ItemWatch";
  72. this linkItem "TFAR_anprc152_20";
  73. this linkItem "ItemGPS";
  74. this linkItem "ACE_NVG_Wide";
  75.  
  76. comment "Set identity";
  77. [this,"WhiteHead_06","male11eng"] call BIS_fnc_setIdentity;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement