Advertisement
jhnphm

BucketLoad

Feb 27th, 2013
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local tank = peripheral.wrap("right")
  2. while true do
  3.     turtle.select(1)
  4.     turtle.suckDown()
  5.     tank.suck(8000)  
  6.     tank.pack()
  7.     tank.suck(8000)  
  8.     tank.pack()
  9.  
  10.     for i=1,16 do
  11.     turtle.select(i)
  12.     turtle.dropUp()
  13.     end
  14.  
  15.     sleep(10)
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement