Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. comment "Remove existing items";
  2. removeAllWeapons this;
  3. removeAllItems this;
  4. removeAllAssignedItems this;
  5. removeUniform this;
  6. removeVest this;
  7. removeBackpack this;
  8. removeHeadgear this;
  9. removeGoggles this;
  10.  
  11. comment "Add containers";
  12. this forceAddUniform "u_gang_gign";
  13. for "_i" from 1 to 3 do {this addItemToUniform "R3F_20Rnd_762x51_HK417";};
  14. this addVest "v_gang_gign";
  15. for "_i" from 1 to 3 do {this addItemToVest "CUP_15Rnd_9x19_M9";};
  16. this addHeadgear "g_beret_gign";
  17. this addGoggles "PU_shemagh_GryBLK";
  18.  
  19. comment "Add weapons";
  20. this addWeapon "R3F_HK417L";
  21. this addPrimaryWeaponItem "R3F_SILENCIEUX_HK417";
  22. this addPrimaryWeaponItem "R3F_EOTECH";
  23. this addWeapon "CUP_hgun_M9";
  24.  
  25. comment "Add items";
  26. this linkItem "ItemMap";
  27. this linkItem "ItemCompass";
  28. this linkItem "Itemwatch";
  29. this linkItem "tf_anprc152_1";
  30. this linkItem "ItemGPS";
  31.  
  32. comment "Set iden
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement