MigasRocha

Piramide Drops

Jan 26th, 2021 (edited)
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.13 KB | None | 0 0
  1. mon = peripheral.wrap("monitor_5")
  2. modem = peripheral.wrap("left")
  3. -- Wither
  4. me = peripheral.wrap("back")
  5. -- Wither Skeletons
  6. wk1 = peripheral.wrap("yabba:item_barrel_4")
  7. wk2 = peripheral.wrap("yabba:item_barrel_8")
  8. wk3 = peripheral.wrap("yabba:item_barrel_6")
  9. wk4 = peripheral.wrap("yabba:item_barrel_9")
  10. c1 = peripheral.wrap("yabba:item_barrel_10")
  11. while true do
  12.  
  13. -- NetherStars
  14.  
  15. mon.setBackgroundColour(colors.black)
  16.  
  17. mon.setCursorPos(1,3)
  18.  
  19. mon.setTextScale(2)
  20.  
  21. pe = me.list()[2]
  22.  
  23. mon.setTextColour(512)
  24.  
  25. mon.write("NetherStars: ")
  26.  
  27. mon.setTextColour(2)
  28.  
  29. nome = ""
  30.  
  31. nome = tostring(pe.count)
  32.  
  33. mon.write(nome)
  34.  
  35. mon.setCursorPos(1,1)
  36.  
  37. mon.write("Wither Farm")
  38.  
  39. mon.setCursorPos(1,4)
  40. mon.setTextColour(12)
  41.  
  42. mon.write("----------------------")
  43.  
  44. -- Wither Skeletons
  45.  
  46. mon.setCursorPos(1,7)
  47.  
  48. mon.setTextScale(2)
  49.  
  50. wk = wk1.list()[2]
  51. wkr = wk2.list()[2]
  52. wkd = wk3.list()[2]
  53. wkh = wk4.list()[2]
  54. cp = c1.list()[2]
  55.  
  56. mon.setTextColour(512)
  57.  
  58. mon.write("Wither Ash: ")
  59.  
  60. mon.setTextColour(2)
  61.  
  62. nome2 = ""
  63.  
  64. nome2 = tostring(wk.count)
  65.  
  66. mon.write(nome2)
  67.  
  68. -- Wither Rib
  69.  
  70. mon.setCursorPos(1,8)
  71.  
  72. mon.setTextScale(2)
  73.  
  74. mon.setTextColour(512)
  75.  
  76. mon.write("Wither Rib: ")
  77.  
  78. mon.setTextColour(2)
  79.  
  80. nome3 = ""
  81.  
  82. nome3 = tostring(wkr.count)
  83.  
  84. mon.write(nome3)
  85.  
  86. -- Wither Dust
  87.  
  88. mon.setCursorPos(1,9)
  89.  
  90. mon.setTextScale(2)
  91.  
  92. mon.setTextColour(512)
  93.  
  94. mon.write("Wither Dust:")
  95.  
  96. mon.setTextColour(2)
  97.  
  98. nome4 = ""
  99.  
  100. nome4 = tostring(wkd.count)
  101.  
  102. mon.write(nome4)
  103.  
  104. --Wither Skeleton Head
  105.  
  106. mon.setCursorPos(1,10)
  107.  
  108. mon.setTextScale(2)
  109.  
  110. mon.setTextColour(512)
  111.  
  112. mon.write("Wither Head:")
  113.  
  114. mon.setTextColour(2)
  115.  
  116. nome5 = "0"
  117.  
  118. mon.write(nome5)
  119.  
  120. mon.setCursorPos(1,5)
  121.  
  122. mon.write("Wither Skeletons Farm")
  123.  
  124. mon.setCursorPos(1,1)
  125. mon.setTextColour(12)
  126.  
  127. mon.write("----------------------")
  128.    
  129. --Creeper
  130.  
  131. mon.setCursorPos(1,14)
  132.  
  133. mon.setTextScale(2)
  134.  
  135. mon.setTextColour(512)
  136.  
  137. mon.write("Pólvora:")
  138.  
  139. mon.setTextColour(2)
  140.  
  141. nome6 = tostring(cp.count)
  142.  
  143. mon.write(nome6)
  144.  
  145. mon.setCursorPos(1,12)
  146.  
  147. mon.write("Creeper Farm")
  148.  
  149. end
Add Comment
Please, Sign In to add comment