Advertisement
Guest User

mafiaki

a guest
Apr 21st, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 1.01 KB | None | 0 0
  1. comment "Exported from Arsenal by mafiaki";
  2.  
  3. comment "Remove existing items";
  4. removeAllWeapons this;
  5. removeAllItems this;
  6. removeAllAssignedItems this;
  7. removeUniform this;
  8. removeVest this;
  9. removeBackpack this;
  10. removeHeadgear this;
  11. removeGoggles this;
  12.  
  13. comment "Add containers";
  14. this forceAddUniform "TRYK_U_pad_hood_Cl_blk";
  15. this addBackpack "CUP_B_USPack_Black";
  16. for "_i" from 1 to 7 do {this addItemToBackpack "CUP_30Rnd_762x39_AK47_M";};
  17. for "_i" from 1 to 4 do {this addItemToBackpack "RH_7Rnd_50_AE";};
  18. this addHeadgear "Masque_archNemesis";
  19. this addGoggles "G_Bandanna_blk";
  20.  
  21. comment "Add weapons";
  22. this addWeapon "CUP_arifle_AK47";
  23. this addPrimaryWeaponItem "CUP_muzzle_Bizon";
  24. this addPrimaryWeaponItem "CUP_optic_Kobra";
  25. this addWeapon "RH_Deagleg";
  26. this addWeapon "Binocular";
  27.  
  28. comment "Add items";
  29. this linkItem "ItemMap";
  30. this linkItem "ItemCompass";
  31. this linkItem "Itemwatch";
  32. this linkItem "ItemRadio";
  33.  
  34. comment "Set identity";
  35. this setFace "WhiteHead_20";
  36. this setSpeaker "male01gre";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement