Advertisement
artur717

Untitled

Jan 25th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. #define ST_RIGHT 0x01
  2.  
  3. class osefStatusBar {
  4. idd = -1;
  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. duration = 10e10;
  11. movingEnable = 0;
  12. controlsBackground[] = {};
  13. objects[] = {};
  14. class controls {
  15. class statusBarText {
  16. idc = 1000;
  17. x = safezoneX + safezoneW - 1;
  18. y = safezoneY + safezoneH - 0.08;
  19. w = 1;
  20. h = 0.03;
  21. shadow = 1;
  22. colorBackground[] = { 1, 0.3, 0, 0.0 }; // uncomment and increase 4th number to have a background
  23. font = "PuristaSemibold";
  24. size = 0.035;
  25. type = 13;
  26. style = 1;
  27. text="Loading server info...";
  28. class Attributes {
  29. align="left";
  30. color = "#5c0185";
  31. };
  32. };
  33. };
  34. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement