Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --fuel check
- if turtle.getFuelLevel()<60 then
- turtle.select(1)
- turtle.refuel(10)
- end
- if turtle.getItemCount(2)<1 then
- print "place:Slot1-Fuel, Slot2-Turtle Ender Chest, Slot3-5 Chests, Slot4-Stone, Slot5-Dirt Slot6-To Sorting Ender Chest and restart"
- turtle.reboot()
- end
- --digDown 15 times
- for d=1,15 do
- turtle.digDown()
- turtle.down()
- end
- --place Turtles from ender chest
- for p=1,5 do
- turtle.dig()
- turtle.select(2)
- turtle.placeUp()
- turtle.select(16)
- turtle.suckUp(1)
- turtle.place()
- --place stone and dirt in turtle
- turtle.select(4)
- turtle.drop(1)
- turtle.select(5)
- turtle.drop(1)
- --place chest
- turtle.select(2)
- turtle.digUp()
- turtle.up()
- turtle.select(3)
- turtle.placeDown()
- turtle.up()
- turtle.up()
- end
Add Comment
Please, Sign In to add comment