Advertisement
Berner23PzD

SCHÜTZE - PZ

Nov 14th, 2019
286
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 Uffz.Berner.23PzD";
  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 "csa38_p38";
  19. this addHandgunItem "csa38_9mm_8xPARA";
  20.  
  21. comment "Add containers";
  22. this forceAddUniform "ff_panzer_u";
  23. this addVest "ff_ger_p38";
  24. this addBackpack "B_LIB_SOV_RA_MGAmmoBag_Empty";
  25.  
  26. comment "Add binoculars";
  27. this addWeapon "fow_i_dienstglas";
  28.  
  29. comment "Add items to containers";
  30. for "_i" from 1 to 2 do {this addItemToUniform "ACE_fieldDressing";};
  31. this addItemToUniform "ACE_tourniquet";
  32. this addItemToUniform "murshun_cigs_lighter";
  33. this addItemToUniform "murshun_cigs_cigpack";
  34. for "_i" from 1 to 2 do {this addItemToVest "ww_grenade_sthgr24_mag";};
  35. for "_i" from 1 to 3 do {this addItemToVest "csa38_9mm_8xPARA";};
  36. this addItemToBackpack "ToolKit";
  37. this addHeadgear "Headgear_csa38_m38cap5";
  38.  
  39. comment "Add items";
  40. this linkItem "ItemMap";
  41. this linkItem "LIB_GER_ItemCompass";
  42. this linkItem "LIB_GER_ItemWatch";
  43.  
  44. comment "Set identity";
  45. [this,"WhiteHead_27","ace_novoice"] call BIS_fnc_setIdentity;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement