Advertisement
Guest User

Untitled

a guest
Jul 14th, 2016
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. #define ST_RIGHT 0x01
  2.  
  3. class osefStatusBarAdmin {
  4. idd = -1;
  5. onLoad = "uiNamespace setVariable ['osefStatusBarAdmin', _this select 0]";
  6. onUnload = "uiNamespace setVariable ['osefStatusBarAdmin', objNull]";
  7. onDestroy = "uiNamespace setVariable ['osefStatusBarAdmin', objNull]";
  8. fadein = 0;
  9. fadeout = 0;
  10. duration = 10e10;
  11. movingEnable = 0;
  12. controlsBackground[] = {};
  13. objects[] = {};
  14. class controls {
  15. class statusBarText {
  16. idc = 55554;
  17. x = safezoneX + safezoneW - 1.90;
  18. y = safezoneY + safezoneH - 0.063;
  19. w = 1.35;
  20. h = 0.06;
  21. shadow = 2;
  22. // colorBackground[] = { 0, 0, 0, 0.5 }; // uncomment and increase 4th number to have a background
  23. font = "PuristaSemibold";
  24. size = 0.04;
  25. type = 13;
  26. style = 2;
  27. text="";
  28. class Attributes {
  29. align="center";
  30. color = "#ffffff";//#5fe60c
  31. };
  32. };
  33. };
  34. };
  35.  
  36. class osefStatusBar {
  37. idd = -1;
  38. onLoad = "uiNamespace setVariable ['osefStatusBar', _this select 0]";
  39. onUnload = "uiNamespace setVariable ['osefStatusBar', objNull]";
  40. onDestroy = "uiNamespace setVariable ['osefStatusBar', objNull]";
  41. fadein = 0;
  42. fadeout = 0;
  43. duration = 10e10;
  44. movingEnable = 0;
  45. controlsBackground[] = {};
  46. objects[] = {};
  47. class controls {
  48. class statusBarText {
  49. idc = 55555;
  50. x = safezoneX + safezoneW - 1.50;
  51. y = safezoneY + safezoneH - 0.035;
  52. w = 1.3;
  53. h = 0.07;
  54. shadow = 2;
  55. // colorBackground[] = { 0, 0, 0, 0.5 }; // uncomment and increase 4th number to have a background
  56. font = "PuristaSemibold";
  57. size = 0.04;
  58. type = 13;
  59. style = 2;
  60. text="";
  61. class Attributes {
  62. align="left";
  63. color = "#ffffff";//#5fe60c
  64. };
  65. };
  66. };
  67. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement