Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.88 KB | None | 0 0
  1.         class ButtonRemoveG: Life_RscButtonMenu {
  2.             idc = -1;
  3.             text = "VENDRE";
  4.             colorBackground[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.3843])", "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.7019])", "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.8862])", 0.5};
  5.             onButtonClick = "[] call life_fnc_virt_sell";
  6.             x = 0.59;
  7.             y = 0.7;
  8.             w = 0.1;
  9.             h = 0.04;
  10.         };
  11.        
  12.         class ButtonRemoveAllG: Life_RscButtonMenu {
  13.             idc = -1;
  14.             text = "TOUT VENDRE";
  15.             colorBackground[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.3843])", "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.7019])", "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.8862])", 0.5};
  16.             onButtonClick = "[] call Life_fnc_virt_sellAll;";
  17.  
  18.             x = 0.6975;
  19.             y = 0.7;
  20.             w = 0.15;
  21.             h = 0.04;
  22.         };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement