Advertisement
RealNerdEthan

street_lamp

Feb 22nd, 2020
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. sleep(22)
  2.  
  3. function placeAndUp()
  4.   turtle.place()
  5.   turtle.up()
  6. end
  7.  
  8. function groundLevel()
  9.   turtle.down()
  10.   turtle.down()
  11.   turtle.down()
  12.   turtle.down()
  13. end
  14.  
  15. turtle.select(1)
  16. placeAndUp()
  17. placeAndUp()
  18. placeAndUp()
  19. placeAndUp()
  20. turtle.turnLeft()
  21. turtle.forward()
  22. turtle.turnRight()
  23. turtle.down()
  24. turtle.select(2)
  25. turtle.place()
  26. groundLevel()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement