fugitiveplatypus

MRS

Jan 17th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. -- MRS
  2. while true do
  3.     rs = os.pullEvent("redstone")
  4.     if redstone.getInput("top", true) then
  5.         print("on")
  6.         redstone.setOutput("bottom", true)
  7.         sleep(3.5)
  8.         print("off")
  9.         redstone.setOutput("bottom", false)
  10.     end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment