Advertisement
hisforeverkid

Untitled

Nov 26th, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1.  
  2.  
  3. --[[
  4.  
  5. ***********************************************
  6. * Description of an Entry for the Billboards: *
  7. ***********************************************
  8.  
  9. {
  10. title = Name for the Billboard,
  11. If no Name is given: default = bb_item1_item2_item3
  12.  
  13. Recipe to craft:
  14. item1 = 1. Item for the recipe
  15. item2 = 2. Item for the recipe
  16. item3 = 3. Item for the recipe
  17.  
  18. If an Item missed, default for:
  19. item1 = sign_wall_wood
  20. item2 = white
  21. item3 = white
  22.  
  23. Size of the Billboard in Blocks
  24. scale = number
  25. If no scale is given, the default number is 1
  26.  
  27. filename = Filename for the Image
  28. If no filename is given, the filename = bb_item1_item2_item3
  29.  
  30. Typ of the taken Image (must be in textures):
  31. imgtyp = "Typ"
  32. If no Typ is given, the typ is png.
  33.  
  34. }
  35.  
  36. --]]
  37.  
  38. boardlist =
  39. {
  40.  
  41. {
  42. title = "Aikido Billboard",
  43. item1 = "sign_wall_wood",
  44. item2 = "white",
  45. item3 = "white",
  46. scale = 3.0,
  47. filename = "aikido",
  48. imgtyp = "jpg"
  49. },
  50.  
  51. {
  52. title = "Detergen Billboard",
  53. item1 = "sign_wall_wood",
  54. item2 = "yellow",
  55. item3 = "yellow",
  56. scale = 3.0,
  57. filename = "detergen",
  58. imgtyp = "jpg"
  59. },
  60.  
  61. {
  62. title = "Mesedrink Billboard",
  63. item1 = "sign_wall_wood",
  64. item2 = "black",
  65. item3 = "yellow",
  66. scale = 3.5,
  67. filename = "mesedrink",
  68. imgtyp = "jpg"
  69. },
  70.  
  71. {
  72. title = "Meseforte Billboard",
  73. item1 = "sign_wall_wood",
  74. item2 = "green",
  75. item3 = "blue",
  76. scale = 3.0,
  77. filename = "meseforte",
  78. imgtyp = "png"
  79. },
  80.  
  81. {
  82. title = "Mesewave Billboard",
  83. item1 = "sign_wall_wood",
  84. item2 = "blue",
  85. item3 = "yellow",
  86. scale = 2.0,
  87. filename = "mesewave",
  88. imgtyp = "jpg"
  89. },
  90.  
  91. {
  92. title = "Newspaper Billboard",
  93. item1 = "paper",
  94. item2 = "black",
  95. item3 = "orange",
  96. scale = 2.5,
  97. filename = "newspaper",
  98. imgtyp = "jpg"
  99. },
  100.  
  101. {
  102. title = "Army Billboard",
  103. item1 = "paper",
  104. item2 = "green",
  105. item3 = "green",
  106. scale = 2.0,
  107. filename = "army",
  108. imgtyp = "png"
  109. }
  110.  
  111. {
  112. title = "theather",
  113. item1 = "paper",
  114. item2 = "green",
  115. item3 = "green",
  116. scale = 2.0,
  117. filename = "army",
  118. imgtyp = "png"
  119. {
  120. } -- bb_boardlist
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement