Advertisement
OneShot1984

Weapon Texture Config

Jul 20th, 2023 (edited)
1,331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.82 KB | None | 0 0
  1. class CfgPatches
  2. {
  3.     class  ChangeMe
  4.     {
  5.         units[]={};
  6.         weapons[]={};
  7.         requiredVersion=0.1;
  8.         requiredAddons[]=
  9.         {
  10.             "DZ_Data",
  11.             "DZ_Weapons_Firearms"
  12.         };
  13.     };
  14. };
  15. class CfgMods
  16. {
  17.    class ChangeMe
  18.    {
  19.         dir = "ChangeMe";                              
  20.         picture = "";  
  21.         action = "";   
  22.         hideName = 0;  
  23.         hidePicture = 1;       
  24.         name = "ChangeMe"; 
  25.         author = "One Shot";                                   
  26.         authorID = ""; 
  27.         version = "1.5";
  28.         extra = 0;  
  29.         type = "mod";
  30.     };
  31. };     
  32. class CfgWeapons
  33. {
  34. class Mosin9130;
  35. class BoltActionRifle_Base;  
  36. class ChangeMe:  Mosin9130
  37.     {
  38.         scope = 2;
  39.         displayName = "Display Name";
  40.         descriptionShort = "Description ";
  41.         hiddenSelectionsTextures[] =
  42.         {
  43.             "File path for the paa file",
  44.             "File path for the paa file",
  45.             "File path for the paa file"                   
  46.         };
  47. itemSize[]={10,2};
  48.       };
  49. };
  50.  
  51.  
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement