Advertisement
DumperJumper

Untitled

Aug 21st, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. -- Thermalily Lavaversorgung
  2.  
  3. local bucketFull
  4.  
  5. while true do
  6.     sleep(0.5)
  7.     turtle.select(1)
  8.    
  9.     if not bucketFull then
  10.         turtle.placeUp()
  11.         bucketFull = true
  12.     end
  13.    
  14.     if not turtle.inspect() and bucketFull then
  15.         turtle.place()
  16.         bucketFull = false
  17.     end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement