Advertisement
ChronixTM

Untitled

Jul 5th, 2017
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. comment "Exported from Arsenal by Lennart Schwarz";
  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 "U_B_CombatUniform_mcam";
  15. for "_i" from 1 to 5 do {this addItemToUniform "FirstAidKit";};
  16. this addVest "V_PlateCarrierGL_mtp";
  17. for "_i" from 1 to 14 do {this addItemToVest "30Rnd_762x39_Mag_F";};
  18. this addBackpack "B_Carryall_mcamo";
  19. for "_i" from 1 to 30 do {this addItemToBackpack "1Rnd_HE_Grenade_shell";};
  20. for "_i" from 1 to 18 do {this addItemToBackpack "30Rnd_762x39_Mag_F";};
  21. for "_i" from 1 to 5 do {this addItemToBackpack "1Rnd_SmokeRed_Grenade_shell";};
  22. this addHeadgear "H_Booniehat_mcamo";
  23.  
  24. comment "Add weapons";
  25. this addWeapon "arifle_AK12_GL_F";
  26. this addPrimaryWeaponItem "optic_AMS";
  27. this addWeapon "Rangefinder";
  28.  
  29. comment "Add items";
  30. this linkItem "ItemMap";
  31. this linkItem "ItemCompass";
  32. this linkItem "ItemWatch";
  33. this linkItem "ItemRadio";
  34. this linkItem "ItemGPS";
  35.  
  36. comment "Set identity";
  37. this setFace "WhiteHead_16";
  38. this setSpeaker "male10eng";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement