Advertisement
Guest User

Untitled

a guest
May 20th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. import uiScriptLocale
  2. Abstand = 30
  3. Board_width = 220
  4.  
  5. window = {
  6. "name" : "achievementboard",
  7. "style" : ("movable", "float",),
  8.  
  9. "x" : SCREEN_WIDTH - Board_width - 15,
  10. "y" : SCREEN_HEIGHT - 90 - 55,
  11.  
  12. "width" : Board_width,
  13. "height" : 90,
  14.  
  15. "children" :
  16. (
  17. {
  18. "name" : "board",
  19. "type" : "board",
  20.  
  21. "x" : 0,
  22. "y" : 0,
  23.  
  24. "width" : Board_width,
  25. "height" : 90,
  26.  
  27. "children" :
  28. (
  29. {
  30. "name" : "Achievement_Image",
  31. "type" : "image",
  32.  
  33. "x" : 19,
  34. "y" : 14 + 10,
  35.  
  36. "image" : "locale/pl/ui/okno_achivement.tga",
  37. },
  38. {
  39. "name" : "Achievement_Filler",
  40. "type" : "text",
  41.  
  42. "x" : 80,
  43. "y" : 14 + 5,
  44.  
  45. "text" : "Zdobyto osiągnięcie:",
  46. },
  47. {
  48. "name" : "Achievement_Text",
  49. "type" : "text",
  50.  
  51. "x" : 80,
  52. "y" : 14 + 25,
  53.  
  54. "text" : "Achievement",
  55. },
  56. {
  57. "name" : "Achievement_Points_Text",
  58. "type" : "text",
  59.  
  60. "x" : 100,
  61. "y" : 14 + 25,
  62.  
  63. "text" : "",
  64. },
  65. {
  66. "name" : "Count_Filler",
  67. "type" : "text",
  68.  
  69. "x" : 80,
  70. "y" : 14 + 45,
  71.  
  72. "text" : "Zabitych:",
  73. },
  74. {
  75. "name" : "Count_Achievement_Text",
  76. "type" : "text",
  77.  
  78. "x" : 125,
  79. "y" : 14 + 45,
  80.  
  81. "text" : "Zabitych",
  82. },
  83. {
  84. "name" : "Achievement_Info_1",
  85. "type" : "text",
  86.  
  87. "x" : 80,
  88. "y" : 14 + 5,
  89.  
  90. "text" : "",
  91. },
  92. {
  93. "name" : "Achievement_Info_2",
  94. "type" : "text",
  95.  
  96. "x" : 80,
  97. "y" : 14 + 25,
  98.  
  99. "text" : "",
  100. },
  101. {
  102. "name" : "Achievement_Info_3",
  103. "type" : "text",
  104.  
  105. "x" : 80,
  106. "y" : 14 + 45,
  107.  
  108. "text" : "",
  109. },
  110. ),
  111. },
  112. ),
  113. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement