Advertisement
LeviathanV

Bucket Dupe

Jan 14th, 2014
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. while true do
  2.  
  3. local function fill()
  4.     turtle.select(1)
  5.     turtle.place()
  6. end
  7.  
  8. local function dupe()
  9.     shell.run("refuel")
  10. end
  11.  
  12. local function drop()
  13.     for i = 2,16 do
  14.         turtle.select(i)
  15.         turtle.dropDown()
  16.     end
  17. end
  18.  
  19. local function run()
  20.     fill()
  21.     dupe()
  22.     drop()
  23. end
  24.  
  25. run()
  26. sleep(1)
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement