Advertisement
Guest User

master

a guest
Apr 30th, 2016
55
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("back")
  2. local work = 1
  3.  
  4. while work == 1 do
  5.  
  6. sleep(0.01)
  7. if redstone.getInput("right") == true then
  8.  
  9.   rednet.broadcast(true, "quarry")
  10.  
  11. else
  12.  
  13.   rednet.broadcast(false, "quarry")
  14.  
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement