legg0028

netherstar_builder

Nov 19th, 2022
953
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. while true do
  2.     local stars = 0
  3.  
  4.     rs.setOutput("bottom", false)
  5.  
  6.     term.clear()
  7.     term.setCursorPos(1,1)
  8.     print("How many nether stars do you need?")
  9.     stars = io.read()
  10.  
  11.     for i=1,stars do
  12.         rs.setOutput("bottom",true)
  13.         sleep(2.3)
  14.         rs.setOutput("bottom",false)
  15.         sleep(10)
  16.     end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment