Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. class XM8CockMyBook: RscExileXM8Slide
  2. {
  3. idc = 4165;
  4. class Controls
  5. {
  6. class GoBackButton: RscExileXM8ButtonMenu
  7. {
  8. idc = 2400;
  9. text = "GO BACK";
  10. x = 28 * GUI_GRID_W + GUI_GRID_X;
  11. y = 4.5 * GUI_GRID_H + GUI_GRID_Y;
  12. w = 8 * GUI_GRID_W;
  13. h = 1 * GUI_GRID_H;
  14. onButtonClick = "['extraApps', 1] call ExileClient_gui_xm8_slide";
  15. };
  16. class RecipeList: RscListBox
  17. {
  18. idc = 1500;
  19. x = 3.4 * GUI_GRID_W + GUI_GRID_X;
  20. y = 6 * GUI_GRID_H + GUI_GRID_Y;
  21. w = 15.2 * GUI_GRID_W;
  22. h = 7 * GUI_GRID_H;
  23. onButtonClick = "['LBSelChanged', 1] call fnc_components_Load";
  24. };
  25. class ComponentsList: RscListBox
  26. {
  27. idc = 1501;
  28. x = 19.2 * GUI_GRID_W + GUI_GRID_X;
  29. y = 6 * GUI_GRID_H + GUI_GRID_Y;
  30. w = 16.8 * GUI_GRID_W;
  31. h = 14.25 * GUI_GRID_H;
  32. };
  33. class GoCraftButton: RscExileXM8ButtonMenu
  34. {
  35. idc = 2401;
  36. text = "CRAFT";
  37. x = 19.2 * GUI_GRID_W + GUI_GRID_X;
  38. y = 4.5 * GUI_GRID_H + GUI_GRID_Y;
  39. w = 8.4 * GUI_GRID_W;
  40. h = 1 * GUI_GRID_H;
  41. onButtonClick = ["ButtonClick", "SelectedRecipe call ExileClient_gui_crafting_show;"];
  42. };
  43. class RecipeCategories: RscCombo
  44. {
  45. idc = 2100;
  46. x = 3.4 * GUI_GRID_W + GUI_GRID_X;
  47. y = 4.5 * GUI_GRID_H + GUI_GRID_Y;
  48. w = 15.2 * GUI_GRID_W;
  49. h = 1 * GUI_GRID_H;
  50. onButtonClick = "['LBSelChanged', 1] call fnc_components_Load";
  51. };
  52. class RecipeTitle: RscText
  53. {
  54. idc = 1000;
  55. text = "BRAma Cookbook";
  56. x = 3.4 * GUI_GRID_W + GUI_GRID_X;
  57. y = 3.5 * GUI_GRID_H + GUI_GRID_Y;
  58. w = 15.2 * GUI_GRID_W;
  59. h = 1 * GUI_GRID_H;
  60. };
  61. class RecipePic: RscPicture
  62. {
  63. idc = 1200;
  64. text = "Custom\BRAmaRecipes\BRAma.paa";
  65. x = 3.4 * GUI_GRID_W + GUI_GRID_X;
  66. y = 13.5 * GUI_GRID_H + GUI_GRID_Y;
  67. w = 15.2 * GUI_GRID_W;
  68. h = 7 * GUI_GRID_H;
  69. };
  70. };
  71. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement