Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. class life_spawn_selection {
  2. idd = 38500;
  3. movingEnable = 0;
  4. enableSimulation = 1;
  5.  
  6. class controlsBackground {
  7. class SpawnBackground: Life_RscPicture
  8. {
  9. text = "spawn.paa";
  10. idc = -1;
  11. x = 0.21125 * safezoneW + safezoneX;
  12. y = -0.017 * safezoneH + safezoneY;
  13. w = 0.587812 * safezoneW;
  14. h = 1.012 * safezoneH;
  15. };
  16. class MapView: Life_RscMapControl
  17. {
  18. idc = 38502;
  19. maxSatelliteAlpha = 0.75;
  20. alphaFadeStartScale = 1.15;
  21. alphaFadeEndScale = 1.29;
  22.  
  23. x = 0.515469 * safezoneW + safezoneX;
  24. y = 0.412 * safezoneH + safezoneY;
  25. w = 0.211406 * safezoneW;
  26. h = 0.275 * safezoneH;
  27. };
  28. };
  29.  
  30. class controls {
  31. class SpawnPointList: Life_RscListNBox
  32. {
  33. idc = 38510;
  34. coloumns[] = {0,0,0.9};
  35. drawSideArrows = 0;
  36. idcLeft = -1;
  37. idcRight = -1;
  38. rowHeight = 0.09;
  39. onLBSelChanged = "_this call life_fnc_spawnPointSelected;";
  40.  
  41. x = 0.309219 * safezoneW + safezoneX;
  42. y = 0.423 * safezoneH + safezoneY;
  43. w = 0.174281 * safezoneW;
  44. h = 0.2112 * safezoneH;
  45. };
  46. class spawnButton: Life_RscButtonInvisible
  47. {
  48. onButtonClick = "[] call life_fnc_spawnConfirm";
  49. idc = 1006;
  50.  
  51. text = ""; //--- ToDo: Localize;
  52. x = 0.65675 * safezoneW + safezoneX;
  53. y = 0.302 * safezoneH + safezoneY;
  54. w = 0.0598125 * safezoneW;
  55. h = 0.022 * safezoneH;
  56. //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};
  57. };
  58. class ReturnToLobbyButton: Life_RscButtonInvisible
  59. {
  60. onButtonClick = "endmission'memes';";
  61. idc = 1007;
  62.  
  63. text = ""; //--- ToDo: Localize;
  64. x = 0.727906 * safezoneW + safezoneX;
  65. y = 0.2096 * safezoneH + safezoneY;
  66. w = 0.0226875 * safezoneW;
  67. h = 0.0198 * safezoneH;
  68. };
  69.  
  70. };
  71. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement