Advertisement
Guest User

startup

a guest
Jun 23rd, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.21 KB | None | 0 0
  1. rednet.open("right")
  2. while true do
  3. id, state=rednet.receive()
  4.   if state == true then
  5.     redstone.setOutput("front", true)
  6.     sleep(0)
  7.   else
  8.     redstone.setOutput("front", false)
  9.     sleep(0)
  10.   end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement