naglareffe

night v1.3

Jun 24th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function refuel()
  2. if turtle.getFuelLevel() < 1000 then
  3.   turtle.select(3)
  4.   turtle.suckDown()
  5.   turtle.refuel()
  6. end  
  7. end
  8.  
  9. for n=1,1 do
  10.   refuel()
  11.   turtle.select(1)
  12.   turtle.digUp()
  13.   turtle.up()
  14.   turtle.up()
  15.   turtle.placeDown()
  16.     for i=1,24 do
  17.     turtle.up(i)
  18.     end
  19.   turtle.select(2)
  20.   turtle.placeDown()
  21. end
Advertisement
Add Comment
Please, Sign In to add comment