View difference between Paste ID: G7btUcZv and vBP0uBH9
SHOW: | | - or go back to the newest paste.
1
local tank = peripheral.wrap("right")
2
while true do
3
    turtle.select(1)
4-
        turtle.select(i)
4+
    turtle.suckDown()
5-
        tank.unpack()
5+
    tank.suck(8000)  
6-
        turtle.dropDown()
6+
    tank.pack()
7-
        tank.drop()
7+
    tank.suck(8000)  
8
    tank.pack()
9
10-
        turtle.suckUp()
10+
11
	turtle.select(i)
12
	turtle.dropUp()
13
    end
14
15
    sleep(10)
16
end