Advertisement
Vilsol

FrameBore

Jan 23rd, 2013
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. total = 0
  2. while true do
  3.     shell.run("clear")
  4.     print ("Bore had moved " .. total .. " times!")
  5.     redstone.setOutput("left", true)
  6.     sleep(0.1)
  7.     redstone.setOutput("left", false)
  8.     sleep(3)
  9.     redstone.setOutput("back", true)
  10.     sleep(0.1)
  11.     redstone.setOutput("back", false)
  12.     sleep(3)
  13.     redstone.setOutput("right", true)
  14.     sleep(0.1)
  15.     redstone.setOutput("right", false)
  16.     sleep(3)
  17.     total = total + 1
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement