Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. // tito
  2. // version 1.0
  3. // tito mod
  4.  
  5. class CfgPatches
  6. {
  7. class tito_mod
  8. {
  9. units[] =
  10. {
  11. "lion",
  12. };
  13. weapons[] =
  14. {
  15. "tito_mod_t_shirt1",
  16. };
  17. requiredVersion = 0.1;
  18. requiredAddons[] = {"A3_Weapons_F"};
  19. };
  20. };
  21.  
  22. class CfgWeapons
  23. {
  24. class UniformItem;
  25. class U_C_Poloshirt_blue;
  26. class tito_mod_t_shirt1: U_C_Poloshirt_blue
  27. {
  28. author = "tito_mod[tito]";
  29. displayName ="lion";
  30. hiddenSelectionsTextures[] = {"\tito\data\tete_de_lion.paa"};
  31. class ItemInfo: UniformItem
  32. {
  33. uniformModel = "-";
  34. uniformClass = "lion";
  35. containerClass = "Supply40";
  36. mass = 20;
  37. };
  38. };
  39. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement