Advertisement
CheechMarin

Reifenmähn

Jul 19th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 2.11 KB | None | 0 0
  1.  
  2. comment "Exported from Arsenal by Iron Blader";
  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 containers";
  18. this forceAddUniform "UK3CB_BAF_U_Smock_DPMW_OLI";
  19. FOR "_i" FROM 1 TO 5 do {this addItemToUniform "30Rnd_556x45_Stanag";};
  20. this addVest "UK3CB_BAF_V_Osprey_DPMW4";
  21. this addItemToVest "GB_Facepaint_Wdl";
  22. FOR "_i" FROM 1 TO 10 do {this addItemToVest "ACE_fieldDressing";};
  23. FOR "_i" FROM 1 TO 2 do {this addItemToVest "ACE_morphine";};
  24. this addItemToVest "ACE_Flashlight_MX991";
  25. this addItemToVest "ACE_IR_Strobe_Item";
  26. FOR "_i" FROM 1 TO 5 do {this addItemToVest "ACE_CableTie";};
  27. this addItemToVest "ACE_MapTools";
  28. this addItemToVest "ACE_microDAGR";
  29. this addItemToVest "ACE_EarPlugs";
  30. this addItemToVest "ACE_tourniquet";
  31. this addItemToVest "ACE_NVG_Gen1";
  32. this addItemToVest "SMA_eotechG33_3XDOWN";
  33. this addItemToVest "Chemlight_green";
  34. FOR "_i" FROM 1 TO 2 do {this addItemToVest "MiniGrenade";};
  35. FOR "_i" FROM 1 TO 2 do {this addItemToVest "SmokeShell";};
  36. FOR "_i" FROM 1 TO 4 do {this addItemToVest "30Rnd_556x45_Stanag";};
  37. FOR "_i" FROM 1 TO 3 do {this addItemToVest "11Rnd_45ACP_Mag";};
  38. this addBackpack "UK3CB_BAF_B_Bergen_OLI_Rifleman_A";
  39. this addHeadgear "SOR_Wool_Comtec_Blk_H";
  40. this addGoggles "G_Bandanna_blk";
  41.  
  42. comment "Add weapons";
  43. this addWeapon "arifle_SPAR_01_blk_F";
  44. this addPrimaryWeaponItem "ACE_muzzle_mzls_L";
  45. this addPrimaryWeaponItem "SMA_SFFL_BLK";
  46. this addPrimaryWeaponItem "SMA_ELCAN_SPECTER_4z";
  47. this addPrimaryWeaponItem "bipod_01_F_blk";
  48. this addWeapon "hgun_Pistol_heavy_01_F";
  49. this addHandgunItem "muzzle_snds_acp";
  50. this addHandgunItem "acc_flashlight_pistol";
  51. this addWeapon "Binocular";
  52.  
  53. comment "Add items";
  54. this linkItem "ItemMap";
  55. this linkItem "ItemCompass";
  56. this linkItem "TFAR_microdagr";
  57. this linkItem "TFAR_anprc152";
  58.  
  59. comment "Set identity";
  60. [this,"GreekHead_A3_14","ace_novoice"] CALL BIS_fnc_setIdentity;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement