Advertisement
Clorith

Untitled

Jun 3rd, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. rednet.open( "right" )
  2.  
  3. while true do
  4. id, msg, time = rednet.receive()
  5.  
  6. if "Mine my pretties" == msg then
  7. turtle.select(1)
  8. turtle.place()
  9. end
  10.  
  11. if turtle.detect() then
  12. for number = 1, 16 do
  13. turtle.select( number )
  14. turtle.dropUp()
  15. end
  16. end
  17.  
  18. if "Staph" == msg then
  19. turtle.select(1)
  20. turtle.dig()
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement