Advertisement
Guest User

startup

a guest
May 22nd, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. rednet.open("right")
  2. while true do
  3.   id,msg = rednet.receive()
  4.   if id == 267 then
  5.     if msg == "op" then
  6.       turtle.dig()
  7.     end
  8.     if msg == "cl" then
  9.       repeat
  10.       until turtle.place()
  11.     end
  12.   end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement