Advertisement
FakoTheGreat

Simple refuel script

Dec 15th, 2014
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. --Simple script to refuel a block in front from a spring below the turtle.
  2. local delay = 5
  3. local bukkit = 1
  4.  
  5. while true do
  6.   turtle.select(bukkit)
  7.   turtle.placeDown()
  8.   os.sleep(0.5)
  9.   turtle.place()
  10.   os.sleep(delay)
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement