Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.25 KB | None | 0 0
  1. ////////////////////////////////////////////////////////
  2. // GUI EDITOR OUTPUT START (by Tony Soprano, v1.063, #Cyriva)
  3. ////////////////////////////////////////////////////////
  4.  
  5. class EXphone: wlp_RscPicture
  6. {
  7. idc = 3001;
  8.  
  9. text = "textures\phone.paa"; //--- ToDo: Localize;
  10. x = 0.3875;
  11. y = 0.02;
  12. w = 0.8125;
  13. h = 1.03676;
  14. };
  15. class TextToSend: wlp_RscTitle
  16. {
  17. idc = 3002;
  18.  
  19. text = "Treść wiadomości:"; //--- ToDo: Localize;
  20. x = 0.6055;
  21. y = 0.2108;
  22. w = 0.2725;
  23. h = 0.04;
  24. colorText[] = {0.95,0.95,0.95,1};
  25. };
  26. class textEdit: wlp_RscEdit
  27. {
  28. idc = 3003;
  29.  
  30. x = 0.6125;
  31. y = 0.34;
  32. w = 0.3125;
  33. h = 0.2;
  34. };
  35. class TextMsgButton: wlp_RscButtonMenu
  36. {
  37. idc = 3015;
  38. onButtonClick = "[] call TON_fnc_cell_textmsg";
  39.  
  40. text = "Do: Gracza"; //--- ToDo: Localize;
  41. x = 0.6125;
  42. y = 0.64;
  43. w = 0.15;
  44. h = 0.05;
  45. colorText[] = {1,1,1,1};
  46. colorBackground[] = {0.518,0.298,0.749,1};
  47. colorActive[] = {0,0,0,0};
  48. };
  49. class PlayerList: wlp_RscCombo
  50. {
  51. idc = 3004;
  52.  
  53. x = 24.5 * GUI_GRID_W + GUI_GRID_X;
  54. y = 7 * GUI_GRID_H + GUI_GRID_Y;
  55. w = 9.5 * GUI_GRID_W;
  56. h = 1 * GUI_GRID_H;
  57. };
  58. class TextCopButton: wlp_RscButtonMenu
  59. {
  60. idc = 3016;
  61. onButtonClick = "[] call TON_fnc_cell_textcop";
  62.  
  63. text = "Do: Policji"; //--- ToDo: Localize;
  64. x = 0.775;
  65. y = 0.64;
  66. w = 0.15;
  67. h = 0.05;
  68. colorText[] = {1,1,1,1};
  69. colorBackground[] = {0,0.53,1,0.48};
  70. };
  71. class TextAdminButton: wlp_RscButtonMenu
  72. {
  73. idc = 3017;
  74. onButtonClick = "[] call TON_fnc_cell_textadmin";
  75.  
  76. text = "Do: Admin"; //--- ToDo: Localize;
  77. x = 0.6125;
  78. y = 0.8;
  79. w = 0.15;
  80. h = 0.05;
  81. colorText[] = {1,1,1,1};
  82. colorBackground[] = {0,0.153,0.141,1};
  83. };
  84. class AdminMsgButton: wlp_RscButtonMenu
  85. {
  86. idc = 3020;
  87. onButtonClick = "[] call TON_fnc_cell_adminmsg";
  88.  
  89. text = "Adm do Graczy"; //--- ToDo: Localize;
  90. x = 0.775;
  91. y = 0.88;
  92. w = 0.15;
  93. h = 0.05;
  94. colorText[] = {1,1,1,1};
  95. colorBackground[] = {0,0.23,1,0.48};
  96. };
  97. class AdminMsgAllButton: wlp_RscButtonMenu
  98. {
  99. idc = 3021;
  100. onButtonClick = "[] call TON_fnc_cell_adminmsgall";
  101.  
  102. text = "SMS do Wszyscy"; //--- ToDo: Localize;
  103. x = 0.6125;
  104. y = 0.88;
  105. w = 0.15;
  106. h = 0.05;
  107. colorText[] = {1,1,1,1};
  108. colorBackground[] = {0,0.23,1,0.48};
  109. };
  110. class EMSRequest: wlp_RscButtonMenu
  111. {
  112. idc = 3022;
  113. onButtonClick = "[] call TON_fnc_cell_emsrequest";
  114.  
  115. text = "Do: Medyków"; //--- ToDo: Localize;
  116. x = 24.5 * GUI_GRID_W + GUI_GRID_X;
  117. y = 18 * GUI_GRID_H + GUI_GRID_Y;
  118. w = 6 * GUI_GRID_W;
  119. h = 1.25 * GUI_GRID_H;
  120. colorText[] = {1,1,1,1};
  121. colorBackground[] = {0.357,0.882,0.027,1};
  122. };
  123. class policjawszyscy: wlp_RscButtonMenu
  124. {
  125. idc = 3023;
  126. onButtonClick = "[] call TON_fnc_cell_policemsgall";
  127.  
  128. text = "Policja All"; //--- ToDo: Localize;
  129. x = 0.775;
  130. y = 0.8;
  131. w = 0.15;
  132. h = 0.05;
  133. colorText[] = {1,1,1,1};
  134. colorBackground[] = {0,0.23,1,0.48};
  135. };
  136. class CloseButtonKey: wlp_RscButtonMenu
  137. {
  138. onButtonClick = "closeDialog 0;";
  139.  
  140. idc = 1011;
  141. x = 29.2 * GUI_GRID_W + GUI_GRID_X;
  142. y = 23.75 * GUI_GRID_H + GUI_GRID_Y;
  143. w = 3.2 * GUI_GRID_W;
  144. h = 0.875 * GUI_GRID_H;
  145. colorText[] = {1,1,1,1};
  146. colorBackground[] = {0,0,0,0};
  147. };
  148. class RscText_1012: RscText
  149. {
  150. idc = 3022;
  151. onButtonClick = "[] call TON_fnc_cell_emsrequest";
  152.  
  153. text = "Do: Mafii"; //--- ToDo: Localize;
  154. x = 0.775;
  155. y = 0.72;
  156. w = 0.15;
  157. h = 0.05;
  158. colorText[] = {1,1,1,1};
  159. colorBackground[] = {0.8,0.212,0.212,1};
  160. };
  161. class RscText_1013: RscText
  162. {
  163. idc = 3015;
  164. onButtonClick = "[] call TON_fnc_cell_textmsg";
  165.  
  166. text = "Zadzwon"; //--- ToDo: Localize;
  167. x = 0.625;
  168. y = 0.56;
  169. w = 0.125;
  170. h = 0.06;
  171. colorText[] = {1,1,1,1};
  172. colorBackground[] = {0.004,0.631,0.392,1};
  173. colorActive[] = {0,0,0,0};
  174. };
  175. class RscText_1014: RscText
  176. {
  177. idc = 3015;
  178. onButtonClick = "[] call TON_fnc_cell_textmsg";
  179.  
  180. text = "Zadzwon"; //--- ToDo: Localize;
  181. x = 0.7875;
  182. y = 0.56;
  183. w = 0.125;
  184. h = 0.06;
  185. colorText[] = {1,1,1,1};
  186. colorBackground[] = {1,0.267,0.267,1};
  187. colorActive[] = {0,0,0,0};
  188. };
  189. ////////////////////////////////////////////////////////
  190. // GUI EDITOR OUTPUT END
  191. ////////////////////////////////////////////////////////
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement