Advertisement
Gr8Boi

earplugs.sqf

Dec 5th, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. class RscTitles
  2. {
  3. #include "GG\group\icons.hpp"
  4. #include "GG\hud\hud.hpp"
  5. #include "GG\hud\EPDHud.h"
  6.  
  7. titles[] = {"DeathScr","EarPlugs"};
  8. class DeathScr {
  9. idd = -1;
  10. movingEnable = 0;
  11. duration = 10;
  12. fadein = 0;
  13. fadeout = 0;
  14. name="DeathScr";
  15. controls[]={"Picture"};
  16. class Picture {
  17. x = safezoneX; y = safezoneY; w = safezoneW; h = safezoneH;
  18. text="GG\images\Death.paa";
  19. sizeEx = -1;
  20. type=0;
  21. idc=-1;
  22. style=48;
  23. colorBackground[]={0,0,0,0};
  24. colorText[]={1,1,1,1};
  25. font="Bitstream";
  26. };
  27. };
  28. class EarPlugs {
  29. idd = -1;
  30. fadeout=0;
  31. fadein=0;
  32. onLoad = "uiNamespace setVariable ['EarPlugs', _this select 0]";
  33. duration = 10e10;
  34. name= "EarPlugs";
  35. controlsBackground[] = {};
  36. objects[] = {};
  37. class controls {
  38. class EarPlugs : RscStructuredText {
  39. idc = 1;
  40. size = 0.040;
  41. text = "";
  42. colorBackground[] = { 0,0,0,0 };
  43. x = 0.85 * safezoneW + safezoneX;
  44. y = 0.91 * safezoneH + safezoneY;
  45. w = 0.2;
  46. h = 0.2;
  47. };
  48. };
  49. };
  50. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement