Advertisement
hisforeverkid

billboard error

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