Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 2.17 KB | None | 0 0
  1. comment "Exported from Arsenal by Jockel";
  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 "milgp_u_g3_field_set_rolled_aor2";
  15. this addItemToUniform "ACE_MapTools";
  16. for "_i" from 1 to 2 do {this addItemToUniform "ACE_EarPlugs";};
  17. this addItemToUniform "ACE_IR_Strobe_Item";
  18. this addItemToUniform "ACE_Flashlight_MX991";
  19. for "_i" from 1 to 2 do {this addItemToUniform "ACE_epinephrine";};
  20. for "_i" from 1 to 20 do {this addItemToUniform "ACE_elasticBandage";};
  21. for "_i" from 1 to 4 do {this addItemToUniform "ACE_CableTie";};
  22. for "_i" from 1 to 2 do {this addItemToUniform "ACE_morphine";};
  23. for "_i" from 1 to 4 do {this addItemToUniform "ACE_tourniquet";};
  24. this addItemToUniform "ACE_EntrenchingTool";
  25. this addVest "milgp_v_jpc_assaulter_belt_rgr";
  26. for "_i" from 1 to 3 do {this addItemToVest "murshun_cigs_cigpack";};
  27. for "_i" from 1 to 3 do {this addItemToVest "murshun_cigs_lighter";};
  28. for "_i" from 1 to 2 do {this addItemToVest "Chemlight_red";};
  29. for "_i" from 1 to 2 do {this addItemToVest "SmokeShellRed";};
  30. for "_i" from 1 to 2 do {this addItemToVest "rhs_mag_m18_green";};
  31. for "_i" from 1 to 2 do {this addItemToVest "SmokeShellBlue";};
  32. for "_i" from 1 to 2 do {this addItemToVest "HandGrenade";};
  33. for "_i" from 1 to 4 do {this addItemToVest "SmokeShell";};
  34. for "_i" from 1 to 8 do {this addItemToVest "rhs_mag_30Rnd_556x45_M855A1_Stanag_Tracer_Red";};
  35. this addBackpack "milgp_bp_hydration_rgr";
  36. this addItemToBackpack "ACE_salineIV_500";
  37. this addHeadgear "milgp_h_opscore_04_RGR_hexagon";
  38. this addGoggles "rhs_googles_black";
  39.  
  40. comment "Add weapons";
  41. this addWeapon "rhs_weap_m4a1_carryhandle_pmag";
  42. this addWeapon "rhsusf_weap_m1911a1";
  43. this addWeapon "ACE_VectorDay";
  44.  
  45. comment "Add items";
  46. this linkItem "ItemMap";
  47. this linkItem "ItemCompass";
  48. this linkItem "ItemWatch";
  49. this linkItem "tf_anprc152_1";
  50. this linkItem "ItemAndroid";
  51. this linkItem "rhsusf_ANPVS_15";
  52.  
  53. comment "Set identity";
  54. this setFace "GreekHead_A3_08";
  55. this setSpeaker "ace_novoice";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement