Advertisement
Shnuffler

mc turtle furnace portion-1

Mar 24th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1.  
  2. print("Makin' some charcoal")
  3.  
  4. local charcoalToMake = 6
  5.  
  6. turtle.suckDown()
  7.  
  8. turtle.dropUp(charcoalToMake)
  9.  
  10. turtle.turnLeft()
  11. turtle.forward()
  12. turtle.turnLeft()
  13. turtle.turnLeft()
  14. turtle.up()
  15. turtle.up()
  16. turtle.forward()
  17.  
  18. turtle.dropDown(charcoalToMake)
  19.  
  20. turtle.turnRight()
  21. turtle.forward()
  22. turtle.down()
  23. turtle.down()
  24. turtle.back()
  25.  
  26. turtle.dropDown()
  27.  
  28. turtle.turnRight()
  29. turtle.turnRight()
  30.  
  31. print("Waiting for ", charcoalToMake, "charcoals to finish.")
  32. sleep(charcoalToMake * 10)
  33.  
  34. turtle.suckUp()
  35. turtle.back()
  36. turtle.refuel()
  37. turtle.turnRight()
  38. turtle.down()
  39.  
  40. sleep(4)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement