Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. class Federal_Safe_1 {
  2. idd = 6666;
  3. name = "Federal_Safe_1";
  4. movingEnable = 0;
  5. enableSimulation = 1;
  6.  
  7. class controlsBackground {
  8. class RscTitleBackground: Life_RscText {
  9. 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])", "(profilenamespace getvariable ['GUI_BCG_RGB_A',0.7])"};
  10. idc = -1;
  11. x = 0.1;
  12. y = 0.2;
  13. w = 0.33;
  14. h = (1 / 25);
  15. };
  16.  
  17. class RscBackground: Life_RscText {
  18. colorBackground[] = {0, 0, 0, 0.7};
  19. idc = -1;
  20. x = 0.1;
  21. y = 0.2 + (11 / 250);
  22. w = 0.33;
  23. h = 0.7 - (22 / 250);
  24. };
  25.  
  26. class RscTitleText: Life_RscTitle {
  27. colorBackground[] = {0, 0, 0, 0};
  28. idc = 3501;
  29. text = "";
  30. x = 0.1;
  31. y = 0.2;
  32. w = 0.33;
  33. h = (1 / 25);
  34. };
  35.  
  36. class VehicleWeight: RscTitleText {
  37. idc = 3504;
  38. style = 1;
  39. text = "";
  40. };
  41.  
  42. class RscTrunkText: Life_RscText {
  43. idc = -1;
  44. 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};
  45. text = "$STR_Trunk_TInventory";
  46. sizeEx = 0.04;
  47. x = 0.11;
  48. y = 0.25;
  49. w = 0.3;
  50. h = 0.04;
  51. };
  52. };
  53.  
  54. class Controls {
  55. class TrunkGear: Life_RscListBox {
  56. idc = 6669;
  57. text = "";
  58. sizeEx = 0.030;
  59. x = 0.11;
  60. y = 0.29;
  61. w = 0.3;
  62. h = 0.42;
  63. };
  64.  
  65. class TrunkEdit: Life_RscEdit {
  66. idc = 6662;
  67. text = "1";
  68. sizeEx = 0.030;
  69. x = 0.11;
  70. y = 0.72;
  71. w = 0.3;
  72. h = 0.03;
  73. };
  74.  
  75. class TakeItem: Life_RscButtonMenu {
  76. idc = -1;
  77. text = "$STR_Trunk_Take";
  78. 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};
  79. onButtonClick = "[] call life_fnc_safeTakeBank;";
  80. x = 0.19;
  81. y = 0.78;
  82. w = (6.25 / 40);
  83. h = (1 / 25);
  84. };
  85.  
  86. class ButtonClose: Life_RscButtonMenu {
  87. idc = -1;
  88. //shortcuts[] = {0x00050000 + 2};
  89. text = "$STR_Global_Close";
  90. onButtonClick = "closeDialog 0;";
  91. x = 0.1;
  92. y = 0.9 - (1 / 25);
  93. w = (6.25 / 40);
  94. h = (1 / 25);
  95. };
  96. };
  97. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement