Guest User

night

a guest
Jun 24th, 2013
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. function refuel()
  2.  
  3. local f = 0
  4.  
  5. f = turtle.getFuelLevel()
  6.  
  7. if f<20 do
  8.   turtle.select(3)
  9.   turtle.suckDown()
  10.   turtle.refuel(3)
  11. end  
  12.  
  13. while true do
  14.   refuel()
  15.   turtle.select(1)
  16.   turtle.digUP()
  17.   turtle.up(2)
  18.   turtle.placeDown()
  19.   turtle.up(24)
  20.   turtle.select(2)
  21.   turtle.placeDown()
  22. end
Advertisement
Add Comment
Please, Sign In to add comment