Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Put cobble in slot 15, Milk bucket in slot 16, normal bucket slot 1
- --Put a piece of cobble on a side where there is not an engine
- print("Put cobble in slot 15, Milk bucket in slot 16, normal bucket slot 1")
- print("Put a piece of cobble on a side/sides where there is not an engine, if that is the case")
- print("Put a cow above the turtle, it wont drown :p")
- sleep(5)
- a = 1
- b = 0
- while true do
- turtle.select(15)
- if turtle.compare() == true then
- turtle.turnRight()
- else
- turtle.select(1)
- if turtle.compareTo(16) then
- turtle.drop()
- turtle.suck()
- turtle.placeUp()
- turtle.turnRight()
- else
- turtle.placeUp()
- turtle.drop()
- turtle.suck()
- turtle.turnRight()
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement