Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SLOT_SLAG = 1
- SLOT_GRAVEL = 2
- SLOT_CLAY = 3
- success, data = turtle.inspect()
- while not success or not data.name == "storagedrawers:oak_full_drawers_1" do
- turtle.turnLeft()
- end
- turtle.select(SLOT_SLAG)
- turtle.dropUp()
- turtle.select(SLOT_GRAVEL)
- turtle.drop()
- turtle.select(SLOT_CLAY)
- turtle.dropDown()
- while true do
- turtle.select(SLOT_SLAG)
- turtle.suckUp(4)
- turtle.select(SLOT_GRAVEL)
- turtle.suck(2)
- turtle.select(SLOT_CLAY)
- turtle.suckDown(2)
- turtle.turnRight()
- turtle.select(SLOT_SLAG)
- turtle.drop()
- turtle.select(SLOT_GRAVEL)
- turtle.drop()
- turtle.select(SLOT_CLAY)
- turtle.drop()
- turtle.turnLeft()
- sleep(0.5)
- end
Add Comment
Please, Sign In to add comment