Advertisement
Guest User

statusBar.hpp

a guest
Jan 20th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. class osefStatusBar
  2. {
  3. idd = -1;
  4. duration = 10e10;
  5. onLoad = "uiNamespace setVariable ['osefStatusBar', _this select 0]";
  6. onUnload = "uiNamespace setVariable ['osefStatusBar', objNull]";
  7. onDestroy = "uiNamespace setVariable ['osefStatusBar', objNull]";
  8. fadein = 0;
  9. fadeout = 0;
  10. movingEnable = 0;
  11. objects[] = {};
  12.  
  13. class controlsBackground
  14. {
  15. class statusBarImage
  16. {
  17. idc = 55557;
  18. type = 0;
  19. style = 48;
  20. x = safezoneX + safezoneW - 1.883;
  21. y = safezoneY + safezoneH - 0.092; //0.068
  22. w = 1.35;
  23. h = 0.08; //0.06
  24. colorText[] = {1, 1, 1, 1};
  25. colorBackground[]={0,0,0,0};
  26. sizeEx = 0.4;
  27. font = "PuristaSemibold";
  28. text = "icons\background.paa";
  29. };
  30. };
  31.  
  32. class controls
  33. {
  34. class statusBarText
  35. {
  36. idc = 1000;
  37. x = safezoneX + safezoneW - 1.90;
  38. y = safezoneY + safezoneH - 0.063;
  39. w = 1.38;
  40. h = 0.06;
  41. shadow = 2;
  42. font = "PuristaSemibold";
  43. size = 0.030;
  44. type = 13;
  45. style = 2;
  46. text="Loading server info...";
  47.  
  48. class Attributes
  49. {
  50. align="center";
  51. color = "#ffffff";
  52. font = "PuristaSemibold";
  53. };
  54. };
  55. };
  56. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement