Arphahat

master startup

Jun 2nd, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. while true do
  2.   if redstone.getInput("top") then
  3.      shell.run("send go")
  4.      os.sleep(30)
  5.      redstone.setOutput("bottom",true)
  6.      os.sleep(1)
  7.      redstone.setOutput("bottom",false)
  8.      os.sleep(5)
  9.      redstone.setOutput("front",true)
  10.          os.sleep(1)
  11.      redstone.setOutput("front",false)
  12.   else
  13.      os.sleep(1)
  14.   end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment