Advertisement
DerFreez

Turtle TreeFarm

Jul 20th, 2016
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. term.clear()
  2. print("w = Wood")
  3. print("s = Saplings")
  4. print("")
  5. print("[ ][ ][ ][ ]")
  6. print("[ ][ ][ ][ ]")
  7. print("[ ][ ][ ][w]")
  8. print("[ ][ ][ ][s]")
  9. turtle.select(16)
  10. print("")
  11. print("Are you Ready? Write Y and paste it!")
  12. input = read()
  13. term.clear()
  14. print("Programm startung...")
  15. os.sleep(1.0)
  16. term.clear()
  17. print("Programm is started.")
  18.  
  19. while true do
  20. if turtle.detect() then
  21. turtle.select(12)
  22.  
  23. if turtle.inspect() then
  24.  
  25. else
  26. end
  27.  
  28. else
  29. turtle.select(16)
  30. turtle.place()
  31.  
  32. end
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement