Advertisement
Guest User

Untitled

a guest
Jul 12th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.70 KB | None | 0 0
  1. span class="re5"> class ProgressBarCapture {
  2.     idd = -1;
  3.     name = "ProgressBarCapture";
  4.     duration = 503;
  5.     onLoad = "uiNamespace setVariable ['ProgressBarCapture',_this select 0]";
  6.     controls[] = {
  7.         ProgressBarC,
  8.         TextProgress
  9.     };
  10.  
  11.  
  12.     class ProgressBarC: Life_RscProgress
  13.     {
  14.         idc = 22515;
  15.         colorBar[] = {0,0.8,0,1};
  16.         x = safeZoneX + safeZoneW * 0.29375;
  17.         y = safeZoneY + safeZoneH * 0.02888889;
  18.         w = safeZoneW * 0.4125;
  19.         h = safeZoneH * 0.03111112;
  20.     };
  21.     class TextProgress: Life_RscText
  22.     {
  23.         idc = 154165;
  24.         text = "Capture du drapeau"; //--- ToDo: Localize;
  25.         x = safeZoneX + safeZoneW * 0.42375;
  26.         y = safeZoneY + safeZoneH * 0.03444445;
  27.         w = safeZoneW * 0.1625;
  28.         h = safeZoneH * 0.02;
  29.     };
  30.  
  31.  
  32. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement