mysticdrew

Untitled

Sep 2nd, 2013
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. print("Timer Running")
  2. while true do
  3.    if redstone.getInput("front") == true then
  4.     print("sending signal")
  5.     redstone.setOutput("back", true)
  6.     sleep(5)
  7.     print("signal sent")
  8.     redstone.setOutput("back", false)
  9.     sleep(45)
  10.    end
  11.    sleep(2)
  12. end
Advertisement
Add Comment
Please, Sign In to add comment