Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- total = 0
- while true do
- shell.run("clear")
- print ("Bore had moved " .. total .. " times!")
- redstone.setOutput("left", true)
- sleep(0.1)
- redstone.setOutput("left", false)
- sleep(3)
- redstone.setOutput("back", true)
- sleep(0.1)
- redstone.setOutput("back", false)
- sleep(3)
- redstone.setOutput("right", true)
- sleep(0.1)
- redstone.setOutput("right", false)
- sleep(3)
- total = total + 1
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement