Advertisement
Guest User

Untitled

a guest
Jun 9th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 2.46 KB | None | 0 0
  1. span class="re5"> class unconscious_screen {
  2.     idd = 4000;
  3.     name = "unconscious_screen";
  4.     movingEnable = 0;
  5.     enableSimulation = 1;
  6.     onLoad="";
  7.    
  8.     class ControlsBackground    {
  9.        
  10.     };
  11.  
  12.     class Controls {
  13.         class askForHelp {
  14.             type = 1;
  15.             idc = 4001;
  16.             x = safeZoneX + safeZoneW * 0.76875;
  17.             y = safeZoneY + safeZoneH * 0.34666667;
  18.             w = safeZoneW * 0.1625;
  19.             h = safeZoneH * 0.06111112;
  20.             style = 0+2;
  21.             text = "Demander de l'aide";
  22.             onButtonClick = "[] call life_fnc_launchHelp;";
  23.             borderSize = 0;
  24.             colorBackground[] = {0.6,0.2,0,1};
  25.             colorBackgroundActive[] = {0.4,0.4,0.4,1};
  26.             colorBackgroundDisabled[] = {0.2,0.2,0.2,1};
  27.             colorBorder[] = {0,0,0,0};
  28.             colorDisabled[] = {0.2,0.2,0.2,1};
  29.             colorFocused[] = {0.2,0.2,0.2,1};
  30.             colorShadow[] = {0,0,0,1};
  31.             colorText[] = {0.7569,0.9765,0.9647,1};
  32.             font = "PuristaSemiBold";
  33.             offsetPressedX = 0.01;
  34.             offsetPressedY = 0.01;
  35.             offsetX = 0.01;
  36.             offsetY = 0.01;
  37.             sizeEx = (((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1);
  38.             soundClick[] = {"\A3\ui_f\data\sound\RscButton\soundClick",0.09,1.0};
  39.             soundEnter[] = {"\A3\ui_f\data\sound\RscButton\soundEnter",0.09,1.0};
  40.             soundEscape[] = {"\A3\ui_f\data\sound\RscButton\soundEscape",0.09,1.0};
  41.             soundPush[] = {"\A3\ui_f\data\sound\RscButton\soundPush",0.09,1.0};
  42.            
  43.         };
  44.        
  45.         class giveDeath {
  46.             type = 1;
  47.             idc = 4002;
  48.             x = safeZoneX + safeZoneW * 0.76875;
  49.             y = safeZoneY + safeZoneH * 0.44444445;
  50.             w = safeZoneW * 0.1625;
  51.             h = safeZoneH * 0.06111112;
  52.             style = 0+2;
  53.             text = "Se laisser mourir...";
  54.             onButtonClick = "closeDialog 0; [] call life_fnc_giveDeath;";
  55.             borderSize = 0;
  56.             colorBackground[] = {0.6,0.2,0,1};
  57.             colorBackgroundActive[] = {0.4,0.4,0.4,1};
  58.             colorBackgroundDisabled[] = {0.2,0.2,0.2,1};
  59.             colorBorder[] = {0,0,0,0};
  60.             colorDisabled[] = {0.2,0.2,0.2,1};
  61.             colorFocused[] = {0.2,0.2,0.2,1};
  62.             colorShadow[] = {0,0,0,1};
  63.             colorText[] = {0.7569,0.9765,0.9647,1};
  64.             font = "PuristaSemiBold";
  65.             offsetPressedX = 0.01;
  66.             offsetPressedY = 0.01;
  67.             offsetX = 0.01;
  68.             offsetY = 0.01;
  69.             sizeEx = (((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1);
  70.             soundClick[] = {"\A3\ui_f\data\sound\RscButton\soundClick",0.09,1.0};
  71.             soundEnter[] = {"\A3\ui_f\data\sound\RscButton\soundEnter",0.09,1.0};
  72.             soundEscape[] = {"\A3\ui_f\data\sound\RscButton\soundEscape",0.09,1.0};
  73.             soundPush[] = {"\A3\ui_f\data\sound\RscButton\soundPush",0.09,1.0};
  74.         };
  75.     };
  76. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement