Advertisement
evannnnnnnn

Untitled

Aug 10th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. rednet.open("right")
  2. while true do
  3. message = rednet.recieve()
  4. if message == "back" then
  5. turtle.back()
  6. end
  7. if message == "forward" then
  8. turtle.forward()
  9. end
  10. if message == "left" then
  11. turtle.turnLeft()
  12. end
  13. if message == "right" then
  14. turtle.turnRight()
  15. end
  16. if message == "dig" then
  17. turtle.dig()
  18. end
  19. if message == "kamikaze" then
  20. turtle.place()
  21. turtle.up()
  22. turtle.place()
  23. turtle.up()
  24. turtle.place()
  25. turtle.setOutput("front", true)
  26. sleep(9999)
  27. end
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement