Guest User

startup

a guest
Jan 8th, 2013
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.19 KB | None | 0 0
  1. print("Starting Timer: 5-.2")
  2. while true do
  3. while not redstone.getInput("front") do
  4. redstone.setOutput("top", true)
  5. os.sleep(.2)
  6. redstone.setOutput("top", false)
  7. os.sleep(5)
  8. end
  9. end
Add Comment
Please, Sign In to add comment