Advertisement
BenFromTTG

description.ext

Apr 28th, 2020
524
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.83 KB | None | 0 0
  1. class RscTitles
  2. {
  3.     class staminup
  4.     {    
  5.         idd = 12;
  6.         duration = 1e+011;
  7.         fadein = 0;
  8.         fadeout = 0;
  9.         class controls
  10.         {
  11.             class staminupControl
  12.             {    
  13.                 idc = 13;
  14.                 type = 0;
  15.                 style = 2096;
  16.                 x = 0.00781248 * safezoneW + safezoneX;
  17.                 y = 0.832031 * safezoneH + safezoneY;
  18.                 w = 0.0546875 * safezoneW;
  19.                 h = 0.0683594 * safezoneH;
  20.                 font = "EtelkaNarrowMediumPro";
  21.                 sizeEx = 0.1;
  22.                 colorBackground[] = {-1,-1,-1,1};
  23.                 colorText[] = {1,1,1,1};
  24.                 text = "img\staminupicon.paa";
  25.                 shadow = 1;
  26.  
  27.             };  
  28.         }; 
  29.     };
  30.    
  31.     class deadshot
  32.     {    
  33.         idd = 14;
  34.         duration = 1e+011;
  35.         fadein = 0;
  36.         fadeout = 0;
  37.         class controls
  38.         {
  39.             class deadshotControl
  40.             {    
  41.                 idc = 15;
  42.                 type = 0;
  43.                 style = 2096;
  44.                 x = 0.0703125 * safezoneW + safezoneX;
  45.                 y = 0.832031 * safezoneH + safezoneY;
  46.                 w = 0.046875 * safezoneW;
  47.                 h = 0.0683594 * safezoneH;
  48.                 font = "EtelkaNarrowMediumPro";
  49.                 sizeEx = 0.1;
  50.                 colorBackground[] = {-1,-1,-1,1};
  51.                 colorText[] = {1,1,1,1};
  52.                 text = "img\deadshoticon.paa";
  53.                 shadow = 1;
  54.  
  55.             };  
  56.         }; 
  57.     };
  58.    
  59.     class doubletap
  60.     {    
  61.         idd = 16;
  62.         duration = 1e+011;
  63.         fadein = 0;
  64.         fadeout = 0;
  65.         class controls
  66.         {
  67.             class deadshotControl
  68.             {    
  69.                 idc = 17;
  70.                 type = 0;
  71.                 style = 2096;
  72.                 x = 0.125 * safezoneW + safezoneX;
  73.                 y = 0.832031 * safezoneH + safezoneY;
  74.                 w = 0.046875 * safezoneW;
  75.                 h = 0.0683594 * safezoneH;
  76.                 font = "EtelkaNarrowMediumPro";
  77.                 sizeEx = 0.1;
  78.                 colorBackground[] = {-1,-1,-1,1};
  79.                 colorText[] = {1,1,1,1};
  80.                 text = "img\doubletapicon.paa";
  81.                 shadow = 1;
  82.  
  83.             };  
  84.         }; 
  85.     };
  86.    
  87.     class wave
  88.     {
  89.         idd = 18;
  90.         duration = 1e+011;
  91.         fadein = 2;
  92.         fadeout = 2;
  93.         onLoad = "uiNamespace setVariable ['wave', _this select 0]";
  94.         onUnload = "uiNamespace setVariable ['wave', displayNull]";
  95.         class controls{waveControl};
  96.  
  97.         class waveControl: RscStructuredText
  98.             {
  99.                 idc = 19;  
  100.                 style = ST_LEFT;          
  101.                 colorBackground[] = { 1, 1, 1, 0 };
  102.                 x = 0.005 * safezoneW + safezoneX;
  103.                 y = 0.923767 * safezoneH + safezoneY;
  104.                 w = 0.185625 * safezoneW;
  105.                 h = 0.0723505 * safezoneH;
  106.                 size = 1;
  107.                 text = "";
  108.                 class Attributes
  109.                 {
  110.                     font = "EtelkaNarrowMediumPro";
  111.                     color = "#ff2d00";
  112.                     align = "left";
  113.                     valign = "middle";
  114.                     shadow = true;
  115.                     shadowColor = "#ff0000";
  116.                     size = "1";
  117.                 };
  118.             };
  119.         };
  120.    
  121.     class Default
  122.         {
  123.             idd = -1;
  124.             fadein = 0;
  125.             fadeout = 0;
  126.             duration = 0;
  127.         };
  128. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement